Commit 75f92445 authored by Ted Themistokleous's avatar Ted Themistokleous
Browse files

Fixes to formatting and things

Using groovy to debug issues in jenkins file

Fixing new line and names
parent 075f5512
......@@ -163,7 +163,7 @@ def onnxnode(name, body) {
}
}
rocmtest onnx: onnxnode('anygpu') { cmake_build ->
rocmtest onnxbuild onnxnode('anygpu') { cmake_build ->
stage("Onnxruntime Build and Install") {
sh '''
apt install half
......@@ -173,7 +173,7 @@ rocmtest onnx: onnxnode('anygpu') { cmake_build ->
cd /onnxruntime && ./build_and_install_onnxrt.sh
'''
stash includes:'/onnxruntime/build/Linux/Release/dist/*.whl', name:'onnxruntime-wheel'
},
}
}
def onnxtestnode(name, body) {
......@@ -189,15 +189,15 @@ def onnxtestnode(name, body) {
}
}
rocmtest onnxtest: onnxtestnode('anygpu') {cmake_build ->
rocmtest onnxtests onnxtestnode('anygpu') {cmake_build ->
stage("Onnxruntime Unit tests") {
sh '''
cd /onnxruntime && ./test_onnxrt_unit_tests.sh
'''
},
stage("Onnxruntime Unit tests") {
}
stage("Onnxruntime Parity tests") {
sh '''
cd /onnxruntime && ./test_onnxrt_parity_tests.sh
'''
},
}
}
......@@ -34,4 +34,4 @@ export CXXFLAGS="-D__HIP_PLATFORM_AMD__=1 -w"
#install onnxruntime wheel for parity tests
cd build/Linux/Release
pip3 install dist/*.whl
\ No newline at end of file
pip3 install dist/*.whl
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment