Commit 370334aa authored by yan.yan's avatar yan.yan
Browse files

v2.1.19: fix problem in sm_50 old GPUs

parent 93aa19ee
# Changelog # Changelog
## [2.1.19] - 2021-12-3
### Fixed
- Fix wrong arch assert in all kernels for old GPUs to make spconv work in sm_50 GPUs
## [2.1.18] - 2021-11-29 ## [2.1.18] - 2021-11-29
### Fixed ### Fixed
- Fix a small bug of spatial_shape. - Fix a small bug of spatial_shape.
......
...@@ -38,9 +38,9 @@ if cuda_ver: ...@@ -38,9 +38,9 @@ if cuda_ver:
cuda_ver = cuda_ver.replace(".", "") # 10.2 to 102 cuda_ver = cuda_ver.replace(".", "") # 10.2 to 102
RELEASE_NAME += "-cu{}".format(cuda_ver) RELEASE_NAME += "-cu{}".format(cuda_ver)
deps = ["cumm-cu{}>=0.2.3".format(cuda_ver)] deps = ["cumm-cu{}>=0.2.6".format(cuda_ver)]
else: else:
deps = ["cumm>=0.2.3"] deps = ["cumm>=0.2.6"]
......
2.1.18 2.1.19
\ No newline at end of file \ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment