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
98b72294
Commit
98b72294
authored
Jun 22, 2023
by
Artur Wojcik
Browse files
Jenkins
parent
e0abe7bb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
Jenkinsfile
Jenkinsfile
+4
-2
No files found.
Jenkinsfile
View file @
98b72294
...
@@ -12,7 +12,8 @@ def rocmtestnode(Map conf) {
...
@@ -12,7 +12,8 @@ def rocmtestnode(Map conf) {
env
.
CCACHE_COMPRESSLEVEL
=
7
env
.
CCACHE_COMPRESSLEVEL
=
7
env
.
CCACHE_DIR
=
ccache
env
.
CCACHE_DIR
=
ccache
def
cmake_build
=
{
bconf
->
def
cmake_build
=
{
bconf
->
def
compiler
=
bconf
.
get
(
"compiler"
,
"/opt/rocm/llvm/bin/clang++"
)
def
cxx_compiler
=
bconf
.
get
(
"cxx_compiler"
,
"/opt/rocm/llvm/bin/clang++"
)
def
cc_compiler
=
bconf
.
get
(
"cc_compiler"
,
"/opt/rocm/llvm/bin/clang"
)
def
flags
=
bconf
.
get
(
"flags"
,
""
)
def
flags
=
bconf
.
get
(
"flags"
,
""
)
def
gpu_debug
=
bconf
.
get
(
"gpu_debug"
,
"0"
)
def
gpu_debug
=
bconf
.
get
(
"gpu_debug"
,
"0"
)
def
cmd
=
"""
def
cmd
=
"""
...
@@ -20,7 +21,8 @@ def rocmtestnode(Map conf) {
...
@@ -20,7 +21,8 @@ def rocmtestnode(Map conf) {
echo "leak:dnnl::impl::malloc" > suppressions.txt
echo "leak:dnnl::impl::malloc" > suppressions.txt
export LSAN_OPTIONS="suppressions=\$(pwd)/suppressions.txt"
export LSAN_OPTIONS="suppressions=\$(pwd)/suppressions.txt"
export MIGRAPHX_GPU_DEBUG=${gpu_debug}
export MIGRAPHX_GPU_DEBUG=${gpu_debug}
export CXX=${compiler}
export CXX=${cxx_compiler}
export CC=${cc_compiler}
export CXXFLAGS='-Werror'
export CXXFLAGS='-Werror'
env
env
rm -rf build
rm -rf build
...
...
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