summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2022-03-20 18:01:22 +0100
committerDavid Seifert <soap@gentoo.org>2022-03-20 18:01:22 +0100
commitd6da82759343230f6dcb8a3e07c8e1faf06bde57 (patch)
tree7500e236fb7e8c53f13c4f137d236aea4aa4b359 /media-libs/opensubdiv/files/opensubdiv-3.3.0-add-CUDA9-compatibility.patch
parentapp-text/calibre: add 5.39.1 (diff)
downloadgentoo-d6da82759343230f6dcb8a3e07c8e1faf06bde57.tar.gz
gentoo-d6da82759343230f6dcb8a3e07c8e1faf06bde57.tar.bz2
gentoo-d6da82759343230f6dcb8a3e07c8e1faf06bde57.zip
media-libs/opensubdiv: drop 3.4.3-r1, 3.4.4-r1, 3.4.4-r2
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-libs/opensubdiv/files/opensubdiv-3.3.0-add-CUDA9-compatibility.patch')
-rw-r--r--media-libs/opensubdiv/files/opensubdiv-3.3.0-add-CUDA9-compatibility.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/media-libs/opensubdiv/files/opensubdiv-3.3.0-add-CUDA9-compatibility.patch b/media-libs/opensubdiv/files/opensubdiv-3.3.0-add-CUDA9-compatibility.patch
deleted file mode 100644
index 9fe81c4ee199..000000000000
--- a/media-libs/opensubdiv/files/opensubdiv-3.3.0-add-CUDA9-compatibility.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 7b9157bca7138480c387ef3d5b69b6cf1eb498e5 Mon Sep 17 00:00:00 2001
-From: "Daniel M. Weeks" <dan@danweeks.net>
-Date: Fri, 15 Dec 2017 22:45:55 -0500
-Subject: [PATCH] CUDA 9 compatible gpu-architecture default
-
----
- CMakeLists.txt | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 4f3cd9d4..fa438b46 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -513,8 +513,10 @@ if(CUDA_FOUND)
- if (NOT DEFINED OSD_CUDA_NVCC_FLAGS)
- if (CUDA_VERSION_MAJOR LESS 6)
- set( OSD_CUDA_NVCC_FLAGS --gpu-architecture compute_11 )
-- else()
-+ elseif (CUDA_VERSION_MAJOR LESS 9)
- set( OSD_CUDA_NVCC_FLAGS --gpu-architecture compute_20 )
-+ else()
-+ set( OSD_CUDA_NVCC_FLAGS --gpu-architecture compute_30 )
- endif()
- endif()
- endif()