{"id":20237324,"url":"https://github.com/cpplawyer/cudavector","last_synced_at":"2026-05-10T13:12:17.032Z","repository":{"id":255762942,"uuid":"500393917","full_name":"cppLawyer/cudaVector","owner":"cppLawyer","description":"Vector Datastructure for Nvidia Cuda Devices. Optimized all memory is allocated on Cuda Device for optimal use. Usable in device code maintainer of cudacpp Library","archived":false,"fork":false,"pushed_at":"2022-06-12T21:52:42.000Z","size":22,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-14T01:10:38.139Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Cuda","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cppLawyer.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":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-06-06T10:48:50.000Z","updated_at":"2022-06-06T10:54:04.000Z","dependencies_parsed_at":"2024-09-07T02:43:59.219Z","dependency_job_id":"7c354661-9f04-45ea-a495-02e24803f89b","html_url":"https://github.com/cppLawyer/cudaVector","commit_stats":null,"previous_names":["cpplawyer/cudavector"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cppLawyer%2FcudaVector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cppLawyer%2FcudaVector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cppLawyer%2FcudaVector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cppLawyer%2FcudaVector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cppLawyer","download_url":"https://codeload.github.com/cppLawyer/cudaVector/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241681743,"owners_count":20002374,"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","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-14T08:26:24.773Z","updated_at":"2026-05-10T13:12:11.983Z","avatar_url":"https://github.com/cppLawyer.png","language":"Cuda","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cudaVector\n\n- Vector Datastructure for Nvidia Cuda Devices.\n- Optimized all memory is allocated on Cuda Device for optimal use.\n- Usable in device code\n- maintainer of cudacpp Library\n\n\nEXAMPLE:\n\n```\n\n#include \"cuda_runtime.h\"\n#include \"device_launch_parameters.h\"\n#include \u003cstdio.h\u003e\n#include \"cudaVector.cuh\"\n\n__global__ void do_something() {\n    cudacpp::cudaVector\u003cint\u003e var;\n    var.push_back(1);\n    var.push_back(2);\n    var.push_back(3);\n    var.push_back(4);\n    var.push_back(5);\n    var.erase(var.begin() + 3, var.end() - 1);\n    printf(\"%i\\n\\n\\n\", var.size());\n    for (uint_fast64_t i = 0; i \u003c var.size(); ++i)\n      printf(\"%i\\n\", var[i]);\n\n    var.insert(var.begin(), 99);\n    printf(\"%i\\n\", var.at(0));\n    printf(\"%i\\n\", var.at(3));\n}\n\nint main()\n{\n    do_something \u003c\u003c \u003c 1, 1 \u003e\u003e \u003e ();\n    return 0;\n}\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcpplawyer%2Fcudavector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcpplawyer%2Fcudavector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcpplawyer%2Fcudavector/lists"}