Skip to content

Commit

Permalink
revert change
Browse files Browse the repository at this point in the history
  • Loading branch information
czoido committed Sep 3, 2024
1 parent a1e0bd2 commit ff498c5
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions recipes/cutlass/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,16 +94,12 @@ def package(self):
copy(self, "LICENSE.txt", self.source_folder, os.path.join(self.package_folder, "licenses"))
cmake = CMake(self)
cmake.install()
# https://github.com/microsoft/onnxruntime/blame/bad00a36579eefc64bbf1926d2c403928a518b37/cmake/onnxruntime_providers_cuda.cmake#L225
copy(self, "*.h", os.path.join(self.source_folder, "examples"), os.path.join(self.package_folder, "examples"))
copy(self, "*.h", os.path.join(self.source_folder, "tools", "util", "include"), os.path.join(self.package_folder, "tools", "util", "include"))
rmdir(self, os.path.join(self.package_folder, "lib"))
rmdir(self, os.path.join(self.package_folder, "test"))


def package_info(self):
self.cpp_info.set_property("cmake_file_name", "NvidiaCutlass")
self.cpp_info.set_property("cmake_target_name", "nvidia::cutlass::cutlass")
self.cpp_info.includedirs.extend([os.path.join("tools", "util", "include"), "examples"])
self.cpp_info.bindirs = []
self.cpp_info.libdirs = []

0 comments on commit ff498c5

Please sign in to comment.