From df89e0892f12613b4cbf4b61717e14f72df968a0 Mon Sep 17 00:00:00 2001 From: Illia Silin <98187287+illsilin@users.noreply.github.com> Date: Tue, 28 May 2024 12:36:06 -0700 Subject: [PATCH] Build CK library for all supported targets. (#1312) * test library build for all supported targets * increase the number of threads to build lib in CI to 64 [ROCm/composable_kernel commit: 34f3dfdd619b32a597acb678c0b8a50624434dd8] --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 75800bfc94..e8fd0c3ce6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -911,9 +911,8 @@ pipeline { execute_args = """ cmake -D CMAKE_PREFIX_PATH=/opt/rocm \ -D CMAKE_CXX_COMPILER="${build_compiler()}" \ -D CMAKE_BUILD_TYPE=Release \ - -D GPU_TARGETS="gfx90a;gfx1030;gfx1101" \ -D INSTANCES_ONLY=ON \ - -DCMAKE_CXX_FLAGS=" -O3 " .. && make -j32 """ + -DCMAKE_CXX_FLAGS=" -O3 " .. && make -j64 """ } steps{ buildHipClangJobAndReboot(setup_cmd: "", build_cmd: "", no_reboot:true, build_type: 'Release', execute_cmd: execute_args)