Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cutlass: new recipe #24862

Merged
merged 5 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions recipes/cutlass/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
sources:
"3.5.0":
url: "https://github.com/NVIDIA/cutlass/archive/refs/tags/v3.5.0.tar.gz"
sha256: "ef6af8526e3ad04f9827f35ee57eec555d09447f70a0ad0cf684a2e426ccbcb6"
105 changes: 105 additions & 0 deletions recipes/cutlass/all/conanfile.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
import os

from conan import ConanFile
from conan.errors import ConanInvalidConfiguration
from conan.tools.build import check_min_cppstd
from conan.tools.cmake import CMake, CMakeToolchain, cmake_layout
from conan.tools.env import VirtualBuildEnv
from conan.tools.files import copy, get, rmdir, replace_in_file
from conan.tools.scm import Version

required_conan_version = ">=1.52.0"


class CutlassConan(ConanFile):
name = "cutlass"
description = "CUTLASS: CUDA Templates for Linear Algebra Subroutines"
license = "BSD-3-Clause"
url = "https://github.com/conan-io/conan-center-index"
homepage = "https://github.com/project/package"
topics = ("linear-algebra", "gpu", "cuda", "deep-learning", "nvidia", "header-only")

package_type = "header-library"
settings = "os", "arch", "compiler", "build_type"
# TODO: add header_only=False option

@property
def _min_cppstd(self):
return 17

@property
def _compilers_minimum_version(self):
return {
"gcc": "7",
"clang": "7",
"apple-clang": "7",
"msvc": "192",
"Visual Studio": "16",
}

def layout(self):
cmake_layout(self, src_folder="src")

def package_id(self):
self.info.clear()

def validate(self):
if self.settings.compiler.get_safe("cppstd"):
check_min_cppstd(self, self._min_cppstd)
minimum_version = self._compilers_minimum_version.get(str(self.settings.compiler), False)
if minimum_version and Version(self.settings.compiler.version) < minimum_version:
raise ConanInvalidConfiguration(
f"{self.ref} requires C++{self._min_cppstd}, which your compiler does not support."
)

def build_requirements(self):
self.tool_requires("cmake/[>=3.19 <4]")

def source(self):
get(self, **self.conan_data["sources"][self.version], strip_root=True)

def generate(self):
# Install via CMake to ensure headers are configured correctly
tc = CMakeToolchain(self)
tc.cache_variables["CMAKE_SUPPRESS_REGENERATION"] = True
tc.cache_variables["CUTLASS_REVISION"]=f"v{self.version}"
tc.cache_variables["CUTLASS_NATIVE_CUDA"] = False
tc.cache_variables["CUTLASS_ENABLE_HEADERS_ONLY"] = True
tc.cache_variables["CUTLASS_ENABLE_TOOLS"] = False
tc.cache_variables["CUTLASS_ENABLE_LIBRARY"] = False
tc.cache_variables["CUTLASS_ENABLE_PROFILER"] = False
tc.cache_variables["CUTLASS_ENABLE_PERFORMANCE"] = False
tc.cache_variables["CUTLASS_ENABLE_TESTS"] = False
tc.cache_variables["CUTLASS_ENABLE_GTEST_UNIT_TESTS"] = False
tc.cache_variables["CUTLASS_ENABLE_CUBLAS"] = False
tc.cache_variables["CUTLASS_ENABLE_CUDNN"] = False
tc.generate()
VirtualBuildEnv(self).generate()

def _patch_sources(self):
# Don't look for CUDA, we're only installing the headers
replace_in_file(self, os.path.join(self.source_folder, "CMakeLists.txt"), "include(${CMAKE_CURRENT_SOURCE_DIR}/CUDA.cmake)",
"""
if(NOT CUTLASS_ENABLE_HEADERS_ONLY)
include(${CMAKE_CURRENT_SOURCE_DIR}/CUDA.cmake)
endif()""")

def build(self):
self._patch_sources()
cmake = CMake(self)
cmake.configure()
cmake.build()

def package(self):
copy(self, "LICENSE.txt", self.source_folder, os.path.join(self.package_folder, "licenses"))
cmake = CMake(self)
cmake.install()
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.bindirs = []
self.cpp_info.libdirs = []
8 changes: 8 additions & 0 deletions recipes/cutlass/all/test_package/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 3.15)
project(test_package LANGUAGES CXX)

find_package(NvidiaCutlass REQUIRED CONFIG)

add_executable(${PROJECT_NAME} test_package.cpp)
target_link_libraries(${PROJECT_NAME} PRIVATE nvidia::cutlass::cutlass)
target_compile_features(${PROJECT_NAME} PRIVATE cxx_std_17)
26 changes: 26 additions & 0 deletions recipes/cutlass/all/test_package/conanfile.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
from conan import ConanFile
from conan.tools.build import can_run
from conan.tools.cmake import cmake_layout, CMake
import os


class TestPackageConan(ConanFile):
settings = "os", "arch", "compiler", "build_type"
generators = "CMakeDeps", "CMakeToolchain", "VirtualRunEnv"
test_type = "explicit"

def layout(self):
cmake_layout(self)

def requirements(self):
self.requires(self.tested_reference_str)

def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()

def test(self):
if can_run(self):
bin_path = os.path.join(self.cpp.build.bindir, "test_package")
self.run(bin_path, env="conanrun")
10 changes: 10 additions & 0 deletions recipes/cutlass/all/test_package/test_package.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#include <cutlass/version.h>

#include <iostream>

int main() {
std::cout << "CUTLASS version: " <<
cutlass::getVersionMajor() << "." <<
cutlass::getVersionMinor() << "." <<
cutlass::getVersionPatch() << std::endl;
}
3 changes: 3 additions & 0 deletions recipes/cutlass/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
versions:
"3.5.0":
folder: all
Loading