improve parallelism for testing (#112)

[ROCm/composable_kernel commit: 245f741457]
This commit is contained in:
Chao Liu
2022-03-07 10:33:12 -06:00
committed by GitHub
parent b13f7b1861
commit 2466420db6

2
Jenkinsfile vendored
View File

@@ -61,7 +61,7 @@ def cmake_build(Map conf=[:]){
"""
def setup_cmd = conf.get("setup_cmd", "${cmake_envs} cmake ${setup_args} .. ")
// reduce parallelism when compiling, clang uses too much memory
def build_cmd = conf.get("build_cmd", "${build_envs} dumb-init make -j\$(( \$(nproc) / 5 )) ${config_targets}")
def build_cmd = conf.get("build_cmd", "${build_envs} dumb-init make -j\$(( \$(nproc) / 1 )) ${config_targets}")
def execute_cmd = conf.get("execute_cmd", "")
def cmd = conf.get("cmd", """