From 75c3b5fbb303c157dcc886aa3c305dae0dedfac7 Mon Sep 17 00:00:00 2001 From: Michael Droettboom Date: Wed, 1 Apr 2026 15:22:44 -0400 Subject: [PATCH] Fix #1841: Rename examples --- .../0_Introduction/{clock_nvrtc_test.py => clock_nvrtc.py} | 0 .../{simpleCubemapTexture_test.py => simple_cubemap_texture.py} | 0 .../examples/0_Introduction/{simpleP2P_test.py => simple_p2p.py} | 0 .../{simpleZeroCopy_test.py => simple_zero_copy.py} | 0 .../{systemWideAtomics_test.py => system_wide_atomics.py} | 0 .../0_Introduction/{vectorAddDrv_test.py => vector_add_drv.py} | 0 .../0_Introduction/{vectorAddMMAP_test.py => vector_add_mmap.py} | 0 ...reamOrderedAllocation_test.py => stream_ordered_allocation.py} | 0 ...obalToShmemAsyncCopy_test.py => global_to_shmem_async_copy.py} | 0 .../{simpleCudaGraphs_test.py => simple_cuda_graphs.py} | 0 ...tMultiBlockCG_test.py => conjugate_gradient_multi_block_cg.py} | 0 .../extra/{isoFDModelling_test.py => iso_fd_modelling.py} | 0 .../examples/extra/{jit_program_test.py => jit_program.py} | 0 13 files changed, 0 insertions(+), 0 deletions(-) rename cuda_bindings/examples/0_Introduction/{clock_nvrtc_test.py => clock_nvrtc.py} (100%) rename cuda_bindings/examples/0_Introduction/{simpleCubemapTexture_test.py => simple_cubemap_texture.py} (100%) rename cuda_bindings/examples/0_Introduction/{simpleP2P_test.py => simple_p2p.py} (100%) rename cuda_bindings/examples/0_Introduction/{simpleZeroCopy_test.py => simple_zero_copy.py} (100%) rename cuda_bindings/examples/0_Introduction/{systemWideAtomics_test.py => system_wide_atomics.py} (100%) rename cuda_bindings/examples/0_Introduction/{vectorAddDrv_test.py => vector_add_drv.py} (100%) rename cuda_bindings/examples/0_Introduction/{vectorAddMMAP_test.py => vector_add_mmap.py} (100%) rename cuda_bindings/examples/2_Concepts_and_Techniques/{streamOrderedAllocation_test.py => stream_ordered_allocation.py} (100%) rename cuda_bindings/examples/3_CUDA_Features/{globalToShmemAsyncCopy_test.py => global_to_shmem_async_copy.py} (100%) rename cuda_bindings/examples/3_CUDA_Features/{simpleCudaGraphs_test.py => simple_cuda_graphs.py} (100%) rename cuda_bindings/examples/4_CUDA_Libraries/{conjugateGradientMultiBlockCG_test.py => conjugate_gradient_multi_block_cg.py} (100%) rename cuda_bindings/examples/extra/{isoFDModelling_test.py => iso_fd_modelling.py} (100%) rename cuda_bindings/examples/extra/{jit_program_test.py => jit_program.py} (100%) diff --git a/cuda_bindings/examples/0_Introduction/clock_nvrtc_test.py b/cuda_bindings/examples/0_Introduction/clock_nvrtc.py similarity index 100% rename from cuda_bindings/examples/0_Introduction/clock_nvrtc_test.py rename to cuda_bindings/examples/0_Introduction/clock_nvrtc.py diff --git a/cuda_bindings/examples/0_Introduction/simpleCubemapTexture_test.py b/cuda_bindings/examples/0_Introduction/simple_cubemap_texture.py similarity index 100% rename from cuda_bindings/examples/0_Introduction/simpleCubemapTexture_test.py rename to cuda_bindings/examples/0_Introduction/simple_cubemap_texture.py diff --git a/cuda_bindings/examples/0_Introduction/simpleP2P_test.py b/cuda_bindings/examples/0_Introduction/simple_p2p.py similarity index 100% rename from cuda_bindings/examples/0_Introduction/simpleP2P_test.py rename to cuda_bindings/examples/0_Introduction/simple_p2p.py diff --git a/cuda_bindings/examples/0_Introduction/simpleZeroCopy_test.py b/cuda_bindings/examples/0_Introduction/simple_zero_copy.py similarity index 100% rename from cuda_bindings/examples/0_Introduction/simpleZeroCopy_test.py rename to cuda_bindings/examples/0_Introduction/simple_zero_copy.py diff --git a/cuda_bindings/examples/0_Introduction/systemWideAtomics_test.py b/cuda_bindings/examples/0_Introduction/system_wide_atomics.py similarity index 100% rename from cuda_bindings/examples/0_Introduction/systemWideAtomics_test.py rename to cuda_bindings/examples/0_Introduction/system_wide_atomics.py diff --git a/cuda_bindings/examples/0_Introduction/vectorAddDrv_test.py b/cuda_bindings/examples/0_Introduction/vector_add_drv.py similarity index 100% rename from cuda_bindings/examples/0_Introduction/vectorAddDrv_test.py rename to cuda_bindings/examples/0_Introduction/vector_add_drv.py diff --git a/cuda_bindings/examples/0_Introduction/vectorAddMMAP_test.py b/cuda_bindings/examples/0_Introduction/vector_add_mmap.py similarity index 100% rename from cuda_bindings/examples/0_Introduction/vectorAddMMAP_test.py rename to cuda_bindings/examples/0_Introduction/vector_add_mmap.py diff --git a/cuda_bindings/examples/2_Concepts_and_Techniques/streamOrderedAllocation_test.py b/cuda_bindings/examples/2_Concepts_and_Techniques/stream_ordered_allocation.py similarity index 100% rename from cuda_bindings/examples/2_Concepts_and_Techniques/streamOrderedAllocation_test.py rename to cuda_bindings/examples/2_Concepts_and_Techniques/stream_ordered_allocation.py diff --git a/cuda_bindings/examples/3_CUDA_Features/globalToShmemAsyncCopy_test.py b/cuda_bindings/examples/3_CUDA_Features/global_to_shmem_async_copy.py similarity index 100% rename from cuda_bindings/examples/3_CUDA_Features/globalToShmemAsyncCopy_test.py rename to cuda_bindings/examples/3_CUDA_Features/global_to_shmem_async_copy.py diff --git a/cuda_bindings/examples/3_CUDA_Features/simpleCudaGraphs_test.py b/cuda_bindings/examples/3_CUDA_Features/simple_cuda_graphs.py similarity index 100% rename from cuda_bindings/examples/3_CUDA_Features/simpleCudaGraphs_test.py rename to cuda_bindings/examples/3_CUDA_Features/simple_cuda_graphs.py diff --git a/cuda_bindings/examples/4_CUDA_Libraries/conjugateGradientMultiBlockCG_test.py b/cuda_bindings/examples/4_CUDA_Libraries/conjugate_gradient_multi_block_cg.py similarity index 100% rename from cuda_bindings/examples/4_CUDA_Libraries/conjugateGradientMultiBlockCG_test.py rename to cuda_bindings/examples/4_CUDA_Libraries/conjugate_gradient_multi_block_cg.py diff --git a/cuda_bindings/examples/extra/isoFDModelling_test.py b/cuda_bindings/examples/extra/iso_fd_modelling.py similarity index 100% rename from cuda_bindings/examples/extra/isoFDModelling_test.py rename to cuda_bindings/examples/extra/iso_fd_modelling.py diff --git a/cuda_bindings/examples/extra/jit_program_test.py b/cuda_bindings/examples/extra/jit_program.py similarity index 100% rename from cuda_bindings/examples/extra/jit_program_test.py rename to cuda_bindings/examples/extra/jit_program.py