Commit 3704eacd authored by Jehandad Khan's avatar Jehandad Khan
Browse files

Move client app out of examples,

add CI stage for it
parent ae99bcb9
......@@ -238,6 +238,23 @@ pipeline {
}
}
stage("Client App")
{
parallel
{
stage("Run Client App")
{
agent{ label rocmnode("gfx908")}
environment{
setup_args = """ -D CMAKE_CXX_FLAGS="--offload-arch=gfx908 -O3 " -DBUILD_DEV=On """
execute_args = """ cd test/client_app && mkdir build && cd build && cmake -DCMAKE_PREFIX_PATH="/opt/rocm" .. && make """
}
steps{
buildHipClangJobAndReboot(setup_args: setup_args, config_targets: "install", no_reboot:true, build_type: 'Release', execute_cmd: execute_args, prefixpath: '/usr/local')
}
}
}
}
// enable after the cmake file supports packaging
// stage("Packages") {
// when {
......
......@@ -46,3 +46,4 @@ add_subdirectory(grouped_gemm)
add_subdirectory(convnd_fwd)
add_subdirectory(reduce)
add_subdirectory(conv2d_bwd_weight)
# DONOT add client_app, that is tested via CI independently
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