Skip to content

Commit b20e3ff

Browse files
committed
fixes
1 parent e3e6709 commit b20e3ff

File tree

5 files changed

+2
-4
lines changed

5 files changed

+2
-4
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ if(CMAKE_BUILD_TYPE MATCHES "Debug")
8484
endif()
8585

8686
pybind11_add_module(cuda_float_compress
87-
src/cuda_float_compress/cuda_float_compress.cpp
88-
src/cuda_float_compress/cuszplus_f32.cu
87+
src/cuda_float_compress.cpp
88+
src/cuszplus_f32.cu
8989
)
9090

9191
target_include_directories(cuda_float_compress PUBLIC

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ This is the result of running the `examples/model_compress_example.py` script on
9191
warnings.warn(msg)
9292
original_params.shape: torch.Size([145046770])
9393
compressed_params = torch.Size([144257393]) torch.uint8 cpu
94-
INFO: Decompression completed successfully
9594
stem.0.weight = torch.Size([32, 3, 3, 3]) torch.float32 cuda:0
9695
MSE: 3.46646800153394e-09 Max Error: 0.00010001659393310547
9796
stem.1.weight = torch.Size([32]) torch.float32 cuda:0
File renamed without changes.

src/cuda_float_compress/cuszplus_f32.cu src/cuszplus_f32.cu

-1
Original file line numberDiff line numberDiff line change
@@ -658,6 +658,5 @@ bool DecompressFloats(
658658
return false;
659659
}
660660

661-
cerr << "INFO: Decompression completed successfully" << endl;
662661
return true;
663662
}
File renamed without changes.

0 commit comments

Comments
 (0)