{"id":28249410,"url":"https://github.com/ztgx/nebula","last_synced_at":"2026-07-09T04:31:12.559Z","repository":{"id":294136517,"uuid":"986027053","full_name":"zTgx/nebula","owner":"zTgx","description":"Nebula​​ is a GPU-accelerated parallel processing.","archived":false,"fork":false,"pushed_at":"2025-06-11T10:05:41.000Z","size":33,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-25T14:45:13.228Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zTgx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-05-19T02:02:58.000Z","updated_at":"2025-06-18T04:48:04.000Z","dependencies_parsed_at":"2025-08-16T18:19:43.116Z","dependency_job_id":"10595efb-3013-4411-b29a-b0047e62d78c","html_url":"https://github.com/zTgx/nebula","commit_stats":null,"previous_names":["ztgx/nebula"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zTgx/nebula","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zTgx%2Fnebula","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zTgx%2Fnebula/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zTgx%2Fnebula/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zTgx%2Fnebula/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zTgx","download_url":"https://codeload.github.com/zTgx/nebula/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zTgx%2Fnebula/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35287396,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-09T02:00:07.329Z","response_time":57,"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":"2025-05-19T13:14:45.368Z","updated_at":"2026-07-09T04:31:12.541Z","avatar_url":"https://github.com/zTgx.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"## nebula\n\n### pre-required\n* CUDA\n* Boost\n* CMake\n* C++17+\n\n### Starter\n```bash\nmkdir build \u0026\u0026 cd build\ncmake .. \u0026\u0026 make\n\n./nebula\n```\n\n```bash\ncurl -X POST http://localhost:12345/compute -H \"Content-Type: application/json\" -d '{\n    \"task\": \"matrix_multiply\",\n    \"data\": {\n        \"matrix_a\": [[1.0, 2.0], [3.0, 4.0]],\n        \"matrix_b\": [[5.0, 6.0], [7.0, 8.0]]\n    }\n}'\n\ncurl -X POST http://localhost:8080/compute -H \"Content-Type: application/json\" -d '{\n    \"task\": \"matrix_vector_multiply\",\n    \"data\": {\n        \"matrix_a\": [[1.0, 2.0], [3.0, 4.0]],\n        \"vector_x\": [5.0, 6.0]\n    }\n}'\n\ncurl -X POST http://localhost:8080/compute -H \"Content-Type: application/json\" -d '{\n    \"task\": \"vector_dot\",\n    \"data\": {\n        \"vector_x\": [1.0, 2.0, 3.0],\n        \"vector_y\": [4.0, 5.0, 6.0]\n    }\n}'\n```\n\n# nvidia-smi\n```shell\nMon May 19 09:56:03 2025       \n+-----------------------------------------------------------------------------------------+\n| NVIDIA-SMI 575.51.03              Driver Version: 575.51.03      CUDA Version: 12.9     |\n|-----------------------------------------+------------------------+----------------------+\n| GPU  Name                 Persistence-M | Bus-Id          Disp.A | Volatile Uncorr. ECC |\n| Fan  Temp   Perf          Pwr:Usage/Cap |           Memory-Usage | GPU-Util  Compute M. |\n|                                         |                        |               MIG M. |\n|=========================================+========================+======================|\n|   0  NVIDIA GeForce MX150           Off |   00000000:01:00.0 Off |                  N/A |\n| N/A   43C    P8            N/A  / 5001W |       7MiB /   2048MiB |      0%      Default |\n|                                         |                        |                  N/A |\n+-----------------------------------------+------------------------+----------------------+\n                                                                                         \n+-----------------------------------------------------------------------------------------+\n| Processes:                                                                              |\n|  GPU   GI   CI              PID   Type   Process name                        GPU Memory |\n|        ID   ID                                                               Usage      |\n|=========================================================================================|\n|    0   N/A  N/A            1759      G   /usr/lib/xorg/Xorg                        4MiB |\n+-----------------------------------------------------------------------------------------+\n```\n\n# nvcc --version\n```shell\nnvcc: NVIDIA (R) Cuda compiler driver\nCopyright (c) 2005-2025 NVIDIA Corporation\nBuilt on Wed_Apr__9_19:24:57_PDT_2025\nCuda compilation tools, release 12.9, V12.9.41\nBuild cuda_12.9.r12.9/compiler.35813241_0\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fztgx%2Fnebula","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fztgx%2Fnebula","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fztgx%2Fnebula/lists"}