Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Pointnet2/Pointnet++ PyTorch
============================

*** Compilation problem solved with pytorch2.2.1 with CUDA12.1 on Ubuntu22.04
*** If still have issue about ninja, install build-essential and ninja-build or change “cmdclass={'build_ext': BuildExtension.with_options(use_ninja=False)}” in pointnet2_ops_lib/setup.py

**Project Status**: Unmaintained. Due to finite time, I have no plans to update this code and I will not be responding to issues.

Expand Down
2 changes: 1 addition & 1 deletion pointnet2_ops_lib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

exec(open(osp.join("pointnet2_ops", "_version.py")).read())

os.environ["TORCH_CUDA_ARCH_LIST"] = "3.7+PTX;5.0;6.0;6.1;6.2;7.0;7.5"
os.environ["TORCH_CUDA_ARCH_LIST"] = "5.0;6.0;6.1;6.2;7.0;7.5;8.0;8.6;8.7;8.9;9.0"
setup(
name="pointnet2_ops",
version=__version__,
Expand Down