{"id":18336776,"url":"https://github.com/seissol/gemmforge","last_synced_at":"2025-07-26T19:10:34.110Z","repository":{"id":43711821,"uuid":"261552274","full_name":"SeisSol/gemmforge","owner":"SeisSol","description":null,"archived":false,"fork":false,"pushed_at":"2024-10-04T10:36:55.000Z","size":2150,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-26T13:47:56.052Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SeisSol.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-05-05T18:28:48.000Z","updated_at":"2024-10-04T10:36:56.000Z","dependencies_parsed_at":"2023-01-29T21:45:24.866Z","dependency_job_id":"f3ab3658-b172-4a0f-a382-ed40e5870a48","html_url":"https://github.com/SeisSol/gemmforge","commit_stats":null,"previous_names":["ravil-mobile/gemmforge"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/SeisSol/gemmforge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeisSol%2Fgemmforge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeisSol%2Fgemmforge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeisSol%2Fgemmforge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeisSol%2Fgemmforge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SeisSol","download_url":"https://codeload.github.com/SeisSol/gemmforge/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeisSol%2Fgemmforge/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267213525,"owners_count":24053912,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-26T02:00:08.937Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-05T20:08:54.096Z","updated_at":"2025-07-26T19:10:34.093Z","avatar_url":"https://github.com/SeisSol.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## GPU-GEMM generator for the Discontinuous Galerkin method\n\n## Installation\n#### For users\n```console\npip3 install gemmforge\n```\n\n#### For developers\n```console\ngit clone https://github.com/ravil-mobile/gemmforge.git gemmforge\ncd gemmforge\npip3 install -e .\n```\n\n\n## Usage\n```python\nfrom gemmforge import DenseMatrix, GenerationError, GemmGenerator\nfrom gemmforge.vm import vm_factory\n\n\nmat_a = DenseMatrix(num_rows=56,\n                    num_cols=9,\n                    addressing=\"strided\",\n                    bbox=[0, 0, 56, 9])\n\nmat_b = DenseMatrix(num_rows=9,\n                    num_cols=9,\n                    addressing=\"strided\",\n                    bbox=[0, 0, 9, 9])\n\n\nmat_c = DenseMatrix(num_rows=56,\n                    num_cols=9,\n                    bbox=[0, 0, 56, 9],\n                    addressing=\"strided\")\n\ntry:\n    vm = vm_factory(arch=\"sm_60\", backend=\"cuda\", fp_type=\"float\")\n    gen = GemmGenerator(vm)\n\n    gen.set(False, False, mat_a, mat_b, mat_c, alpha=1.1, beta=1.1)\n    gen.generate()\n    print(gen.get_kernel())\n    print(gen.get_launcher())\n    print(gen.get_launcher_header())\n\nexcept GenerationError as err:\n    print(f'ERROR: {err}')\n    raise err\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseissol%2Fgemmforge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fseissol%2Fgemmforge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseissol%2Fgemmforge/lists"}