├── .codedocs ├── .github ├── FUNDING.yml ├── action-scripts │ ├── install-cuda-ubuntu.sh │ └── install-cuda-windows.ps1 └── workflows │ ├── cmake-build-linux.yml │ └── cmake-build-windows.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── cuda-api-wrappers-config.cmake ├── docs └── doxygen_extra.css ├── doxygen.cfg ├── examples ├── CMakeLists.txt ├── by_api_module │ ├── context_management.cpp │ ├── device_management.cpp │ ├── error_handling.cu │ ├── event_management.cu │ ├── execution_control.cu │ ├── ipc.cpp │ ├── memory_pools.cpp │ ├── module_management.cpp │ ├── stream_management.cu │ ├── unified_addressing.cpp │ └── version_management.cpp ├── cmake │ └── Modules │ │ └── CompileWithWarnings.cmake ├── common.hpp ├── enumerate.hpp ├── modified_cuda_samples │ ├── asyncAPI │ │ └── asyncAPI.cu │ ├── bandwidthtest │ │ └── bandwidthtest.cpp │ ├── binaryPartitionCG │ │ └── binaryPartitionCG.cu │ ├── clock_nvrtc │ │ └── clock.cpp │ ├── graphMemoryNodes │ │ └── graphMemoryNodes.cu │ ├── inlinePTX │ │ ├── inlinePTX.cu │ │ └── ptx.cuh │ ├── jacobiCudaGraphs │ │ ├── jacobi.cu │ │ ├── jacobi.h │ │ ├── jacobi_kernels.cuh │ │ └── main.cpp │ ├── matrixMulCUBLAS │ │ └── matrixMulCUBLAS.cpp │ ├── memMapIPCDrv │ │ ├── child.cpp │ │ ├── helper_multiprocess.cpp │ │ ├── helper_multiprocess.h │ │ ├── memMapIPC.cpp │ │ ├── memMapIPC.hpp │ │ ├── memMapIPC_kernel.cu │ │ └── parent.cpp │ ├── p2pBandwidthLatencyTest │ │ └── p2pBandwidthLatencyTest.cu │ ├── simpleCudaGraphs │ │ └── simpleCudaGraphs.cu │ ├── simpleDrvRuntimePTX │ │ └── simpleDrvRuntimePTX.cpp │ ├── simpleIPC │ │ └── simpleIPC.cu │ ├── simpleStreams │ │ └── simpleStreams.cu │ ├── simpleTextureDrv │ │ ├── data │ │ │ ├── ref_rotated.pgm │ │ │ └── teapot512.pgm │ │ ├── helper_image.h │ │ ├── simpleTextureDrv.cpp │ │ └── simpleTexture_kernel.cu │ ├── streamOrderedAllocation │ │ └── streamOrderedAllocation.cu │ ├── streamOrderedAllocationIPC │ │ ├── helper_multiprocess.cpp │ │ ├── helper_multiprocess.h │ │ └── streamOrderedAllocationIPC.cu │ ├── streamOrderedAllocationP2P │ │ └── streamOrderedAllocationP2P.cu │ ├── vectorAdd │ │ └── vectorAdd.cu │ ├── vectorAddMMAP │ │ ├── vectorAddMMAP.cpp │ │ └── vectorAdd_kernel.cu │ ├── vectorAddManaged │ │ └── vectorAddManaged.cu │ ├── vectorAddMapped │ │ └── vectorAddMapped.cu │ ├── vectorAdd_nvrtc │ │ └── vectorAdd_nvrtc.cpp │ ├── vectorAdd_ptx │ │ └── vectorAdd_ptx.cpp │ └── vectorAdd_unique_regions │ │ └── vectorAdd_unique_regions.cu ├── other │ ├── array_management.cu │ ├── inclusion_in_two_translation_units │ │ ├── main.cpp │ │ └── second_tu.cpp │ ├── io_compute_overlap_with_streams.cu │ ├── jitify │ │ ├── constant_header.cuh │ │ ├── jitify.cpp │ │ ├── my_header1.cuh │ │ ├── my_header2.cuh │ │ └── my_header3.cuh │ ├── manipulate_current_device.cu │ ├── new_cpp_standard │ │ └── main.cpp │ └── vectorAdd_profiled.cu ├── string_view.hpp ├── type_name.hpp └── zip.hpp └── src └── cuda ├── api.hpp ├── api ├── array.hpp ├── common_ptx_compilation_options.hpp ├── constants.hpp ├── context.hpp ├── copy_parameters.hpp ├── current_context.hpp ├── current_device.hpp ├── demangle.hpp ├── detail │ ├── device_properties.hpp │ ├── for_each_argument.hpp │ ├── option_marshalling.hpp │ ├── optional.hpp │ ├── optional_ref.hpp │ ├── pci_id.hpp │ ├── region.hpp │ ├── span.hpp │ ├── type_traits.hpp │ └── unique_span.hpp ├── device.hpp ├── device_properties.hpp ├── devices.hpp ├── error.hpp ├── event.hpp ├── external.hpp ├── graph │ ├── identify.hpp │ ├── instance.hpp │ ├── node.hpp │ ├── node_builder.hpp │ ├── template.hpp │ └── typed_node.hpp ├── ipc.hpp ├── kernel.hpp ├── kernel_launch.hpp ├── kernels │ ├── apriori_compiled.hpp │ └── in_library.hpp ├── launch_config_builder.hpp ├── launch_configuration.hpp ├── library.hpp ├── link.hpp ├── link_options.hpp ├── memory.hpp ├── memory_pool.hpp ├── miscellany.hpp ├── module.hpp ├── multi_wrapper_impls │ ├── apriori_compiled_kernel.hpp │ ├── array.hpp │ ├── context.hpp │ ├── device.hpp │ ├── event.hpp │ ├── graph.hpp │ ├── ipc.hpp │ ├── kernel.hpp │ ├── kernel_launch.hpp │ ├── launch_configuration.hpp │ ├── library_kernel.hpp │ ├── link.hpp │ ├── memory.hpp │ ├── module.hpp │ ├── pointer.hpp │ ├── stream.hpp │ ├── unique_region.hpp │ ├── unique_span.hpp │ └── virtual_memory.hpp ├── pci_id.hpp ├── peer_to_peer.hpp ├── pointer.hpp ├── primary_context.hpp ├── stream.hpp ├── texture_view.hpp ├── types.hpp ├── unique_region.hpp ├── versions.hpp └── virtual_memory.hpp ├── define_specifiers.hpp ├── fatbin.hpp ├── fatbin ├── builder.hpp ├── builder_options.hpp ├── error.hpp ├── types.hpp └── versions.hpp ├── nvtx.hpp ├── nvtx └── profiling.hpp ├── rtc.hpp ├── rtc ├── compilation_options.hpp ├── compilation_output.hpp ├── detail │ └── string_view.hpp ├── error.hpp ├── program.hpp ├── types.hpp └── versions.hpp └── undefine_specifiers.hpp /.codedocs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/.codedocs -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/action-scripts/install-cuda-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/.github/action-scripts/install-cuda-ubuntu.sh -------------------------------------------------------------------------------- /.github/action-scripts/install-cuda-windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/.github/action-scripts/install-cuda-windows.ps1 -------------------------------------------------------------------------------- /.github/workflows/cmake-build-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/.github/workflows/cmake-build-linux.yml -------------------------------------------------------------------------------- /.github/workflows/cmake-build-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/.github/workflows/cmake-build-windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/README.md -------------------------------------------------------------------------------- /cmake/cuda-api-wrappers-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/cmake/cuda-api-wrappers-config.cmake -------------------------------------------------------------------------------- /docs/doxygen_extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/docs/doxygen_extra.css -------------------------------------------------------------------------------- /doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/doxygen.cfg -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/by_api_module/context_management.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/by_api_module/context_management.cpp -------------------------------------------------------------------------------- /examples/by_api_module/device_management.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/by_api_module/device_management.cpp -------------------------------------------------------------------------------- /examples/by_api_module/error_handling.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/by_api_module/error_handling.cu -------------------------------------------------------------------------------- /examples/by_api_module/event_management.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/by_api_module/event_management.cu -------------------------------------------------------------------------------- /examples/by_api_module/execution_control.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/by_api_module/execution_control.cu -------------------------------------------------------------------------------- /examples/by_api_module/ipc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/by_api_module/ipc.cpp -------------------------------------------------------------------------------- /examples/by_api_module/memory_pools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/by_api_module/memory_pools.cpp -------------------------------------------------------------------------------- /examples/by_api_module/module_management.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/by_api_module/module_management.cpp -------------------------------------------------------------------------------- /examples/by_api_module/stream_management.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/by_api_module/stream_management.cu -------------------------------------------------------------------------------- /examples/by_api_module/unified_addressing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/by_api_module/unified_addressing.cpp -------------------------------------------------------------------------------- /examples/by_api_module/version_management.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/by_api_module/version_management.cpp -------------------------------------------------------------------------------- /examples/cmake/Modules/CompileWithWarnings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/cmake/Modules/CompileWithWarnings.cmake -------------------------------------------------------------------------------- /examples/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/common.hpp -------------------------------------------------------------------------------- /examples/enumerate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/enumerate.hpp -------------------------------------------------------------------------------- /examples/modified_cuda_samples/asyncAPI/asyncAPI.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/asyncAPI/asyncAPI.cu -------------------------------------------------------------------------------- /examples/modified_cuda_samples/bandwidthtest/bandwidthtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/bandwidthtest/bandwidthtest.cpp -------------------------------------------------------------------------------- /examples/modified_cuda_samples/binaryPartitionCG/binaryPartitionCG.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/binaryPartitionCG/binaryPartitionCG.cu -------------------------------------------------------------------------------- /examples/modified_cuda_samples/clock_nvrtc/clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/clock_nvrtc/clock.cpp -------------------------------------------------------------------------------- /examples/modified_cuda_samples/graphMemoryNodes/graphMemoryNodes.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/graphMemoryNodes/graphMemoryNodes.cu -------------------------------------------------------------------------------- /examples/modified_cuda_samples/inlinePTX/inlinePTX.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/inlinePTX/inlinePTX.cu -------------------------------------------------------------------------------- /examples/modified_cuda_samples/inlinePTX/ptx.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/inlinePTX/ptx.cuh -------------------------------------------------------------------------------- /examples/modified_cuda_samples/jacobiCudaGraphs/jacobi.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/jacobiCudaGraphs/jacobi.cu -------------------------------------------------------------------------------- /examples/modified_cuda_samples/jacobiCudaGraphs/jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/jacobiCudaGraphs/jacobi.h -------------------------------------------------------------------------------- /examples/modified_cuda_samples/jacobiCudaGraphs/jacobi_kernels.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/jacobiCudaGraphs/jacobi_kernels.cuh -------------------------------------------------------------------------------- /examples/modified_cuda_samples/jacobiCudaGraphs/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/jacobiCudaGraphs/main.cpp -------------------------------------------------------------------------------- /examples/modified_cuda_samples/matrixMulCUBLAS/matrixMulCUBLAS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/matrixMulCUBLAS/matrixMulCUBLAS.cpp -------------------------------------------------------------------------------- /examples/modified_cuda_samples/memMapIPCDrv/child.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/memMapIPCDrv/child.cpp -------------------------------------------------------------------------------- /examples/modified_cuda_samples/memMapIPCDrv/helper_multiprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/memMapIPCDrv/helper_multiprocess.cpp -------------------------------------------------------------------------------- /examples/modified_cuda_samples/memMapIPCDrv/helper_multiprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/memMapIPCDrv/helper_multiprocess.h -------------------------------------------------------------------------------- /examples/modified_cuda_samples/memMapIPCDrv/memMapIPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/memMapIPCDrv/memMapIPC.cpp -------------------------------------------------------------------------------- /examples/modified_cuda_samples/memMapIPCDrv/memMapIPC.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/memMapIPCDrv/memMapIPC.hpp -------------------------------------------------------------------------------- /examples/modified_cuda_samples/memMapIPCDrv/memMapIPC_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/memMapIPCDrv/memMapIPC_kernel.cu -------------------------------------------------------------------------------- /examples/modified_cuda_samples/memMapIPCDrv/parent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/memMapIPCDrv/parent.cpp -------------------------------------------------------------------------------- /examples/modified_cuda_samples/p2pBandwidthLatencyTest/p2pBandwidthLatencyTest.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/p2pBandwidthLatencyTest/p2pBandwidthLatencyTest.cu -------------------------------------------------------------------------------- /examples/modified_cuda_samples/simpleCudaGraphs/simpleCudaGraphs.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/simpleCudaGraphs/simpleCudaGraphs.cu -------------------------------------------------------------------------------- /examples/modified_cuda_samples/simpleDrvRuntimePTX/simpleDrvRuntimePTX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/simpleDrvRuntimePTX/simpleDrvRuntimePTX.cpp -------------------------------------------------------------------------------- /examples/modified_cuda_samples/simpleIPC/simpleIPC.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/simpleIPC/simpleIPC.cu -------------------------------------------------------------------------------- /examples/modified_cuda_samples/simpleStreams/simpleStreams.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/simpleStreams/simpleStreams.cu -------------------------------------------------------------------------------- /examples/modified_cuda_samples/simpleTextureDrv/data/ref_rotated.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/simpleTextureDrv/data/ref_rotated.pgm -------------------------------------------------------------------------------- /examples/modified_cuda_samples/simpleTextureDrv/data/teapot512.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/simpleTextureDrv/data/teapot512.pgm -------------------------------------------------------------------------------- /examples/modified_cuda_samples/simpleTextureDrv/helper_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/simpleTextureDrv/helper_image.h -------------------------------------------------------------------------------- /examples/modified_cuda_samples/simpleTextureDrv/simpleTextureDrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/simpleTextureDrv/simpleTextureDrv.cpp -------------------------------------------------------------------------------- /examples/modified_cuda_samples/simpleTextureDrv/simpleTexture_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/simpleTextureDrv/simpleTexture_kernel.cu -------------------------------------------------------------------------------- /examples/modified_cuda_samples/streamOrderedAllocation/streamOrderedAllocation.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/streamOrderedAllocation/streamOrderedAllocation.cu -------------------------------------------------------------------------------- /examples/modified_cuda_samples/streamOrderedAllocationIPC/helper_multiprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/streamOrderedAllocationIPC/helper_multiprocess.cpp -------------------------------------------------------------------------------- /examples/modified_cuda_samples/streamOrderedAllocationIPC/helper_multiprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/streamOrderedAllocationIPC/helper_multiprocess.h -------------------------------------------------------------------------------- /examples/modified_cuda_samples/streamOrderedAllocationIPC/streamOrderedAllocationIPC.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/streamOrderedAllocationIPC/streamOrderedAllocationIPC.cu -------------------------------------------------------------------------------- /examples/modified_cuda_samples/streamOrderedAllocationP2P/streamOrderedAllocationP2P.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/streamOrderedAllocationP2P/streamOrderedAllocationP2P.cu -------------------------------------------------------------------------------- /examples/modified_cuda_samples/vectorAdd/vectorAdd.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/vectorAdd/vectorAdd.cu -------------------------------------------------------------------------------- /examples/modified_cuda_samples/vectorAddMMAP/vectorAddMMAP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/vectorAddMMAP/vectorAddMMAP.cpp -------------------------------------------------------------------------------- /examples/modified_cuda_samples/vectorAddMMAP/vectorAdd_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/vectorAddMMAP/vectorAdd_kernel.cu -------------------------------------------------------------------------------- /examples/modified_cuda_samples/vectorAddManaged/vectorAddManaged.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/vectorAddManaged/vectorAddManaged.cu -------------------------------------------------------------------------------- /examples/modified_cuda_samples/vectorAddMapped/vectorAddMapped.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/vectorAddMapped/vectorAddMapped.cu -------------------------------------------------------------------------------- /examples/modified_cuda_samples/vectorAdd_nvrtc/vectorAdd_nvrtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/vectorAdd_nvrtc/vectorAdd_nvrtc.cpp -------------------------------------------------------------------------------- /examples/modified_cuda_samples/vectorAdd_ptx/vectorAdd_ptx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/vectorAdd_ptx/vectorAdd_ptx.cpp -------------------------------------------------------------------------------- /examples/modified_cuda_samples/vectorAdd_unique_regions/vectorAdd_unique_regions.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/modified_cuda_samples/vectorAdd_unique_regions/vectorAdd_unique_regions.cu -------------------------------------------------------------------------------- /examples/other/array_management.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/other/array_management.cu -------------------------------------------------------------------------------- /examples/other/inclusion_in_two_translation_units/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/other/inclusion_in_two_translation_units/main.cpp -------------------------------------------------------------------------------- /examples/other/inclusion_in_two_translation_units/second_tu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/other/inclusion_in_two_translation_units/second_tu.cpp -------------------------------------------------------------------------------- /examples/other/io_compute_overlap_with_streams.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/other/io_compute_overlap_with_streams.cu -------------------------------------------------------------------------------- /examples/other/jitify/constant_header.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/other/jitify/constant_header.cuh -------------------------------------------------------------------------------- /examples/other/jitify/jitify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/other/jitify/jitify.cpp -------------------------------------------------------------------------------- /examples/other/jitify/my_header1.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/other/jitify/my_header1.cuh -------------------------------------------------------------------------------- /examples/other/jitify/my_header2.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/other/jitify/my_header2.cuh -------------------------------------------------------------------------------- /examples/other/jitify/my_header3.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/other/jitify/my_header3.cuh -------------------------------------------------------------------------------- /examples/other/manipulate_current_device.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/other/manipulate_current_device.cu -------------------------------------------------------------------------------- /examples/other/new_cpp_standard/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/other/new_cpp_standard/main.cpp -------------------------------------------------------------------------------- /examples/other/vectorAdd_profiled.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/other/vectorAdd_profiled.cu -------------------------------------------------------------------------------- /examples/string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/string_view.hpp -------------------------------------------------------------------------------- /examples/type_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/type_name.hpp -------------------------------------------------------------------------------- /examples/zip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/examples/zip.hpp -------------------------------------------------------------------------------- /src/cuda/api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api.hpp -------------------------------------------------------------------------------- /src/cuda/api/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/array.hpp -------------------------------------------------------------------------------- /src/cuda/api/common_ptx_compilation_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/common_ptx_compilation_options.hpp -------------------------------------------------------------------------------- /src/cuda/api/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/constants.hpp -------------------------------------------------------------------------------- /src/cuda/api/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/context.hpp -------------------------------------------------------------------------------- /src/cuda/api/copy_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/copy_parameters.hpp -------------------------------------------------------------------------------- /src/cuda/api/current_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/current_context.hpp -------------------------------------------------------------------------------- /src/cuda/api/current_device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/current_device.hpp -------------------------------------------------------------------------------- /src/cuda/api/demangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/demangle.hpp -------------------------------------------------------------------------------- /src/cuda/api/detail/device_properties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/detail/device_properties.hpp -------------------------------------------------------------------------------- /src/cuda/api/detail/for_each_argument.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/detail/for_each_argument.hpp -------------------------------------------------------------------------------- /src/cuda/api/detail/option_marshalling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/detail/option_marshalling.hpp -------------------------------------------------------------------------------- /src/cuda/api/detail/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/detail/optional.hpp -------------------------------------------------------------------------------- /src/cuda/api/detail/optional_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/detail/optional_ref.hpp -------------------------------------------------------------------------------- /src/cuda/api/detail/pci_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/detail/pci_id.hpp -------------------------------------------------------------------------------- /src/cuda/api/detail/region.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/detail/region.hpp -------------------------------------------------------------------------------- /src/cuda/api/detail/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/detail/span.hpp -------------------------------------------------------------------------------- /src/cuda/api/detail/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/detail/type_traits.hpp -------------------------------------------------------------------------------- /src/cuda/api/detail/unique_span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/detail/unique_span.hpp -------------------------------------------------------------------------------- /src/cuda/api/device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/device.hpp -------------------------------------------------------------------------------- /src/cuda/api/device_properties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/device_properties.hpp -------------------------------------------------------------------------------- /src/cuda/api/devices.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/devices.hpp -------------------------------------------------------------------------------- /src/cuda/api/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/error.hpp -------------------------------------------------------------------------------- /src/cuda/api/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/event.hpp -------------------------------------------------------------------------------- /src/cuda/api/external.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/external.hpp -------------------------------------------------------------------------------- /src/cuda/api/graph/identify.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/graph/identify.hpp -------------------------------------------------------------------------------- /src/cuda/api/graph/instance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/graph/instance.hpp -------------------------------------------------------------------------------- /src/cuda/api/graph/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/graph/node.hpp -------------------------------------------------------------------------------- /src/cuda/api/graph/node_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/graph/node_builder.hpp -------------------------------------------------------------------------------- /src/cuda/api/graph/template.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/graph/template.hpp -------------------------------------------------------------------------------- /src/cuda/api/graph/typed_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/graph/typed_node.hpp -------------------------------------------------------------------------------- /src/cuda/api/ipc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/ipc.hpp -------------------------------------------------------------------------------- /src/cuda/api/kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/kernel.hpp -------------------------------------------------------------------------------- /src/cuda/api/kernel_launch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/kernel_launch.hpp -------------------------------------------------------------------------------- /src/cuda/api/kernels/apriori_compiled.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/kernels/apriori_compiled.hpp -------------------------------------------------------------------------------- /src/cuda/api/kernels/in_library.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/kernels/in_library.hpp -------------------------------------------------------------------------------- /src/cuda/api/launch_config_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/launch_config_builder.hpp -------------------------------------------------------------------------------- /src/cuda/api/launch_configuration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/launch_configuration.hpp -------------------------------------------------------------------------------- /src/cuda/api/library.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/library.hpp -------------------------------------------------------------------------------- /src/cuda/api/link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/link.hpp -------------------------------------------------------------------------------- /src/cuda/api/link_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/link_options.hpp -------------------------------------------------------------------------------- /src/cuda/api/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/memory.hpp -------------------------------------------------------------------------------- /src/cuda/api/memory_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/memory_pool.hpp -------------------------------------------------------------------------------- /src/cuda/api/miscellany.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/miscellany.hpp -------------------------------------------------------------------------------- /src/cuda/api/module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/module.hpp -------------------------------------------------------------------------------- /src/cuda/api/multi_wrapper_impls/apriori_compiled_kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/multi_wrapper_impls/apriori_compiled_kernel.hpp -------------------------------------------------------------------------------- /src/cuda/api/multi_wrapper_impls/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/multi_wrapper_impls/array.hpp -------------------------------------------------------------------------------- /src/cuda/api/multi_wrapper_impls/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/multi_wrapper_impls/context.hpp -------------------------------------------------------------------------------- /src/cuda/api/multi_wrapper_impls/device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/multi_wrapper_impls/device.hpp -------------------------------------------------------------------------------- /src/cuda/api/multi_wrapper_impls/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/multi_wrapper_impls/event.hpp -------------------------------------------------------------------------------- /src/cuda/api/multi_wrapper_impls/graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/multi_wrapper_impls/graph.hpp -------------------------------------------------------------------------------- /src/cuda/api/multi_wrapper_impls/ipc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/multi_wrapper_impls/ipc.hpp -------------------------------------------------------------------------------- /src/cuda/api/multi_wrapper_impls/kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/multi_wrapper_impls/kernel.hpp -------------------------------------------------------------------------------- /src/cuda/api/multi_wrapper_impls/kernel_launch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/multi_wrapper_impls/kernel_launch.hpp -------------------------------------------------------------------------------- /src/cuda/api/multi_wrapper_impls/launch_configuration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/multi_wrapper_impls/launch_configuration.hpp -------------------------------------------------------------------------------- /src/cuda/api/multi_wrapper_impls/library_kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/multi_wrapper_impls/library_kernel.hpp -------------------------------------------------------------------------------- /src/cuda/api/multi_wrapper_impls/link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/multi_wrapper_impls/link.hpp -------------------------------------------------------------------------------- /src/cuda/api/multi_wrapper_impls/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/multi_wrapper_impls/memory.hpp -------------------------------------------------------------------------------- /src/cuda/api/multi_wrapper_impls/module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/multi_wrapper_impls/module.hpp -------------------------------------------------------------------------------- /src/cuda/api/multi_wrapper_impls/pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/multi_wrapper_impls/pointer.hpp -------------------------------------------------------------------------------- /src/cuda/api/multi_wrapper_impls/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/multi_wrapper_impls/stream.hpp -------------------------------------------------------------------------------- /src/cuda/api/multi_wrapper_impls/unique_region.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/multi_wrapper_impls/unique_region.hpp -------------------------------------------------------------------------------- /src/cuda/api/multi_wrapper_impls/unique_span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/multi_wrapper_impls/unique_span.hpp -------------------------------------------------------------------------------- /src/cuda/api/multi_wrapper_impls/virtual_memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/multi_wrapper_impls/virtual_memory.hpp -------------------------------------------------------------------------------- /src/cuda/api/pci_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/pci_id.hpp -------------------------------------------------------------------------------- /src/cuda/api/peer_to_peer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/peer_to_peer.hpp -------------------------------------------------------------------------------- /src/cuda/api/pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/pointer.hpp -------------------------------------------------------------------------------- /src/cuda/api/primary_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/primary_context.hpp -------------------------------------------------------------------------------- /src/cuda/api/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/stream.hpp -------------------------------------------------------------------------------- /src/cuda/api/texture_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/texture_view.hpp -------------------------------------------------------------------------------- /src/cuda/api/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/types.hpp -------------------------------------------------------------------------------- /src/cuda/api/unique_region.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/unique_region.hpp -------------------------------------------------------------------------------- /src/cuda/api/versions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/versions.hpp -------------------------------------------------------------------------------- /src/cuda/api/virtual_memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/api/virtual_memory.hpp -------------------------------------------------------------------------------- /src/cuda/define_specifiers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/define_specifiers.hpp -------------------------------------------------------------------------------- /src/cuda/fatbin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/fatbin.hpp -------------------------------------------------------------------------------- /src/cuda/fatbin/builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/fatbin/builder.hpp -------------------------------------------------------------------------------- /src/cuda/fatbin/builder_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/fatbin/builder_options.hpp -------------------------------------------------------------------------------- /src/cuda/fatbin/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/fatbin/error.hpp -------------------------------------------------------------------------------- /src/cuda/fatbin/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/fatbin/types.hpp -------------------------------------------------------------------------------- /src/cuda/fatbin/versions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/fatbin/versions.hpp -------------------------------------------------------------------------------- /src/cuda/nvtx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/nvtx.hpp -------------------------------------------------------------------------------- /src/cuda/nvtx/profiling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/nvtx/profiling.hpp -------------------------------------------------------------------------------- /src/cuda/rtc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/rtc.hpp -------------------------------------------------------------------------------- /src/cuda/rtc/compilation_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/rtc/compilation_options.hpp -------------------------------------------------------------------------------- /src/cuda/rtc/compilation_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/rtc/compilation_output.hpp -------------------------------------------------------------------------------- /src/cuda/rtc/detail/string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/rtc/detail/string_view.hpp -------------------------------------------------------------------------------- /src/cuda/rtc/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/rtc/error.hpp -------------------------------------------------------------------------------- /src/cuda/rtc/program.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/rtc/program.hpp -------------------------------------------------------------------------------- /src/cuda/rtc/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/rtc/types.hpp -------------------------------------------------------------------------------- /src/cuda/rtc/versions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/rtc/versions.hpp -------------------------------------------------------------------------------- /src/cuda/undefine_specifiers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalroz/cuda-api-wrappers/HEAD/src/cuda/undefine_specifiers.hpp --------------------------------------------------------------------------------