summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSreenivasa Murthy Kolam <67086238+srekolam@users.noreply.github.com>2021-08-13 01:23:09 -0700
committerGitHub <noreply@github.com>2021-08-13 10:23:09 +0200
commit06eda406ccaf4937ea875d8f18fe228b443e6a8c (patch)
tree9c198c14181f77e02c27778ee51dd55d1700d917
parent4784ec67b27c5b9b5d903dcb61e5be8f3f124de2 (diff)
downloadspack-06eda406ccaf4937ea875d8f18fe228b443e6a8c.tar.gz
spack-06eda406ccaf4937ea875d8f18fe228b443e6a8c.tar.bz2
spack-06eda406ccaf4937ea875d8f18fe228b443e6a8c.tar.xz
spack-06eda406ccaf4937ea875d8f18fe228b443e6a8c.zip
append CMAKE_MODULE_PATH to include hip for rocalution (#25407)
-rw-r--r--var/spack/repos/builtin/packages/rocalution/0001-fix-hip-build-error.patch926
-rw-r--r--var/spack/repos/builtin/packages/rocalution/package.py3
2 files changed, 1 insertions, 928 deletions
diff --git a/var/spack/repos/builtin/packages/rocalution/0001-fix-hip-build-error.patch b/var/spack/repos/builtin/packages/rocalution/0001-fix-hip-build-error.patch
deleted file mode 100644
index 9be3e0895d..0000000000
--- a/var/spack/repos/builtin/packages/rocalution/0001-fix-hip-build-error.patch
+++ /dev/null
@@ -1,926 +0,0 @@
-From 91a08e1a412e60a718641b1a43cd88da23ff2d49 Mon Sep 17 00:00:00 2001
-From: sreenivasaMurthy Kolam <sreenivasamurthy.kolam@amd.com>
-Date: Tue, 18 Aug 2020 12:27:32 -0700
-Subject: [PATCH] fix spack error
-
----
- cmake/FindHIP.cmake | 659 +++++++++++++++++++++++++++++
- cmake/FindHIP/run_hipcc.cmake | 182 ++++++++
- cmake/FindHIP/run_make2cmake.cmake | 50 +++
- 3 files changed, 891 insertions(+)
- create mode 100644 cmake/FindHIP.cmake
- create mode 100644 cmake/FindHIP/run_hipcc.cmake
- create mode 100644 cmake/FindHIP/run_make2cmake.cmake
-
-diff --git a/cmake/FindHIP.cmake b/cmake/FindHIP.cmake
-new file mode 100644
-index 0000000..498b5e4
---- /dev/null
-+++ b/cmake/FindHIP.cmake
-@@ -0,0 +1,659 @@
-+###############################################################################
-+# FindHIP.cmake
-+###############################################################################
-+include(CheckCXXCompilerFlag)
-+###############################################################################
-+# SET: Variable defaults
-+###############################################################################
-+# User defined flags
-+set(HIP_HIPCC_FLAGS "" CACHE STRING "Semicolon delimited flags for HIPCC")
-+set(HIP_HCC_FLAGS "" CACHE STRING "Semicolon delimited flags for HCC")
-+set(HIP_CLANG_FLAGS "" CACHE STRING "Semicolon delimited flags for CLANG")
-+set(HIP_NVCC_FLAGS "" CACHE STRING "Semicolon delimted flags for NVCC")
-+mark_as_advanced(HIP_HIPCC_FLAGS HIP_HCC_FLAGS HIP_CLANG_FLAGS HIP_NVCC_FLAGS)
-+set(_hip_configuration_types ${CMAKE_CONFIGURATION_TYPES} ${CMAKE_BUILD_TYPE} Debug MinSizeRel Release RelWithDebInfo)
-+list(REMOVE_DUPLICATES _hip_configuration_types)
-+foreach(config ${_hip_configuration_types})
-+ string(TOUPPER ${config} config_upper)
-+ set(HIP_HIPCC_FLAGS_${config_upper} "" CACHE STRING "Semicolon delimited flags for HIPCC")
-+ set(HIP_HCC_FLAGS_${config_upper} "" CACHE STRING "Semicolon delimited flags for HCC")
-+ set(HIP_CLANG_FLAGS_${config_upper} "" CACHE STRING "Semicolon delimited flags for CLANG")
-+ set(HIP_NVCC_FLAGS_${config_upper} "" CACHE STRING "Semicolon delimited flags for NVCC")
-+ mark_as_advanced(HIP_HIPCC_FLAGS_${config_upper} HIP_HCC_FLAGS_${config_upper} HIP_CLANG_FLAGS_${config_upper} HIP_NVCC_FLAGS_${config_upper})
-+endforeach()
-+option(HIP_HOST_COMPILATION_CPP "Host code compilation mode" ON)
-+option(HIP_VERBOSE_BUILD "Print out the commands run while compiling the HIP source file. With the Makefile generator this defaults to VERBOSE variable specified on the command line, but can be forced on with this option." OFF)
-+mark_as_advanced(HIP_HOST_COMPILATION_CPP)
-+
-+###############################################################################
-+# FIND: HIP and associated helper binaries
-+###############################################################################
-+
-+get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_DIR}/../" REALPATH)
-+
-+# HIP is supported on Linux only
-+if(UNIX AND NOT APPLE AND NOT CYGWIN)
-+ # Search for HIP installation
-+ if(NOT HIP_ROOT_DIR)
-+ # Search in user specified path first
-+ find_path(
-+ HIP_ROOT_DIR
-+ NAMES bin/hipconfig
-+ PATHS
-+ "$ENV{ROCM_PATH}/hip"
-+ ENV HIP_PATH
-+ ${_IMPORT_PREFIX}
-+ /opt/rocm/hip
-+ DOC "HIP installed location"
-+ NO_DEFAULT_PATH
-+ )
-+ if(NOT EXISTS ${HIP_ROOT_DIR})
-+ if(HIP_FIND_REQUIRED)
-+ message(FATAL_ERROR "Specify HIP_ROOT_DIR")
-+ elseif(NOT HIP_FIND_QUIETLY)
-+ message("HIP_ROOT_DIR not found or specified")
-+ endif()
-+ endif()
-+ # And push it back to the cache
-+ set(HIP_ROOT_DIR ${HIP_ROOT_DIR} CACHE PATH "HIP installed location" FORCE)
-+ endif()
-+
-+ # Find HIPCC executable
-+ find_program(
-+ HIP_HIPCC_EXECUTABLE
-+ NAMES hipcc
-+ PATHS
-+ "${HIP_ROOT_DIR}"
-+ ENV ROCM_PATH
-+ ENV HIP_PATH
-+ /opt/rocm
-+ /opt/rocm/hip
-+ PATH_SUFFIXES bin
-+ NO_DEFAULT_PATH
-+ )
-+ if(NOT HIP_HIPCC_EXECUTABLE)
-+ # Now search in default paths
-+ find_program(HIP_HIPCC_EXECUTABLE hipcc)
-+ endif()
-+ mark_as_advanced(HIP_HIPCC_EXECUTABLE)
-+
-+ # Find HIPCONFIG executable
-+ find_program(
-+ HIP_HIPCONFIG_EXECUTABLE
-+ NAMES hipconfig
-+ PATHS
-+ "${HIP_ROOT_DIR}"
-+ ENV ROCM_PATH
-+ ENV HIP_PATH
-+ /opt/rocm
-+ /opt/rocm/hip
-+ PATH_SUFFIXES bin
-+ NO_DEFAULT_PATH
-+ )
-+ if(NOT HIP_HIPCONFIG_EXECUTABLE)
-+ # Now search in default paths
-+ find_program(HIP_HIPCONFIG_EXECUTABLE hipconfig)
-+ endif()
-+ mark_as_advanced(HIP_HIPCONFIG_EXECUTABLE)
-+
-+ # Find HIPCC_CMAKE_LINKER_HELPER executable
-+ find_program(
-+ HIP_HIPCC_CMAKE_LINKER_HELPER
-+ NAMES hipcc_cmake_linker_helper
-+ PATHS
-+ "${HIP_ROOT_DIR}"
-+ ENV ROCM_PATH
-+ ENV HIP_PATH
-+ /opt/rocm
-+ /opt/rocm/hip
-+ PATH_SUFFIXES bin
-+ NO_DEFAULT_PATH
-+ )
-+ if(NOT HIP_HIPCC_CMAKE_LINKER_HELPER)
-+ # Now search in default paths
-+ find_program(HIP_HIPCC_CMAKE_LINKER_HELPER hipcc_cmake_linker_helper)
-+ endif()
-+ mark_as_advanced(HIP_HIPCC_CMAKE_LINKER_HELPER)
-+
-+ if(HIP_HIPCONFIG_EXECUTABLE AND NOT HIP_VERSION)
-+ # Compute the version
-+ execute_process(
-+ COMMAND ${HIP_HIPCONFIG_EXECUTABLE} --version
-+ OUTPUT_VARIABLE _hip_version
-+ ERROR_VARIABLE _hip_error
-+ OUTPUT_STRIP_TRAILING_WHITESPACE
-+ ERROR_STRIP_TRAILING_WHITESPACE
-+ )
-+ if(NOT _hip_error)
-+ set(HIP_VERSION ${_hip_version} CACHE STRING "Version of HIP as computed from hipcc")
-+ else()
-+ set(HIP_VERSION "0.0.0" CACHE STRING "Version of HIP as computed by FindHIP()")
-+ endif()
-+ mark_as_advanced(HIP_VERSION)
-+ endif()
-+ if(HIP_VERSION)
-+ string(REPLACE "." ";" _hip_version_list "${HIP_VERSION}")
-+ list(GET _hip_version_list 0 HIP_VERSION_MAJOR)
-+ list(GET _hip_version_list 1 HIP_VERSION_MINOR)
-+ list(GET _hip_version_list 2 HIP_VERSION_PATCH)
-+ set(HIP_VERSION_STRING "${HIP_VERSION}")
-+ endif()
-+
-+ if(HIP_HIPCONFIG_EXECUTABLE AND NOT HIP_PLATFORM)
-+ # Compute the platform
-+ execute_process(
-+ COMMAND ${HIP_HIPCONFIG_EXECUTABLE} --platform
-+ OUTPUT_VARIABLE _hip_platform
-+ OUTPUT_STRIP_TRAILING_WHITESPACE
-+ )
-+ set(HIP_PLATFORM ${_hip_platform} CACHE STRING "HIP platform as computed by hipconfig")
-+ mark_as_advanced(HIP_PLATFORM)
-+ endif()
-+
-+ if(HIP_HIPCONFIG_EXECUTABLE AND NOT HIP_COMPILER)
-+ # Compute the compiler
-+ execute_process(
-+ COMMAND ${HIP_HIPCONFIG_EXECUTABLE} --compiler
-+ OUTPUT_VARIABLE _hip_compiler
-+ OUTPUT_STRIP_TRAILING_WHITESPACE
-+ )
-+ set(HIP_COMPILER ${_hip_compiler} CACHE STRING "HIP compiler as computed by hipconfig")
-+ mark_as_advanced(HIP_COMPILER)
-+ endif()
-+
-+ if(HIP_HIPCONFIG_EXECUTABLE AND NOT HIP_RUNTIME)
-+ # Compute the runtime
-+ execute_process(
-+ COMMAND ${HIP_HIPCONFIG_EXECUTABLE} --runtime
-+ OUTPUT_VARIABLE _hip_runtime
-+ OUTPUT_STRIP_TRAILING_WHITESPACE
-+ )
-+ set(HIP_RUNTIME ${_hip_runtime} CACHE STRING "HIP runtime as computed by hipconfig")
-+ mark_as_advanced(HIP_RUNTIME)
-+ endif()
-+endif()
-+
-+include(FindPackageHandleStandardArgs)
-+find_package_handle_standard_args(
-+ HIP
-+ REQUIRED_VARS
-+ HIP_ROOT_DIR
-+ HIP_HIPCC_EXECUTABLE
-+ HIP_HIPCONFIG_EXECUTABLE
-+ HIP_PLATFORM
-+ HIP_COMPILER
-+ HIP_RUNTIME
-+ VERSION_VAR HIP_VERSION
-+ )
-+
-+###############################################################################
-+# Set HIP CMAKE Flags
-+###############################################################################
-+# Copy the invocation styles from CXX to HIP
-+set(CMAKE_HIP_ARCHIVE_CREATE ${CMAKE_CXX_ARCHIVE_CREATE})
-+set(CMAKE_HIP_ARCHIVE_APPEND ${CMAKE_CXX_ARCHIVE_APPEND})
-+set(CMAKE_HIP_ARCHIVE_FINISH ${CMAKE_CXX_ARCHIVE_FINISH})
-+set(CMAKE_SHARED_LIBRARY_SONAME_HIP_FLAG ${CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG})
-+set(CMAKE_SHARED_LIBRARY_CREATE_HIP_FLAGS ${CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS})
-+set(CMAKE_SHARED_LIBRARY_HIP_FLAGS ${CMAKE_SHARED_LIBRARY_CXX_FLAGS})
-+#set(CMAKE_SHARED_LIBRARY_LINK_HIP_FLAGS ${CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS})
-+set(CMAKE_SHARED_LIBRARY_RUNTIME_HIP_FLAG ${CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG})
-+set(CMAKE_SHARED_LIBRARY_RUNTIME_HIP_FLAG_SEP ${CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG_SEP})
-+set(CMAKE_SHARED_LIBRARY_LINK_STATIC_HIP_FLAGS ${CMAKE_SHARED_LIBRARY_LINK_STATIC_CXX_FLAGS})
-+set(CMAKE_SHARED_LIBRARY_LINK_DYNAMIC_HIP_FLAGS ${CMAKE_SHARED_LIBRARY_LINK_DYNAMIC_CXX_FLAGS})
-+
-+set(HIP_CLANG_PARALLEL_BUILD_COMPILE_OPTIONS "")
-+set(HIP_CLANG_PARALLEL_BUILD_LINK_OPTIONS "")
-+
-+if("${HIP_COMPILER}" STREQUAL "hcc")
-+ # Set the CMake Flags to use the HCC Compiler.
-+ set(CMAKE_HIP_CREATE_SHARED_LIBRARY "${HIP_HIPCC_CMAKE_LINKER_HELPER} ${HCC_HOME} <CMAKE_SHARED_LIBRARY_CXX_FLAGS> <LANGUAGE_COMPILE_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <OBJECTS> <LINK_LIBRARIES>")
-+ set(CMAKE_HIP_CREATE_SHARED_MODULE "${HIP_HIPCC_CMAKE_LINKER_HELPER} ${HCC_HOME} <CMAKE_CXX_LINK_FLAGS> <LINK_FLAGS> <OBJECTS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <LINK_LIBRARIES> -shared" )
-+ set(CMAKE_HIP_LINK_EXECUTABLE "${HIP_HIPCC_CMAKE_LINKER_HELPER} ${HCC_HOME} <FLAGS> <CMAKE_CXX_LINK_FLAGS> <LINK_FLAGS> <OBJECTS> -o <TARGET> <LINK_LIBRARIES>")
-+elseif("${HIP_COMPILER}" STREQUAL "clang")
-+ #Number of parallel jobs by default is 1
-+ if(NOT DEFINED HIP_CLANG_NUM_PARALLEL_JOBS)
-+ set(HIP_CLANG_NUM_PARALLEL_JOBS 1)
-+ endif()
-+ #Add support for parallel build and link
-+ if(${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang")
-+ check_cxx_compiler_flag("-parallel-jobs=1" HIP_CLANG_SUPPORTS_PARALLEL_JOBS)
-+ endif()
-+ if(HIP_CLANG_NUM_PARALLEL_JOBS GREATER 1)
-+ if(${HIP_CLANG_SUPPORTS_PARALLEL_JOBS})
-+ set(HIP_CLANG_PARALLEL_BUILD_COMPILE_OPTIONS "-parallel-jobs=${HIP_CLANG_NUM_PARALLEL_JOBS} -Wno-format-nonliteral")
-+ set(HIP_CLANG_PARALLEL_BUILD_LINK_OPTIONS "-parallel-jobs=${HIP_CLANG_NUM_PARALLEL_JOBS}")
-+ else()
-+ message("clang compiler doesn't support parallel jobs")
-+ endif()
-+ endif()
-+
-+ # Set the CMake Flags to use the HIP-Clang Compiler.
-+ set(CMAKE_HIP_CREATE_SHARED_LIBRARY "${HIP_HIPCC_CMAKE_LINKER_HELPER} ${HIP_CLANG_PATH} ${HIP_CLANG_PARALLEL_BUILD_LINK_OPTIONS} <CMAKE_SHARED_LIBRARY_CXX_FLAGS> <LANGUAGE_COMPILE_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <OBJECTS> <LINK_LIBRARIES>")
-+ set(CMAKE_HIP_CREATE_SHARED_MODULE "${HIP_HIPCC_CMAKE_LINKER_HELPER} ${HIP_CLANG_PATH} ${HIP_CLANG_PARALLEL_BUILD_LINK_OPTIONS} <CMAKE_CXX_LINK_FLAGS> <LINK_FLAGS> <OBJECTS> <SONAME_FLAG><TARGET_SONAME> -o <TARGET> <LINK_LIBRARIES> -shared" )
-+ set(CMAKE_HIP_LINK_EXECUTABLE "${HIP_HIPCC_CMAKE_LINKER_HELPER} ${HIP_CLANG_PATH} ${HIP_CLANG_PARALLEL_BUILD_LINK_OPTIONS} <FLAGS> <CMAKE_CXX_LINK_FLAGS> <LINK_FLAGS> <OBJECTS> -o <TARGET> <LINK_LIBRARIES>")
-+endif()
-+
-+###############################################################################
-+# MACRO: Locate helper files
-+###############################################################################
-+macro(HIP_FIND_HELPER_FILE _name _extension)
-+ set(_hip_full_name "${_name}.${_extension}")
-+ get_filename_component(CMAKE_CURRENT_LIST_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
-+ set(HIP_${_name} "${CMAKE_CURRENT_LIST_DIR}/FindHIP/${_hip_full_name}")
-+ if(NOT EXISTS "${HIP_${_name}}")
-+ set(error_message "${_hip_full_name} not found in ${CMAKE_CURRENT_LIST_DIR}/FindHIP")
-+ if(HIP_FIND_REQUIRED)
-+ message(FATAL_ERROR "${error_message}")
-+ else()
-+ if(NOT HIP_FIND_QUIETLY)
-+ message(STATUS "${error_message}")
-+ endif()
-+ endif()
-+ endif()
-+ # Set this variable as internal, so the user isn't bugged with it.
-+ set(HIP_${_name} ${HIP_${_name}} CACHE INTERNAL "Location of ${_full_name}" FORCE)
-+endmacro()
-+
-+###############################################################################
-+hip_find_helper_file(run_make2cmake cmake)
-+hip_find_helper_file(run_hipcc cmake)
-+###############################################################################
-+
-+###############################################################################
-+# MACRO: Reset compiler flags
-+###############################################################################
-+macro(HIP_RESET_FLAGS)
-+ unset(HIP_HIPCC_FLAGS)
-+ unset(HIP_HCC_FLAGS)
-+ unset(HIP_CLANG_FLAGS)
-+ unset(HIP_NVCC_FLAGS)
-+ foreach(config ${_hip_configuration_types})
-+ string(TOUPPER ${config} config_upper)
-+ unset(HIP_HIPCC_FLAGS_${config_upper})
-+ unset(HIP_HCC_FLAGS_${config_upper})
-+ unset(HIP_CLANG_FLAGS_${config_upper})
-+ unset(HIP_NVCC_FLAGS_${config_upper})
-+ endforeach()
-+endmacro()
-+
-+###############################################################################
-+# MACRO: Separate the options from the sources
-+###############################################################################
-+macro(HIP_GET_SOURCES_AND_OPTIONS _sources _cmake_options _hipcc_options _hcc_options _clang_options _nvcc_options)
-+ set(${_sources})
-+ set(${_cmake_options})
-+ set(${_hipcc_options})
-+ set(${_hcc_options})
-+ set(${_clang_options})
-+ set(${_nvcc_options})
-+ set(_hipcc_found_options FALSE)
-+ set(_hcc_found_options FALSE)
-+ set(_clang_found_options FALSE)
-+ set(_nvcc_found_options FALSE)
-+ foreach(arg ${ARGN})
-+ if("x${arg}" STREQUAL "xHIPCC_OPTIONS")
-+ set(_hipcc_found_options TRUE)
-+ set(_hcc_found_options FALSE)
-+ set(_clang_found_options FALSE)
-+ set(_nvcc_found_options FALSE)
-+ elseif("x${arg}" STREQUAL "xHCC_OPTIONS")
-+ set(_hipcc_found_options FALSE)
-+ set(_hcc_found_options TRUE)
-+ set(_clang_found_options FALSE)
-+ set(_nvcc_found_options FALSE)
-+ elseif("x${arg}" STREQUAL "xCLANG_OPTIONS")
-+ set(_hipcc_found_options FALSE)
-+ set(_hcc_found_options FALSE)
-+ set(_clang_found_options TRUE)
-+ set(_nvcc_found_options FALSE)
-+ elseif("x${arg}" STREQUAL "xNVCC_OPTIONS")
-+ set(_hipcc_found_options FALSE)
-+ set(_hcc_found_options FALSE)
-+ set(_clang_found_options FALSE)
-+ set(_nvcc_found_options TRUE)
-+ elseif(
-+ "x${arg}" STREQUAL "xEXCLUDE_FROM_ALL" OR
-+ "x${arg}" STREQUAL "xSTATIC" OR
-+ "x${arg}" STREQUAL "xSHARED" OR
-+ "x${arg}" STREQUAL "xMODULE"
-+ )
-+ list(APPEND ${_cmake_options} ${arg})
-+ else()
-+ if(_hipcc_found_options)
-+ list(APPEND ${_hipcc_options} ${arg})
-+ elseif(_hcc_found_options)
-+ list(APPEND ${_hcc_options} ${arg})
-+ elseif(_clang_found_options)
-+ list(APPEND ${_clang_options} ${arg})
-+ elseif(_nvcc_found_options)
-+ list(APPEND ${_nvcc_options} ${arg})
-+ else()
-+ # Assume this is a file
-+ list(APPEND ${_sources} ${arg})
-+ endif()
-+ endif()
-+ endforeach()
-+endmacro()
-+
-+###############################################################################
-+# MACRO: Add include directories to pass to the hipcc command
-+###############################################################################
-+set(HIP_HIPCC_INCLUDE_ARGS_USER "")
-+macro(HIP_INCLUDE_DIRECTORIES)
-+ foreach(dir ${ARGN})
-+ list(APPEND HIP_HIPCC_INCLUDE_ARGS_USER $<$<BOOL:${dir}>:-I${dir}>)
-+ endforeach()
-+endmacro()
-+
-+###############################################################################
-+# FUNCTION: Helper to avoid clashes of files with the same basename but different paths
-+###############################################################################
-+function(HIP_COMPUTE_BUILD_PATH path build_path)
-+ # Convert to cmake style paths
-+ file(TO_CMAKE_PATH "${path}" bpath)
-+ if(IS_ABSOLUTE "${bpath}")
-+ string(FIND "${bpath}" "${CMAKE_CURRENT_BINARY_DIR}" _binary_dir_pos)
-+ if(_binary_dir_pos EQUAL 0)
-+ file(RELATIVE_PATH bpath "${CMAKE_CURRENT_BINARY_DIR}" "${bpath}")
-+ else()
-+ file(RELATIVE_PATH bpath "${CMAKE_CURRENT_SOURCE_DIR}" "${bpath}")
-+ endif()
-+ endif()
-+
-+ # Remove leading /
-+ string(REGEX REPLACE "^[/]+" "" bpath "${bpath}")
-+ # Avoid absolute paths by removing ':'
-+ string(REPLACE ":" "_" bpath "${bpath}")
-+ # Avoid relative paths that go up the tree
-+ string(REPLACE "../" "__/" bpath "${bpath}")
-+ # Avoid spaces
-+ string(REPLACE " " "_" bpath "${bpath}")
-+ # Strip off the filename
-+ get_filename_component(bpath "${bpath}" PATH)
-+
-+ set(${build_path} "${bpath}" PARENT_SCOPE)
-+endfunction()
-+
-+###############################################################################
-+# MACRO: Parse OPTIONS from ARGN & set variables prefixed by _option_prefix
-+###############################################################################
-+macro(HIP_PARSE_HIPCC_OPTIONS _option_prefix)
-+ set(_hip_found_config)
-+ foreach(arg ${ARGN})
-+ # Determine if we are dealing with a per-configuration flag
-+ foreach(config ${_hip_configuration_types})
-+ string(TOUPPER ${config} config_upper)
-+ if(arg STREQUAL "${config_upper}")
-+ set(_hip_found_config _${arg})
-+ # Clear arg to prevent it from being processed anymore
-+ set(arg)
-+ endif()
-+ endforeach()
-+ if(arg)
-+ list(APPEND ${_option_prefix}${_hip_found_config} "${arg}")
-+ endif()
-+ endforeach()
-+endmacro()
-+
-+###############################################################################
-+# MACRO: Try and include dependency file if it exists
-+###############################################################################
-+macro(HIP_INCLUDE_HIPCC_DEPENDENCIES dependency_file)
-+ set(HIP_HIPCC_DEPEND)
-+ set(HIP_HIPCC_DEPEND_REGENERATE FALSE)
-+
-+ # Create the dependency file if it doesn't exist
-+ if(NOT EXISTS ${dependency_file})
-+ file(WRITE ${dependency_file} "# Generated by: FindHIP.cmake. Do not edit.\n")
-+ endif()
-+ # Include the dependency file
-+ include(${dependency_file})
-+
-+ # Verify the existence of all the included files
-+ if(HIP_HIPCC_DEPEND)
-+ foreach(f ${HIP_HIPCC_DEPEND})
-+ if(NOT EXISTS ${f})
-+ # If they aren't there, regenerate the file again
-+ set(HIP_HIPCC_DEPEND_REGENERATE TRUE)
-+ endif()
-+ endforeach()
-+ else()
-+ # No dependencies, so regenerate the file
-+ set(HIP_HIPCC_DEPEND_REGENERATE TRUE)
-+ endif()
-+
-+ # Regenerate the dependency file if needed
-+ if(HIP_HIPCC_DEPEND_REGENERATE)
-+ set(HIP_HIPCC_DEPEND ${dependency_file})
-+ file(WRITE ${dependency_file} "# Generated by: FindHIP.cmake. Do not edit.\n")
-+ endif()
-+endmacro()
-+
-+###############################################################################
-+# MACRO: Prepare cmake commands for the target
-+###############################################################################
-+macro(HIP_PREPARE_TARGET_COMMANDS _target _format _generated_files _source_files)
-+ set(_hip_flags "")
-+ string(TOUPPER "${CMAKE_BUILD_TYPE}" _hip_build_configuration)
-+ if(HIP_HOST_COMPILATION_CPP)
-+ set(HIP_C_OR_CXX CXX)
-+ else()
-+ set(HIP_C_OR_CXX C)
-+ endif()
-+ set(generated_extension ${CMAKE_${HIP_C_OR_CXX}_OUTPUT_EXTENSION})
-+
-+ # Initialize list of includes with those specified by the user. Append with
-+ # ones specified to cmake directly.
-+ set(HIP_HIPCC_INCLUDE_ARGS ${HIP_HIPCC_INCLUDE_ARGS_USER})
-+
-+ # Add the include directories
-+ set(include_directories_generator "$<TARGET_PROPERTY:${_target},INCLUDE_DIRECTORIES>")
-+ list(APPEND HIP_HIPCC_INCLUDE_ARGS "$<$<BOOL:${include_directories_generator}>:-I$<JOIN:${include_directories_generator}, -I>>")
-+
-+ get_directory_property(_hip_include_directories INCLUDE_DIRECTORIES)
-+ list(REMOVE_DUPLICATES _hip_include_directories)
-+ if(_hip_include_directories)
-+ foreach(dir ${_hip_include_directories})
-+ list(APPEND HIP_HIPCC_INCLUDE_ARGS $<$<BOOL:${dir}>:-I${dir}>)
-+ endforeach()
-+ endif()
-+
-+ HIP_GET_SOURCES_AND_OPTIONS(_hip_sources _hip_cmake_options _hipcc_options _hcc_options _clang_options _nvcc_options ${ARGN})
-+ HIP_PARSE_HIPCC_OPTIONS(HIP_HIPCC_FLAGS ${_hipcc_options})
-+ HIP_PARSE_HIPCC_OPTIONS(HIP_HCC_FLAGS ${_hcc_options})
-+ HIP_PARSE_HIPCC_OPTIONS(HIP_CLANG_FLAGS ${_clang_options})
-+ HIP_PARSE_HIPCC_OPTIONS(HIP_NVCC_FLAGS ${_nvcc_options})
-+
-+ # Add the compile definitions
-+ set(compile_definition_generator "$<TARGET_PROPERTY:${_target},COMPILE_DEFINITIONS>")
-+ list(APPEND HIP_HIPCC_FLAGS "$<$<BOOL:${compile_definition_generator}>:-D$<JOIN:${compile_definition_generator}, -D>>")
-+
-+ # Check if we are building shared library.
-+ set(_hip_build_shared_libs FALSE)
-+ list(FIND _hip_cmake_options SHARED _hip_found_SHARED)
-+ list(FIND _hip_cmake_options MODULE _hip_found_MODULE)
-+ if(_hip_found_SHARED GREATER -1 OR _hip_found_MODULE GREATER -1)
-+ set(_hip_build_shared_libs TRUE)
-+ endif()
-+ list(FIND _hip_cmake_options STATIC _hip_found_STATIC)
-+ if(_hip_found_STATIC GREATER -1)
-+ set(_hip_build_shared_libs FALSE)
-+ endif()
-+
-+ # If we are building a shared library, add extra flags to HIP_HIPCC_FLAGS
-+ if(_hip_build_shared_libs)
-+ list(APPEND HIP_HCC_FLAGS "-fPIC")
-+ list(APPEND HIP_CLANG_FLAGS "-fPIC")
-+ list(APPEND HIP_NVCC_FLAGS "--shared -Xcompiler '-fPIC'")
-+ endif()
-+
-+ # Set host compiler
-+ set(HIP_HOST_COMPILER "${CMAKE_${HIP_C_OR_CXX}_COMPILER}")
-+
-+ # Set compiler flags
-+ set(_HIP_HOST_FLAGS "set(CMAKE_HOST_FLAGS ${CMAKE_${HIP_C_OR_CXX}_FLAGS})")
-+ set(_HIP_HIPCC_FLAGS "set(HIP_HIPCC_FLAGS ${HIP_HIPCC_FLAGS})")
-+ set(_HIP_HCC_FLAGS "set(HIP_HCC_FLAGS ${HIP_HCC_FLAGS})")
-+ set(_HIP_CLANG_FLAGS "set(HIP_CLANG_FLAGS ${HIP_CLANG_FLAGS})")
-+ set(_HIP_NVCC_FLAGS "set(HIP_NVCC_FLAGS ${HIP_NVCC_FLAGS})")
-+ foreach(config ${_hip_configuration_types})
-+ string(TOUPPER ${config} config_upper)
-+ set(_HIP_HOST_FLAGS "${_HIP_HOST_FLAGS}\nset(CMAKE_HOST_FLAGS_${config_upper} ${CMAKE_${HIP_C_OR_CXX}_FLAGS_${config_upper}})")
-+ set(_HIP_HIPCC_FLAGS "${_HIP_HIPCC_FLAGS}\nset(HIP_HIPCC_FLAGS_${config_upper} ${HIP_HIPCC_FLAGS_${config_upper}})")
-+ set(_HIP_HCC_FLAGS "${_HIP_HCC_FLAGS}\nset(HIP_HCC_FLAGS_${config_upper} ${HIP_HCC_FLAGS_${config_upper}})")
-+ set(_HIP_CLANG_FLAGS "${_HIP_CLANG_FLAGS}\nset(HIP_CLANG_FLAGS_${config_upper} ${HIP_CLANG_FLAGS_${config_upper}})")
-+ set(_HIP_NVCC_FLAGS "${_HIP_NVCC_FLAGS}\nset(HIP_NVCC_FLAGS_${config_upper} ${HIP_NVCC_FLAGS_${config_upper}})")
-+ endforeach()
-+
-+ # Reset the output variable
-+ set(_hip_generated_files "")
-+ set(_hip_source_files "")
-+
-+ # Iterate over all arguments and create custom commands for all source files
-+ foreach(file ${ARGN})
-+ # Ignore any file marked as a HEADER_FILE_ONLY
-+ get_source_file_property(_is_header ${file} HEADER_FILE_ONLY)
-+ # Allow per source file overrides of the format. Also allows compiling non .cu files.
-+ get_source_file_property(_hip_source_format ${file} HIP_SOURCE_PROPERTY_FORMAT)
-+ if((${file} MATCHES "\\.cu$" OR _hip_source_format) AND NOT _is_header)
-+ set(host_flag FALSE)
-+ else()
-+ set(host_flag TRUE)
-+ endif()
-+
-+ if(NOT host_flag)
-+ # Determine output directory
-+ HIP_COMPUTE_BUILD_PATH("${file}" hip_build_path)
-+ set(hip_compile_output_dir "${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/${_target}.dir/${hip_build_path}")
-+
-+ get_filename_component(basename ${file} NAME)
-+ set(generated_file_path "${hip_compile_output_dir}/${CMAKE_CFG_INTDIR}")
-+ set(generated_file_basename "${_target}_generated_${basename}${generated_extension}")
-+
-+ # Set file names
-+ set(generated_file "${generated_file_path}/${generated_file_basename}")
-+ set(cmake_dependency_file "${hip_compile_output_dir}/${generated_file_basename}.depend")
-+ set(custom_target_script_pregen "${hip_compile_output_dir}/${generated_file_basename}.cmake.pre-gen")
-+ set(custom_target_script "${hip_compile_output_dir}/${generated_file_basename}.cmake")
-+
-+ # Set properties for object files
-+ set_source_files_properties("${generated_file}"
-+ PROPERTIES
-+ EXTERNAL_OBJECT true # This is an object file not to be compiled, but only be linked
-+ )
-+
-+ # Don't add CMAKE_CURRENT_SOURCE_DIR if the path is already an absolute path
-+ get_filename_component(file_path "${file}" PATH)
-+ if(IS_ABSOLUTE "${file_path}")
-+ set(source_file "${file}")
-+ else()
-+ set(source_file "${CMAKE_CURRENT_SOURCE_DIR}/${file}")
-+ endif()
-+
-+ # Bring in the dependencies
-+ HIP_INCLUDE_HIPCC_DEPENDENCIES(${cmake_dependency_file})
-+
-+ # Configure the build script
-+ configure_file("${HIP_run_hipcc}" "${custom_target_script_pregen}" @ONLY)
-+ file(GENERATE
-+ OUTPUT "${custom_target_script}"
-+ INPUT "${custom_target_script_pregen}"
-+ )
-+ set(main_dep DEPENDS ${source_file})
-+ if(CMAKE_GENERATOR MATCHES "Makefiles")
-+ set(verbose_output "$(VERBOSE)")
-+ elseif(HIP_VERBOSE_BUILD)
-+ set(verbose_output ON)
-+ else()
-+ set(verbose_output OFF)
-+ endif()
-+
-+ # Create up the comment string
-+ file(RELATIVE_PATH generated_file_relative_path "${CMAKE_BINARY_DIR}" "${generated_file}")
-+ set(hip_build_comment_string "Building HIPCC object ${generated_file_relative_path}")
-+
-+ # Build the generated file and dependency file
-+ add_custom_command(
-+ OUTPUT ${generated_file}
-+ # These output files depend on the source_file and the contents of cmake_dependency_file
-+ ${main_dep}
-+ DEPENDS ${HIP_HIPCC_DEPEND}
-+ DEPENDS ${custom_target_script}
-+ # Make sure the output directory exists before trying to write to it.
-+ COMMAND ${CMAKE_COMMAND} -E make_directory "${generated_file_path}"
-+ COMMAND ${CMAKE_COMMAND} ARGS
-+ -D verbose:BOOL=${verbose_output}
-+ -D build_configuration:STRING=${_hip_build_configuration}
-+ -D "generated_file:STRING=${generated_file}"
-+ -P "${custom_target_script}"
-+ WORKING_DIRECTORY "${hip_compile_output_dir}"
-+ COMMENT "${hip_build_comment_string}"
-+ )
-+
-+ # Make sure the build system knows the file is generated
-+ set_source_files_properties(${generated_file} PROPERTIES GENERATED TRUE)
-+ list(APPEND _hip_generated_files ${generated_file})
-+ list(APPEND _hip_source_files ${file})
-+ endif()
-+ endforeach()
-+
-+ # Set the return parameter
-+ set(${_generated_files} ${_hip_generated_files})
-+ set(${_source_files} ${_hip_source_files})
-+endmacro()
-+
-+###############################################################################
-+# HIP_ADD_EXECUTABLE
-+###############################################################################
-+macro(HIP_ADD_EXECUTABLE hip_target)
-+ # Separate the sources from the options
-+ HIP_GET_SOURCES_AND_OPTIONS(_sources _cmake_options _hipcc_options _hcc_options _clang_options _nvcc_options ${ARGN})
-+ HIP_PREPARE_TARGET_COMMANDS(${hip_target} OBJ _generated_files _source_files ${_sources} HIPCC_OPTIONS ${_hipcc_options} HCC_OPTIONS ${_hcc_options} CLANG_OPTIONS ${_clang_options} NVCC_OPTIONS ${_nvcc_options})
-+ if(_source_files)
-+ list(REMOVE_ITEM _sources ${_source_files})
-+ endif()
-+ if("${HIP_COMPILER}" STREQUAL "hcc")
-+ if("x${HCC_HOME}" STREQUAL "x")
-+ if (DEFINED ENV{ROCM_PATH})
-+ set(HCC_HOME "$ENV{ROCM_PATH}/hcc")
-+ elseif(DEFINED ENV{HIP_PATH})
-+ set(HCC_HOME "$ENV{HIP_PATH}/../hcc")
-+ else()
-+ set(HCC_HOME "/opt/rocm/hcc")
-+ endif()
-+ endif()
-+ set(CMAKE_HIP_LINK_EXECUTABLE "${HIP_HIPCC_CMAKE_LINKER_HELPER} ${HCC_HOME} <FLAGS> <CMAKE_CXX_LINK_FLAGS> <LINK_FLAGS> <OBJECTS> -o <TARGET> <LINK_LIBRARIES>")
-+ elseif("${HIP_COMPILER}" STREQUAL "clang")
-+ if("x${HIP_CLANG_PATH}" STREQUAL "x")
-+ if(DEFINED ENV{HIP_CLANG_PATH})
-+ set(HIP_CLANG_PATH $ENV{HIP_CLANG_PATH})
-+ elseif(DEFINED ENV{ROCM_PATH})
-+ set(HIP_CLANG_PATH "$ENV{ROCM_PATH}/llvm/bin")
-+ elseif(DEFINED ENV{HIP_PATH})
-+ set(HIP_CLANG_PATH "$ENV{HIP_PATH}/../llvm/bin")
-+ else()
-+ set(HIP_CLANG_PATH "/opt/rocm/llvm/bin")
-+ endif()
-+ endif()
-+ set(CMAKE_HIP_LINK_EXECUTABLE "${HIP_HIPCC_CMAKE_LINKER_HELPER} ${HIP_CLANG_PATH} ${HIP_CLANG_PARALLEL_BUILD_LINK_OPTIONS} <FLAGS> <CMAKE_CXX_LINK_FLAGS> <LINK_FLAGS> <OBJECTS> -o <TARGET> <LINK_LIBRARIES>")
-+ endif()
-+ add_executable(${hip_target} ${_cmake_options} ${_generated_files} ${_sources})
-+ set_target_properties(${hip_target} PROPERTIES LINKER_LANGUAGE HIP)
-+endmacro()
-+
-+###############################################################################
-+# HIP_ADD_LIBRARY
-+###############################################################################
-+macro(HIP_ADD_LIBRARY hip_target)
-+ # Separate the sources from the options
-+ HIP_GET_SOURCES_AND_OPTIONS(_sources _cmake_options _hipcc_options _hcc_options _clang_options _nvcc_options ${ARGN})
-+ HIP_PREPARE_TARGET_COMMANDS(${hip_target} OBJ _generated_files _source_files ${_sources} ${_cmake_options} HIPCC_OPTIONS ${_hipcc_options} HCC_OPTIONS ${_hcc_options} CLANG_OPTIONS ${_clang_options} NVCC_OPTIONS ${_nvcc_options})
-+ if(_source_files)
-+ list(REMOVE_ITEM _sources ${_source_files})
-+ endif()
-+ add_library(${hip_target} ${_cmake_options} ${_generated_files} ${_sources})
-+ set_target_properties(${hip_target} PROPERTIES LINKER_LANGUAGE ${HIP_C_OR_CXX})
-+endmacro()
-+
-+# vim: ts=4:sw=4:expandtab:smartindent
-diff --git a/cmake/FindHIP/run_hipcc.cmake b/cmake/FindHIP/run_hipcc.cmake
-new file mode 100644
-index 0000000..63c7bb3
---- /dev/null
-+++ b/cmake/FindHIP/run_hipcc.cmake
-@@ -0,0 +1,182 @@
-+###############################################################################
-+# Runs commands using HIPCC
-+###############################################################################
-+
-+###############################################################################
-+# This file runs the hipcc commands to produce the desired output file
-+# along with the dependency file needed by CMake to compute dependencies.
-+#
-+# Input variables:
-+#
-+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
-+# ON : Describe each step
-+# build_configuration:STRING=<> Build configuration. Defaults to Debug.
-+# generated_file:STRING=<> File to generate. Mandatory argument.
-+
-+if(NOT build_configuration)
-+ set(build_configuration Debug)
-+endif()
-+if(NOT generated_file)
-+ message(FATAL_ERROR "You must specify generated_file on the command line")
-+endif()
-+
-+# Set these up as variables to make reading the generated file easier
-+set(HIP_HIPCC_EXECUTABLE "@HIP_HIPCC_EXECUTABLE@") # path
-+set(HIP_HIPCONFIG_EXECUTABLE "@HIP_HIPCONFIG_EXECUTABLE@") #path
-+set(HIP_HOST_COMPILER "@HIP_HOST_COMPILER@") # path
-+set(CMAKE_COMMAND "@CMAKE_COMMAND@") # path
-+set(HIP_run_make2cmake "@HIP_run_make2cmake@") # path
-+set(HCC_HOME "@HCC_HOME@") #path
-+set(HIP_CLANG_PATH "@HIP_CLANG_PATH@") #path
-+set(HIP_CLANG_PARALLEL_BUILD_COMPILE_OPTIONS "@HIP_CLANG_PARALLEL_BUILD_COMPILE_OPTIONS@")
-+
-+@HIP_HOST_FLAGS@
-+@_HIP_HIPCC_FLAGS@
-+@_HIP_HCC_FLAGS@
-+@_HIP_CLANG_FLAGS@
-+@_HIP_NVCC_FLAGS@
-+#Needed to bring the HIP_HIPCC_INCLUDE_ARGS variable in scope
-+set(HIP_HIPCC_INCLUDE_ARGS @HIP_HIPCC_INCLUDE_ARGS@) # list
-+
-+set(cmake_dependency_file "@cmake_dependency_file@") # path
-+set(source_file "@source_file@") # path
-+set(host_flag "@host_flag@") # bool
-+
-+# Determine compiler and compiler flags
-+execute_process(COMMAND ${HIP_HIPCONFIG_EXECUTABLE} --platform OUTPUT_VARIABLE HIP_PLATFORM OUTPUT_STRIP_TRAILING_WHITESPACE)
-+execute_process(COMMAND ${HIP_HIPCONFIG_EXECUTABLE} --compiler OUTPUT_VARIABLE HIP_COMPILER OUTPUT_STRIP_TRAILING_WHITESPACE)
-+execute_process(COMMAND ${HIP_HIPCONFIG_EXECUTABLE} --runtime OUTPUT_VARIABLE HIP_RUNTIME OUTPUT_STRIP_TRAILING_WHITESPACE)
-+if(NOT host_flag)
-+ set(__CC ${HIP_HIPCC_EXECUTABLE})
-+ if("${HIP_PLATFORM}" STREQUAL "hcc")
-+ if("${HIP_COMPILER}" STREQUAL "hcc")
-+ if(NOT "x${HCC_HOME}" STREQUAL "x")
-+ set(ENV{HCC_HOME} ${HCC_HOME})
-+ endif()
-+ set(__CC_FLAGS ${HIP_HIPCC_FLAGS} ${HIP_HCC_FLAGS} ${HIP_HIPCC_FLAGS_${build_configuration}} ${HIP_HCC_FLAGS_${build_configuration}})
-+ elseif("${HIP_COMPILER}" STREQUAL "clang")
-+ if(NOT "x${HIP_CLANG_PATH}" STREQUAL "x")
-+ set(ENV{HIP_CLANG_PATH} ${HIP_CLANG_PATH})
-+ endif()
-+ # Temporarily include HIP_HCC_FLAGS for HIP-Clang for PyTorch builds
-+ set(__CC_FLAGS ${HIP_CLANG_PARALLEL_BUILD_COMPILE_OPTIONS} ${HIP_HIPCC_FLAGS} ${HIP_HCC_FLAGS} ${HIP_CLANG_FLAGS} ${HIP_HIPCC_FLAGS_${build_configuration}} ${HIP_HCC_FLAGS_${build_configuration}} ${HIP_CLANG_FLAGS_${build_configuration}})
-+ endif()
-+ else()
-+ set(__CC_FLAGS ${HIP_HIPCC_FLAGS} ${HIP_NVCC_FLAGS} ${HIP_HIPCC_FLAGS_${build_configuration}} ${HIP_NVCC_FLAGS_${build_configuration}})
-+ endif()
-+else()
-+ set(__CC ${HIP_HOST_COMPILER})
-+ set(__CC_FLAGS ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
-+endif()
-+set(__CC_INCLUDES ${HIP_HIPCC_INCLUDE_ARGS})
-+
-+# hip_execute_process - Executes a command with optional command echo and status message.
-+# status - Status message to print if verbose is true
-+# command - COMMAND argument from the usual execute_process argument structure
-+# ARGN - Remaining arguments are the command with arguments
-+# HIP_result - Return value from running the command
-+macro(hip_execute_process status command)
-+ set(_command ${command})
-+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
-+ message(FATAL_ERROR "Malformed call to hip_execute_process. Missing COMMAND as second argument. (command = ${command})")
-+ endif()
-+ if(verbose)
-+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
-+ # Build command string to print
-+ set(hip_execute_process_string)
-+ foreach(arg ${ARGN})
-+ # Escape quotes if any
-+ string(REPLACE "\"" "\\\"" arg ${arg})
-+ # Surround args with spaces with quotes
-+ if(arg MATCHES " ")
-+ list(APPEND hip_execute_process_string "\"${arg}\"")
-+ else()
-+ list(APPEND hip_execute_process_string ${arg})
-+ endif()
-+ endforeach()
-+ # Echo the command
-+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${hip_execute_process_string})
-+ endif()
-+ # Run the command
-+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE HIP_result)
-+endmacro()
-+
-+# Delete the target file
-+hip_execute_process(
-+ "Removing ${generated_file}"
-+ COMMAND "${CMAKE_COMMAND}" -E remove "${generated_file}"
-+ )
-+
-+# Generate the dependency file
-+hip_execute_process(
-+ "Generating dependency file: ${cmake_dependency_file}.pre"
-+ COMMAND "${__CC}"
-+ -M
-+ "${source_file}"
-+ -o "${cmake_dependency_file}.pre"
-+ ${__CC_FLAGS}
-+ ${__CC_INCLUDES}
-+ )
-+
-+if(HIP_result)
-+ message(FATAL_ERROR "Error generating ${generated_file}")
-+endif()
-+
-+# Generate the cmake readable dependency file to a temp file
-+hip_execute_process(
-+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
-+ COMMAND "${CMAKE_COMMAND}"
-+ -D "input_file:FILEPATH=${cmake_dependency_file}.pre"
-+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
-+ -D "verbose=${verbose}"
-+ -P "${HIP_run_make2cmake}"
-+ )
-+
-+if(HIP_result)
-+ message(FATAL_ERROR "Error generating ${generated_file}")
-+endif()
-+
-+# Copy the file if it is different
-+hip_execute_process(
-+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
-+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
-+ )
-+
-+if(HIP_result)
-+ message(FATAL_ERROR "Error generating ${generated_file}")
-+endif()
-+
-+# Delete the temporary file
-+hip_execute_process(
-+ "Removing ${cmake_dependency_file}.tmp and ${cmake_dependency_file}.pre"
-+ COMMAND "${CMAKE_COMMAND}" -E remove "${cmake_dependency_file}.tmp" "${cmake_dependency_file}.pre"
-+ )
-+
-+if(HIP_result)
-+ message(FATAL_ERROR "Error generating ${generated_file}")
-+endif()
-+
-+# Generate the output file
-+hip_execute_process(
-+ "Generating ${generated_file}"
-+ COMMAND "${__CC}"
-+ -c
-+ "${source_file}"
-+ -o "${generated_file}"
-+ ${__CC_FLAGS}
-+ ${__CC_INCLUDES}
-+ )
-+
-+if(HIP_result)
-+ # Make sure that we delete the output file
-+ hip_execute_process(
-+ "Removing ${generated_file}"
-+ COMMAND "${CMAKE_COMMAND}" -E remove "${generated_file}"
-+ )
-+ message(FATAL_ERROR "Error generating file ${generated_file}")
-+else()
-+ if(verbose)
-+ message("Generated ${generated_file} successfully.")
-+ endif()
-+endif()
-+# vim: ts=4:sw=4:expandtab:smartindent
-diff --git a/cmake/FindHIP/run_make2cmake.cmake b/cmake/FindHIP/run_make2cmake.cmake
-new file mode 100644
-index 0000000..d2e3eb5
---- /dev/null
-+++ b/cmake/FindHIP/run_make2cmake.cmake
-@@ -0,0 +1,50 @@
-+###############################################################################
-+# Computes dependencies using HIPCC
-+###############################################################################
-+
-+###############################################################################
-+# This file converts dependency files generated using hipcc to a format that
-+# cmake can understand.
-+
-+# Input variables:
-+#
-+# input_file:STRING=<> Dependency file to parse. Required argument
-+# output_file:STRING=<> Output file to generate. Required argument
-+
-+if(NOT input_file OR NOT output_file)
-+ message(FATAL_ERROR "You must specify input_file and output_file on the command line")
-+endif()
-+
-+file(READ ${input_file} depend_text)
-+
-+if (NOT "${depend_text}" STREQUAL "")
-+ string(REPLACE " /" "\n/" depend_text ${depend_text})
-+ string(REGEX REPLACE "^.*:" "" depend_text ${depend_text})
-+ string(REGEX REPLACE "[ \\\\]*\n" ";" depend_text ${depend_text})
-+
-+ set(dependency_list "")
-+
-+ foreach(file ${depend_text})
-+ string(REGEX REPLACE "^ +" "" file ${file})
-+ if(NOT EXISTS "${file}")
-+ message(WARNING " Removing non-existent dependency file: ${file}")
-+ set(file "")
-+ endif()
-+
-+ if(NOT IS_DIRECTORY "${file}")
-+ get_filename_component(file_absolute "${file}" ABSOLUTE)
-+ list(APPEND dependency_list "${file_absolute}")
-+ endif()
-+ endforeach()
-+endif()
-+
-+# Remove the duplicate entries and sort them.
-+list(REMOVE_DUPLICATES dependency_list)
-+list(SORT dependency_list)
-+
-+foreach(file ${dependency_list})
-+ set(hip_hipcc_depend "${hip_hipcc_depend} \"${file}\"\n")
-+endforeach()
-+
-+file(WRITE ${output_file} "# Generated by: FindHIP.cmake. Do not edit.\nSET(HIP_HIPCC_DEPEND\n ${hip_hipcc_depend})\n\n")
-+# vim: ts=4:sw=4:expandtab:smartindent
---
-2.22.0
-
diff --git a/var/spack/repos/builtin/packages/rocalution/package.py b/var/spack/repos/builtin/packages/rocalution/package.py
index 48a215d70d..a1936ed572 100644
--- a/var/spack/repos/builtin/packages/rocalution/package.py
+++ b/var/spack/repos/builtin/packages/rocalution/package.py
@@ -45,8 +45,6 @@ class Rocalution(CMakePackage):
for ver in ['3.9.0', '3.10.0', '4.0.0', '4.1.0', '4.2.0', '4.3.0']:
depends_on('rocrand@' + ver, when='@' + ver)
- patch('0001-fix-hip-build-error.patch')
-
def setup_build_environment(self, env):
env.set('CXX', self.spec['hip'].hipcc)
@@ -62,6 +60,7 @@ class Rocalution(CMakePackage):
def cmake_args(self):
args = [
+ self.define('CMAKE_MODULE_PATH', self.spec['hip'].prefix.cmake),
self.define('SUPPORT_HIP', 'ON'),
self.define('SUPPORT_MPI', 'OFF'),
self.define('BUILD_CLIENTS_SAMPLES', 'OFF')