public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/rocsolver] epel10: Remove unused patches
@ 2026-06-12 17:20 Tom Rix
0 siblings, 0 replies; only message in thread
From: Tom Rix @ 2026-06-12 17:20 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/rocsolver
Branch : epel10
Commit : 430693952939e3daf3125da1e7b749c18b52c97a
Author : Tom Rix <Tom.Rix@amd.com>
Date : 2026-04-10T07:32:34-07:00
Stats : +0/-91 in 3 file(s)
URL : https://src.fedoraproject.org/rpms/rocsolver/c/430693952939e3daf3125da1e7b749c18b52c97a?branch=epel10
Log:
Remove unused patches
Signed-off-by: Tom Rix <Tom.Rix@amd.com>
---
diff --git a/0001-Add-llvm-style-compile-and-link-options.patch b/0001-Add-llvm-style-compile-and-link-options.patch
deleted file mode 100644
index 3bea0bd..0000000
--- a/0001-Add-llvm-style-compile-and-link-options.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-From 53d8578236a1664b8ad5186777a91be4ce41bee6 Mon Sep 17 00:00:00 2001
-From: Tom Rix <trix@redhat.com>
-Date: Thu, 30 Nov 2023 08:05:54 -0500
-Subject: [PATCH] Add llvm style compile and link options
-
-Signed-off-by: Tom Rix <trix@redhat.com>
----
- CMakeLists.txt | 26 ++++++++++++++++++++++++++
- 1 file changed, 26 insertions(+)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index a5cf4ee..e5c3827 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -125,6 +125,32 @@ if(BUILD_FILE_REORG_BACKWARD_COMPATIBILITY)
- )
- endif()
-
-+#
-+# Seperate linking jobs from compiling
-+# Too many concurrent linking jobs can break the build
-+# Copied from LLVM
-+set(ROCSOLVER_PARALLEL_LINK_JOBS "" CACHE STRING
-+ "Define the maximum number of concurrent link jobs (Ninja only).")
-+if(CMAKE_GENERATOR MATCHES "Ninja")
-+ if(ROCSOLVER_PARALLEL_LINK_JOBS)
-+ set_property(GLOBAL APPEND PROPERTY JOB_POOLS link_job_pool=${ROCSOLVER_PARALLEL_LINK_JOBS})
-+ set(CMAKE_JOB_POOL_LINK link_job_pool)
-+ endif()
-+elseif(ROCSOLVER_PARALLEL_LINK_JOBS)
-+ message(WARNING "Job pooling is only available with Ninja generators.")
-+endif()
-+# Similar for compiling
-+set(ROCSOLVER_PARALLEL_COMPILE_JOBS "" CACHE STRING
-+ "Define the maximum number of concurrent compile jobs (Ninja only).")
-+if(CMAKE_GENERATOR MATCHES "Ninja")
-+ if(ROCSOLVER_PARALLEL_COMPILE_JOBS)
-+ set_property(GLOBAL APPEND PROPERTY JOB_POOLS compile_job_pool=${ROCSOLVER_PARALLEL_COMPILE_JOBS})
-+ set(CMAKE_JOB_POOL_COMPILE compile_job_pool)
-+ endif()
-+elseif(ROCSOLVER_PARALLEL_COMPILE_JOBS)
-+ message(WARNING "Job pooling is only available with Ninja generators.")
-+endif()
-+
-
- message(STATUS "Tests: ${BUILD_CLIENTS_TESTS}")
- message(STATUS "Benchmarks: ${BUILD_CLIENTS_BENCHMARKS}")
---
-2.42.1
-
diff --git a/0001-rocsolver-offload-compress.patch b/0001-rocsolver-offload-compress.patch
deleted file mode 100644
index c605966..0000000
--- a/0001-rocsolver-offload-compress.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From 14a964a12049d33020c2f34266cb2c1108ea34b9 Mon Sep 17 00:00:00 2001
-From: Tom Rix <Tom.Rix@amd.com>
-Date: Mon, 14 Apr 2025 16:46:30 -0700
-Subject: [PATCH] rocsolver offload compress
-
----
- CMakeLists.txt | 1 +
- library/src/CMakeLists.txt | 4 ++++
- 2 files changed, 5 insertions(+)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 4675f33..905ba4c 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -57,6 +57,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
- option(ROCSOLVER_EMBED_FMT "Hide libfmt symbols" ON)
- option(OPTIMAL "Build specialized kernels for small matrix sizes" ON)
- option(ROCSOLVER_FIND_PACKAGE_LAPACK_CONFIG "Skip module mode search for LAPACK" ON)
-+option( BUILD_OFFLOAD_COMPRESS "Build with offload compress?" OFF )
- option(ROCSOLVER_USE_INTERNAL_BLAS "Use internal implementation of GEMM and TRSM for debugging." OFF)
- option(ROCSOLVER_USE_REFERENCE_SECULAR_EQUATIONS_SOLVER "Use LAPACK like implementation of secular equations solver" ON)
-
-diff --git a/library/src/CMakeLists.txt b/library/src/CMakeLists.txt
-index 8e383d5..50cb001 100755
---- a/library/src/CMakeLists.txt
-+++ b/library/src/CMakeLists.txt
-@@ -418,6 +418,10 @@ if(BUILD_OFFLOAD_COMPRESS)
- target_compile_options(rocsolver PRIVATE "--offload-compress")
- endif()
-
-+if ( BUILD_OFFLOAD_COMPRESS )
-+ target_compile_options( rocsolver PRIVATE --offload-compress )
-+endif ()
-+
- target_include_directories(rocsolver
- PUBLIC
- $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/library/include>
---
-2.50.1
-
diff --git a/rocsolver.spec b/rocsolver.spec
index 7e3b52f..156e472 100644
--- a/rocsolver.spec
+++ b/rocsolver.spec
@@ -136,7 +136,6 @@ Source0: %{url}/releases/download/%{pkg_src}/%{upstreamname}.tar.gz#/%{up
# https://github.com/ROCm/rocSOLVER/pull/652
Patch0: 0001-rocsolver-ninja-job-pools.patch
-# Patch1: 0001-rocsolver-offload-compress.patch
# https://github.com/ROCm/rocSOLVER/pull/962
Patch2: 0001-rocsolver-parallel-jobs.patch
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-12 17:20 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-12 17:20 [rpms/rocsolver] epel10: Remove unused patches Tom Rix
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox