From 7755c79991c4ec350db95be046a767160fc26674 Mon Sep 17 00:00:00 2001 From: Lucas Colas <51634013+LucasColas@users.noreply.github.com> Date: Sun, 2 Feb 2025 14:24:24 -0500 Subject: [PATCH 1/5] change torch cuda --- pointnet2_ops_lib/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pointnet2_ops_lib/setup.py b/pointnet2_ops_lib/setup.py index faf7154..b7e9ce2 100644 --- a/pointnet2_ops_lib/setup.py +++ b/pointnet2_ops_lib/setup.py @@ -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"] = "8.6" setup( name="pointnet2_ops", version=__version__, From 718513cb65f53aa585c40d8b7066eecdfb8f88ee Mon Sep 17 00:00:00 2001 From: Lucas Colas <51634013+LucasColas@users.noreply.github.com> Date: Mon, 3 Feb 2025 08:38:49 -0500 Subject: [PATCH 2/5] change cuda Compute Capability --- pointnet2_ops_lib/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pointnet2_ops_lib/setup.py b/pointnet2_ops_lib/setup.py index b7e9ce2..410fd96 100644 --- a/pointnet2_ops_lib/setup.py +++ b/pointnet2_ops_lib/setup.py @@ -16,7 +16,7 @@ exec(open(osp.join("pointnet2_ops", "_version.py")).read()) -os.environ["TORCH_CUDA_ARCH_LIST"] = "8.6" +os.environ["TORCH_CUDA_ARCH_LIST"] = "7.5" setup( name="pointnet2_ops", version=__version__, From c5126f407a0e7c959e829a1e99df6e0d7ad90e20 Mon Sep 17 00:00:00 2001 From: Lucas Colas <51634013+LucasColas@users.noreply.github.com> Date: Sat, 8 Feb 2025 12:26:37 -0500 Subject: [PATCH 3/5] Add modre CUDA compatibilities --- pointnet2_ops_lib/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pointnet2_ops_lib/setup.py b/pointnet2_ops_lib/setup.py index 410fd96..fe07fe9 100644 --- a/pointnet2_ops_lib/setup.py +++ b/pointnet2_ops_lib/setup.py @@ -16,7 +16,7 @@ exec(open(osp.join("pointnet2_ops", "_version.py")).read()) -os.environ["TORCH_CUDA_ARCH_LIST"] = "7.5" +os.environ["TORCH_CUDA_ARCH_LIST"] = "5.0;6.0;6.1;6.2;7.0;7.5;8.0;8.6;9.0+PTX" setup( name="pointnet2_ops", version=__version__, From a7c7ea34a3c888eda91ecc4f0cae0a9484d5c171 Mon Sep 17 00:00:00 2001 From: Lucas Colas <51634013+LucasColas@users.noreply.github.com> Date: Sat, 8 Feb 2025 14:16:29 -0500 Subject: [PATCH 4/5] change cuda architecture versions --- pointnet2_ops_lib/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pointnet2_ops_lib/setup.py b/pointnet2_ops_lib/setup.py index fe07fe9..e6bbbd9 100644 --- a/pointnet2_ops_lib/setup.py +++ b/pointnet2_ops_lib/setup.py @@ -16,7 +16,7 @@ exec(open(osp.join("pointnet2_ops", "_version.py")).read()) -os.environ["TORCH_CUDA_ARCH_LIST"] = "5.0;6.0;6.1;6.2;7.0;7.5;8.0;8.6;9.0+PTX" +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__, From cc9068764276c039921b940260a2a44b178a7f7d Mon Sep 17 00:00:00 2001 From: Lucas Colas <51634013+LucasColas@users.noreply.github.com> Date: Mon, 24 Feb 2025 13:06:44 -0500 Subject: [PATCH 5/5] Make it work for NVIDIA 1660 Ti --- pointnet2_ops_lib/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pointnet2_ops_lib/setup.py b/pointnet2_ops_lib/setup.py index e6bbbd9..75807be 100644 --- a/pointnet2_ops_lib/setup.py +++ b/pointnet2_ops_lib/setup.py @@ -16,7 +16,7 @@ exec(open(osp.join("pointnet2_ops", "_version.py")).read()) -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" +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+PTX" setup( name="pointnet2_ops", version=__version__,