cache_kernel -> cache_kernels

This commit is contained in:
Woosuk Kwon 2023-02-16 20:05:45 +00:00
parent 6d2f74efb3
commit ffad4e1e03
2 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ ext_modules = []
# Cache operations. # Cache operations.
cache_extension = cpp_extension.CUDAExtension( cache_extension = cpp_extension.CUDAExtension(
name='cacheflow.ops', name='cacheflow.ops',
sources=['csrc/cache.cpp', 'csrc/cache_kernel.cu'], sources=['csrc/cache.cpp', 'csrc/cache_kernels.cu'],
extra_compile_args={'cxx': CXX_FLAGS, 'nvcc': NVCC_FLAGS}, extra_compile_args={'cxx': CXX_FLAGS, 'nvcc': NVCC_FLAGS},
) )
ext_modules.append(cache_extension) ext_modules.append(cache_extension)