"megatron/git@developer.sourcefind.cn:OpenDAS/megatron-lm.git" did not exist on "29d10a3652de6ff6f25e04e09e04c65c7abd1277"
Unverified Commit 245f7414 authored by Chao Liu's avatar Chao Liu Committed by GitHub
Browse files

improve parallelism for testing (#112)

parent e17c0d80
......@@ -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", """
......
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