Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
MIGraphX
Commits
bfd77388
Unverified
Commit
bfd77388
authored
Feb 16, 2023
by
Umang Yadav
Committed by
GitHub
Feb 16, 2023
Browse files
Remove HCC (#1546)
* deprecate HCC
parent
cc098f4d
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
31 additions
and
91 deletions
+31
-91
.clang-tidy
.clang-tidy
+1
-1
CMakeLists.txt
CMakeLists.txt
+1
-1
Jenkinsfile
Jenkinsfile
+3
-5
install_deps.cmake
install_deps.cmake
+20
-16
src/compile_src.cpp
src/compile_src.cpp
+0
-3
src/targets/gpu/CMakeLists.txt
src/targets/gpu/CMakeLists.txt
+1
-19
src/targets/gpu/compile_hip.cpp
src/targets/gpu/compile_hip.cpp
+4
-35
src/targets/gpu/device/include/migraphx/gpu/device/launch.hpp
...targets/gpu/device/include/migraphx/gpu/device/launch.hpp
+0
-6
src/targets/gpu/kernels/include/migraphx/kernels/hip.hpp
src/targets/gpu/kernels/include/migraphx/kernels/hip.hpp
+0
-4
tools/build_and_test_onnxrt.sh
tools/build_and_test_onnxrt.sh
+1
-1
No files found.
.clang-tidy
View file @
bfd77388
CheckOptions:
CheckOptions:
- key: bugprone-reserved-identifier.AllowedIdentifiers
- key: bugprone-reserved-identifier.AllowedIdentifiers
value: '__HIP_PLATFORM_
HCC
__;__HIP_ROCclr__'
value: '__HIP_PLATFORM_
AMD
__;__HIP_ROCclr__'
- key: bugprone-unused-return-value.CheckedFunctions
- key: bugprone-unused-return-value.CheckedFunctions
value: '::std::async;::std::launder;::std::remove;::std::remove_if;::std::unique;::std::unique_ptr::release;::std::basic_string::empty;::std::vector::empty;::std::find;::std::find_if;::std::find_if_not;::std::all_of;::std::any_of;::std::none_of;::std::count;::std::count_if;::std::mismatch;::std::find_end;::std::find_first_of;::std::adjacent_find;::std::search;::std::search_n;::std::nth_element;::std::lower_bound;::std::upper_bound;::std::binary_search;::std::equal_range;::std::max;::std::max_element;::std::min;::std::min_element;::std::minmax;::std::minmax_element;::std::equal;::std::lexicographical_compare;::std::accumulate;::std::inner_product'
value: '::std::async;::std::launder;::std::remove;::std::remove_if;::std::unique;::std::unique_ptr::release;::std::basic_string::empty;::std::vector::empty;::std::find;::std::find_if;::std::find_if_not;::std::all_of;::std::any_of;::std::none_of;::std::count;::std::count_if;::std::mismatch;::std::find_end;::std::find_first_of;::std::adjacent_find;::std::search;::std::search_n;::std::nth_element;::std::lower_bound;::std::upper_bound;::std::binary_search;::std::equal_range;::std::max;::std::max_element;::std::min;::std::min_element;::std::minmax;::std::minmax_element;::std::equal;::std::lexicographical_compare;::std::accumulate;::std::inner_product'
- key: cppcoreguidelines-macro-usage.AllowedRegexp
- key: cppcoreguidelines-macro-usage.AllowedRegexp
...
...
CMakeLists.txt
View file @
bfd77388
...
@@ -95,7 +95,7 @@ endif()
...
@@ -95,7 +95,7 @@ endif()
list
(
APPEND CMAKE_MODULE_PATH
${
CMAKE_CURRENT_SOURCE_DIR
}
/cmake
)
list
(
APPEND CMAKE_MODULE_PATH
${
CMAKE_CURRENT_SOURCE_DIR
}
/cmake
)
include
(
EnableCompilerWarnings
)
include
(
EnableCompilerWarnings
)
include
(
ROCMClangTidy
)
include
(
ROCMClangTidy
)
if
(
CMAKE_CXX_COMPILER MATCHES
".*hcc"
OR CMAKE_CXX_COMPILER MATCHES
".*clang
\\
+
\\
+"
)
if
(
CMAKE_CXX_COMPILER MATCHES
".*clang
\\
+
\\
+"
)
set
(
MIGRAPHX_TIDY_ERRORS ERRORS * -readability-inconsistent-declaration-parameter-name
)
set
(
MIGRAPHX_TIDY_ERRORS ERRORS * -readability-inconsistent-declaration-parameter-name
)
# Enable tidy on hip
# Enable tidy on hip
elseif
(
MIGRAPHX_ENABLE_GPU
)
elseif
(
MIGRAPHX_ENABLE_GPU
)
...
...
Jenkinsfile
View file @
bfd77388
...
@@ -33,13 +33,11 @@ def rocmtestnode(Map conf) {
...
@@ -33,13 +33,11 @@ def rocmtestnode(Map conf) {
"""
"""
echo
cmd
echo
cmd
sh
cmd
sh
cmd
if
(
compiler
!=
"hcc"
)
{
// Only archive from master or develop
// Only archive from master or develop
if
(
env
.
BRANCH_NAME
==
"develop"
||
env
.
BRANCH_NAME
==
"master"
)
{
if
(
env
.
BRANCH_NAME
==
"develop"
||
env
.
BRANCH_NAME
==
"master"
)
{
archiveArtifacts
artifacts:
"build/*.deb"
,
allowEmptyArchive:
true
,
fingerprint:
true
archiveArtifacts
artifacts:
"build/*.deb"
,
allowEmptyArchive:
true
,
fingerprint:
true
}
}
}
}
}
node
(
name
)
{
node
(
name
)
{
withEnv
([
'HSA_ENABLE_SDMA=0'
])
{
withEnv
([
'HSA_ENABLE_SDMA=0'
])
{
stage
(
"checkout ${variant}"
)
{
stage
(
"checkout ${variant}"
)
{
...
...
install_deps.cmake
View file @
bfd77388
#!/usr/bin/cmake -P
#!/usr/bin/cmake -P
#####################################################################################
#
####################################################################################
# The MIT License (MIT)
# The MIT License (MIT)
#
#
# Copyright (c) 2015-2022 Advanced Micro Devices, Inc. All rights reserved.
# Copyright (c) 2015-2022 Advanced Micro Devices, Inc. All rights reserved.
...
@@ -22,9 +22,10 @@
...
@@ -22,9 +22,10 @@
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
# THE SOFTWARE.
#####################################################################################
#
####################################################################################
set
(
ARGS
)
set
(
ARGS
)
foreach
(
i RANGE 3
${
CMAKE_ARGC
}
)
foreach
(
i RANGE 3
${
CMAKE_ARGC
}
)
list
(
APPEND ARGS
${
CMAKE_ARGV
${
i
}}
)
list
(
APPEND ARGS
${
CMAKE_ARGV
${
i
}}
)
endforeach
()
endforeach
()
...
@@ -38,18 +39,19 @@ set(multiValueArgs)
...
@@ -38,18 +39,19 @@ set(multiValueArgs)
cmake_parse_arguments
(
PARSE
"
${
options
}
"
"
${
oneValueArgs
}
"
"
${
multiValueArgs
}
"
${
ARGS
}
)
cmake_parse_arguments
(
PARSE
"
${
options
}
"
"
${
oneValueArgs
}
"
"
${
multiValueArgs
}
"
${
ARGS
}
)
if
(
PARSE_help
)
if
(
PARSE_help
)
message
(
"Usage: install_deps.cmake [options] [cmake-args]"
)
message
(
"Usage: install_deps.cmake [options] [cmake-args]"
)
message
(
""
)
message
(
""
)
message
(
"Options:"
)
message
(
"Options:"
)
message
(
" --prefix Set the prefix to install the dependencies."
)
message
(
" --prefix Set the prefix to install the dependencies."
)
message
(
""
)
message
(
""
)
message
(
"Commands:"
)
message
(
"Commands:"
)
message
(
" help Show this message and exit."
)
message
(
" help Show this message and exit."
)
message
(
""
)
message
(
""
)
return
()
return
()
endif
()
endif
()
set
(
_PREFIX /usr/local
)
set
(
_PREFIX /usr/local
)
if
(
PARSE_--prefix
)
if
(
PARSE_--prefix
)
set
(
_PREFIX
${
PARSE_--prefix
}
)
set
(
_PREFIX
${
PARSE_--prefix
}
)
endif
()
endif
()
...
@@ -63,21 +65,23 @@ if(NOT CMakeGet_FOUND)
...
@@ -63,21 +65,23 @@ if(NOT CMakeGet_FOUND)
file
(
DOWNLOAD https://raw.githubusercontent.com/pfultz2/cmake-get/master/install.cmake
${
FILENAME
}
STATUS RESULT_LIST
)
file
(
DOWNLOAD https://raw.githubusercontent.com/pfultz2/cmake-get/master/install.cmake
${
FILENAME
}
STATUS RESULT_LIST
)
list
(
GET RESULT_LIST 0 RESULT
)
list
(
GET RESULT_LIST 0 RESULT
)
list
(
GET RESULT_LIST 1 RESULT_MESSAGE
)
list
(
GET RESULT_LIST 1 RESULT_MESSAGE
)
if
(
NOT RESULT EQUAL 0
)
if
(
NOT RESULT EQUAL 0
)
message
(
FATAL_ERROR
"Download for install.cmake failed:
${
RESULT_MESSAGE
}
"
)
message
(
FATAL_ERROR
"Download for install.cmake failed:
${
RESULT_MESSAGE
}
"
)
endif
()
endif
()
execute_process
(
COMMAND
${
CMAKE_COMMAND
}
-P
${
FILENAME
}
${
PREFIX
}
)
execute_process
(
COMMAND
${
CMAKE_COMMAND
}
-P
${
FILENAME
}
${
PREFIX
}
)
file
(
REMOVE
${
FILENAME
}
)
file
(
REMOVE
${
FILENAME
}
)
find_package
(
CMakeGet REQUIRED PATHS
${
PREFIX
}
)
find_package
(
CMakeGet REQUIRED PATHS
${
PREFIX
}
)
endif
()
endif
()
# Set compiler to
hcc
if not set
# Set compiler to
clang++
if not set
if
(
NOT DEFINED ENV{CXX} AND NOT DEFINED CMAKE_CXX_COMPILER AND NOT DEFINED CMAKE_TOOLCHAIN_FILE
)
if
(
NOT DEFINED ENV{CXX} AND NOT DEFINED CMAKE_CXX_COMPILER AND NOT DEFINED CMAKE_TOOLCHAIN_FILE
)
find_program
(
HCC hcc
PATHS /opt/rocm PATH_SUFFIXES bin
)
find_program
(
CLANG clang++
PATHS /opt/rocm
/opt/rocm/llvm
PATH_SUFFIXES bin
)
if
(
HCC
)
if
(
CLANG
)
set
(
ENV{CXX}
${
HCC
}
)
set
(
ENV{CXX}
${
CLANG
}
)
else
()
else
()
message
(
FATAL_ERROR
"Cannot find
hcc
"
)
message
(
FATAL_ERROR
"Cannot find
clang++
"
)
endif
()
endif
()
endif
()
endif
()
...
...
src/compile_src.cpp
View file @
bfd77388
...
@@ -70,9 +70,6 @@ std::vector<char> src_compiler::compile(const std::vector<src_file>& srcs) const
...
@@ -70,9 +70,6 @@ std::vector<char> src_compiler::compile(const std::vector<src_file>& srcs) const
if
(
not
fs
::
exists
(
out_path
))
if
(
not
fs
::
exists
(
out_path
))
MIGRAPHX_THROW
(
"Output file missing: "
+
out
);
MIGRAPHX_THROW
(
"Output file missing: "
+
out
);
if
(
process
)
out_path
=
process
(
out_path
);
return
read_buffer
(
out_path
.
string
());
return
read_buffer
(
out_path
.
string
());
}
}
...
...
src/targets/gpu/CMakeLists.txt
View file @
bfd77388
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
# THE SOFTWARE.
# THE SOFTWARE.
# ####################################################################################
# ####################################################################################
list
(
APPEND CMAKE_PREFIX_PATH /opt/rocm /opt/rocm/hip
/opt/rocm/hcc
)
list
(
APPEND CMAKE_PREFIX_PATH /opt/rocm /opt/rocm/hip
)
find_package
(
miopen
)
find_package
(
miopen
)
# rocblas
# rocblas
...
@@ -170,21 +170,6 @@ register_op(migraphx_gpu HEADER migraphx/gpu/convolution.hpp
...
@@ -170,21 +170,6 @@ register_op(migraphx_gpu HEADER migraphx/gpu/convolution.hpp
rocm_set_soversion
(
migraphx_gpu
${
MIGRAPHX_SO_VERSION
}
)
rocm_set_soversion
(
migraphx_gpu
${
MIGRAPHX_SO_VERSION
}
)
rocm_clang_tidy_check
(
migraphx_gpu
)
rocm_clang_tidy_check
(
migraphx_gpu
)
get_filename_component
(
CMAKE_CXX_COMPILER_PATH
"
${
CMAKE_CXX_COMPILER
}
"
PATH
)
if
(
NOT CMAKE_CXX_COMPILER MATCHES
".*clang
\\
+
\\
+$"
)
find_program
(
MIGRAPHX_EXTRACT_KERNEL extractkernel
PATH_SUFFIXES bin
HINTS
${
CMAKE_CXX_COMPILER_PATH
}
PATHS
/opt/rocm/hip
/opt/rocm/hcc
/opt/rocm
)
endif
()
message
(
STATUS
"extractkernel:
${
MIGRAPHX_EXTRACT_KERNEL
}
"
)
set
(
MIGRAPHX_ENABLE_MLIR OFF CACHE BOOL
""
)
set
(
MIGRAPHX_ENABLE_MLIR OFF CACHE BOOL
""
)
if
(
MIGRAPHX_ENABLE_MLIR
)
if
(
MIGRAPHX_ENABLE_MLIR
)
...
@@ -220,7 +205,6 @@ else()
...
@@ -220,7 +205,6 @@ else()
target_compile_definitions
(
migraphx_gpu PRIVATE
target_compile_definitions
(
migraphx_gpu PRIVATE
"-DMIGRAPHX_HIP_COMPILER=
${
CMAKE_CXX_COMPILER
}
"
"-DMIGRAPHX_HIP_COMPILER=
${
CMAKE_CXX_COMPILER
}
"
"-DMIGRAPHX_HIP_COMPILER_FLAGS=
${
HIP_COMPILER_FLAGS
}
"
"-DMIGRAPHX_HIP_COMPILER_FLAGS=
${
HIP_COMPILER_FLAGS
}
"
"-DMIGRAPHX_EXTRACT_KERNEL=
${
MIGRAPHX_EXTRACT_KERNEL
}
"
)
)
if
(
DEFINED CMAKE_CXX_COMPILER_LAUNCHER
)
if
(
DEFINED CMAKE_CXX_COMPILER_LAUNCHER
)
...
@@ -252,8 +236,6 @@ else()
...
@@ -252,8 +236,6 @@ else()
message
(
STATUS
"MIOpen does not have find mode api"
)
message
(
STATUS
"MIOpen does not have find mode api"
)
endif
()
endif
()
# Workaround broken rocblas headers
target_compile_definitions
(
migraphx_gpu PUBLIC -D__HIP_PLATFORM_HCC__=1
)
target_link_libraries
(
migraphx_gpu PUBLIC migraphx MIOpen roc::rocblas
)
target_link_libraries
(
migraphx_gpu PUBLIC migraphx MIOpen roc::rocblas
)
target_link_libraries
(
migraphx_gpu PRIVATE migraphx_device migraphx_kernels
)
target_link_libraries
(
migraphx_gpu PRIVATE migraphx_device migraphx_kernels
)
...
...
src/targets/gpu/compile_hip.cpp
View file @
bfd77388
...
@@ -207,12 +207,6 @@ compile_hip_src(const std::vector<src_file>& srcs, std::string params, const std
...
@@ -207,12 +207,6 @@ compile_hip_src(const std::vector<src_file>& srcs, std::string params, const std
#else // MIGRAPHX_USE_HIPRTC
#else // MIGRAPHX_USE_HIPRTC
bool
is_hcc_compiler
()
{
static
const
auto
result
=
ends_with
(
MIGRAPHX_STRINGIZE
(
MIGRAPHX_HIP_COMPILER
),
"hcc"
);
return
result
;
}
bool
is_hip_clang_compiler
()
bool
is_hip_clang_compiler
()
{
{
static
const
auto
result
=
ends_with
(
MIGRAPHX_STRINGIZE
(
MIGRAPHX_HIP_COMPILER
),
"clang++"
);
static
const
auto
result
=
ends_with
(
MIGRAPHX_STRINGIZE
(
MIGRAPHX_HIP_COMPILER
),
"clang++"
);
...
@@ -236,7 +230,7 @@ std::vector<std::vector<char>>
...
@@ -236,7 +230,7 @@ std::vector<std::vector<char>>
compile_hip_src
(
const
std
::
vector
<
src_file
>&
srcs
,
std
::
string
params
,
const
std
::
string
&
arch
)
compile_hip_src
(
const
std
::
vector
<
src_file
>&
srcs
,
std
::
string
params
,
const
std
::
string
&
arch
)
{
{
assert
(
not
srcs
.
empty
());
assert
(
not
srcs
.
empty
());
if
(
not
is_hcc_compiler
()
and
not
is_hip_clang_compiler
())
if
(
not
is_hip_clang_compiler
())
MIGRAPHX_THROW
(
"Unknown hip compiler: "
+
MIGRAPHX_THROW
(
"Unknown hip compiler: "
+
std
::
string
(
MIGRAPHX_STRINGIZE
(
MIGRAPHX_HIP_COMPILER
)));
std
::
string
(
MIGRAPHX_STRINGIZE
(
MIGRAPHX_HIP_COMPILER
)));
...
@@ -246,16 +240,9 @@ compile_hip_src(const std::vector<src_file>& srcs, std::string params, const std
...
@@ -246,16 +240,9 @@ compile_hip_src(const std::vector<src_file>& srcs, std::string params, const std
if
(
enabled
(
MIGRAPHX_GPU_DEBUG_SYM
{}))
if
(
enabled
(
MIGRAPHX_GPU_DEBUG_SYM
{}))
params
+=
" -g"
;
params
+=
" -g"
;
params
+=
" -c"
;
params
+=
" -c"
;
if
(
is_hcc_compiler
())
{
params
+=
" -amdgpu-target="
+
arch
;
}
else
if
(
is_hip_clang_compiler
())
{
params
+=
" --offload-arch="
+
arch
;
params
+=
" --offload-arch="
+
arch
;
params
+=
" --cuda-device-only"
;
params
+=
" --cuda-device-only"
;
params
+=
" -O"
+
string_value_of
(
MIGRAPHX_GPU_OPTIMIZE
{},
"3"
)
+
" "
;
params
+=
" -O"
+
string_value_of
(
MIGRAPHX_GPU_OPTIMIZE
{},
"3"
)
+
" "
;
}
if
(
enabled
(
MIGRAPHX_GPU_DEBUG
{}))
if
(
enabled
(
MIGRAPHX_GPU_DEBUG
{}))
params
+=
" -DMIGRAPHX_DEBUG"
;
params
+=
" -DMIGRAPHX_DEBUG"
;
...
@@ -270,24 +257,6 @@ compile_hip_src(const std::vector<src_file>& srcs, std::string params, const std
...
@@ -270,24 +257,6 @@ compile_hip_src(const std::vector<src_file>& srcs, std::string params, const std
if
(
has_compiler_launcher
())
if
(
has_compiler_launcher
())
compiler
.
launcher
=
MIGRAPHX_STRINGIZE
(
MIGRAPHX_HIP_COMPILER_LAUNCHER
);
compiler
.
launcher
=
MIGRAPHX_STRINGIZE
(
MIGRAPHX_HIP_COMPILER_LAUNCHER
);
#endif
#endif
if
(
is_hcc_compiler
())
compiler
.
process
=
[
&
](
const
fs
::
path
&
obj_path
)
->
fs
::
path
{
process
{
MIGRAPHX_STRINGIZE
(
MIGRAPHX_EXTRACT_KERNEL
)
+
std
::
string
{
" -i "
}
+
obj_path
.
string
()}
.
cwd
(
obj_path
.
parent_path
());
for
(
const
auto
&
entry
:
fs
::
directory_iterator
{
obj_path
.
parent_path
()})
{
const
auto
&
hsaco_path
=
entry
.
path
();
if
(
not
fs
::
is_regular_file
(
hsaco_path
))
continue
;
if
(
hsaco_path
.
extension
()
!=
".hsaco"
)
continue
;
return
hsaco_path
;
}
MIGRAPHX_THROW
(
"Missing hsaco"
);
};
if
(
enabled
(
MIGRAPHX_GPU_DUMP_SRC
{}))
if
(
enabled
(
MIGRAPHX_GPU_DUMP_SRC
{}))
{
{
for
(
const
auto
&
src
:
srcs
)
for
(
const
auto
&
src
:
srcs
)
...
...
src/targets/gpu/device/include/migraphx/gpu/device/launch.hpp
View file @
bfd77388
...
@@ -112,14 +112,8 @@ inline auto gs_launch(hipStream_t stream, index_int n, index_int local = 1024)
...
@@ -112,14 +112,8 @@ inline auto gs_launch(hipStream_t stream, index_int n, index_int local = 1024)
#ifdef MIGRAPHX_USE_CLANG_TIDY
#ifdef MIGRAPHX_USE_CLANG_TIDY
#define MIGRAPHX_DEVICE_SHARED
#define MIGRAPHX_DEVICE_SHARED
#else
#else
// Workaround hcc's broken tile_static macro
#ifdef tile_static
#undef tile_static
#define MIGRAPHX_DEVICE_SHARED __attribute__((tile_static))
#else
#define MIGRAPHX_DEVICE_SHARED __shared__
#define MIGRAPHX_DEVICE_SHARED __shared__
#endif
#endif
#endif
}
// namespace device
}
// namespace device
}
// namespace gpu
}
// namespace gpu
...
...
src/targets/gpu/kernels/include/migraphx/kernels/hip.hpp
View file @
bfd77388
...
@@ -25,10 +25,6 @@
...
@@ -25,10 +25,6 @@
#define MIGRAPHX_GUARD_KERNELS_HIP_HPP
#define MIGRAPHX_GUARD_KERNELS_HIP_HPP
#ifndef MIGRAPHX_USE_HIPRTC
#ifndef MIGRAPHX_USE_HIPRTC
// Workaround macro redefinition issue with clang tidy
#if defined(__HIP_PLATFORM_HCC__) && defined(MIGRAPHX_USE_CLANG_TIDY)
#undef __HIP_PLATFORM_HCC__ // NOLINT
#endif
#include <hip/hip_runtime.h>
#include <hip/hip_runtime.h>
#include <hip/hip_fp16.h>
#include <hip/hip_fp16.h>
#include <hip/math_functions.h>
#include <hip/math_functions.h>
...
...
tools/build_and_test_onnxrt.sh
View file @
bfd77388
...
@@ -25,7 +25,7 @@ cd /onnxruntime
...
@@ -25,7 +25,7 @@ cd /onnxruntime
pip3
install
-r
requirements-dev.txt
pip3
install
-r
requirements-dev.txt
# Add newer cmake to the path
# Add newer cmake to the path
export
PATH
=
"/opt/cmake/bin:
$PATH
"
export
PATH
=
"/opt/cmake/bin:
$PATH
"
export
CXXFLAGS
=
"-D__HIP_PLATFORM_
HCC
__=1 -w"
export
CXXFLAGS
=
"-D__HIP_PLATFORM_
AMD
__=1 -w"
./build.sh
--config
Release
--cmake_extra_defines
CMAKE_HIP_COMPILER
=
/opt/rocm/llvm/bin/clang++
--update
--build
--parallel
--cmake_extra_defines
ONNXRUNTIME_VERSION
=
$(
cat
./VERSION_NUMBER
)
--skip_tests
--rocm_home
/opt/rocm
--use_migraphx
--migraphx_home
/opt/rocm
--rocm_version
=
`
cat
/opt/rocm/.info/version-dev
`
./build.sh
--config
Release
--cmake_extra_defines
CMAKE_HIP_COMPILER
=
/opt/rocm/llvm/bin/clang++
--update
--build
--parallel
--cmake_extra_defines
ONNXRUNTIME_VERSION
=
$(
cat
./VERSION_NUMBER
)
--skip_tests
--rocm_home
/opt/rocm
--use_migraphx
--migraphx_home
/opt/rocm
--rocm_version
=
`
cat
/opt/rocm/.info/version-dev
`
cd
build/Linux/Release
cd
build/Linux/Release
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment