a couple more typos in comments

This commit is contained in:
Jonathan Bentz 2025-01-14 18:12:09 -06:00
parent df9ea79df4
commit e633580eff
3 changed files with 3 additions and 3 deletions

View File

@ -46,5 +46,5 @@ add_custom_command(
# Create a dummy target for fatbin generation
add_custom_target(generate_fatbin_textureDrv ALL DEPENDS ${CUDA_FATBIN_FILE})
# Ensure matrixMulDrv depends on the fatbin
# Ensure simpleTextureDrv depends on the fatbin
add_dependencies(simpleTextureDrv generate_fatbin_textureDrv)

View File

@ -48,5 +48,5 @@ add_custom_command(
# Create a dummy target for fatbin generation
add_custom_target(generate_memMapIpc_ptx ALL DEPENDS ${CUDA_PTX_FILE})
# Ensure matrixMulDrv depends on the fatbin
# Ensure memMapIPCDrv depends on the fatbin
add_dependencies(memMapIPCDrv generate_memMapIpc_ptx)

View File

@ -49,5 +49,5 @@ add_custom_command(
# Create a dummy target for fatbin generation
add_custom_target(generate_ptxjit_ptx ALL DEPENDS ${CUDA_PTX_FILE})
# Ensure matrixMulDrv depends on the fatbin
# Ensure ptxjit depends on the fatbin
add_dependencies(ptxjit generate_ptxjit_ptx)