public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Tom Rix <Tom.Rix@amd.com>
To: git-commits@fedoraproject.org
Subject: [rpms/rocsolver] epel10: Remove unused patches
Date: Fri, 12 Jun 2026 17:20:52 GMT	[thread overview]
Message-ID: <178128485278.1.898934055201716267.rpms-rocsolver-430693952939@fedoraproject.org> (raw)

            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
 

                 reply	other threads:[~2026-06-12 17:20 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178128485278.1.898934055201716267.rpms-rocsolver-430693952939@fedoraproject.org \
    --to=tom.rix@amd.com \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox