-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update cuvs to match raft's cutlass changes (#516)
Due to the tight integration between cuvs and raft, we need to ensure that cuvs is updated for rapidsai/raft#2503 or builds of cuvs that rely on cloning raft will get an incompatible version of cutlass due to raft's update. Authors: - Vyas Ramasubramani (https://github.com/vyasr) Approvers: - Kyle Edwards (https://github.com/KyleFromNVIDIA) - Ben Frederickson (https://github.com/benfred) URL: #516
- Loading branch information
Showing
4 changed files
with
64 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
From e0a9597946257a01ae8444200f836ee51d5597ba Mon Sep 17 00:00:00 2001 | ||
From: Kyle Edwards <[email protected]> | ||
Date: Wed, 20 Nov 2024 16:37:38 -0500 | ||
Subject: [PATCH] Remove erroneous include directories | ||
|
||
These directories are left over from when CuTe was a separate | ||
CMake project. Remove them. | ||
--- | ||
CMakeLists.txt | 2 -- | ||
1 file changed, 2 deletions(-) | ||
|
||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index 7419bdf5e..545384d82 100755 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -665,8 +665,6 @@ target_include_directories( | ||
$<INSTALL_INTERFACE:include> | ||
$<BUILD_INTERFACE:${CUTLASS_INCLUDE_DIR}> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}/include> | ||
- $<BUILD_INTERFACE:${cute_SOURCE_DIR}/include> | ||
- $<BUILD_INTERFACE:${cute_SOURCE_DIR}/examples> | ||
) | ||
|
||
# Mark CTK headers as system to supress warnings from them | ||
-- | ||
2.34.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"packages" : { | ||
"cutlass" : { | ||
"version": "3.5.1", | ||
"git_url": "https://github.com/NVIDIA/cutlass.git", | ||
"git_tag": "v${version}", | ||
"patches" : [ | ||
{ | ||
"file" : "${current_json_dir}/cutlass/build-export.patch", | ||
"issue" : "Fix build directory export", | ||
"fixed_in" : "" | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters