From 96c53a27203a3f99d3652194cafe3f2fec046db6 Mon Sep 17 00:00:00 2001 From: Derek Kozikowski <106621615+derekk-nm@users.noreply.github.com> Date: Wed, 12 Jun 2024 15:46:08 -0400 Subject: [PATCH] default nvcc_threads to 8 in order to reduce build execution time (#304) Update the nm-build-test.yml configuration to default nvcc_threads to 8 based on experiments showing that this should help reduce build execution time on the current gcp-k8s-build environment. this change will impact workflows "using" nm-build-test.yml; nm-nightly.yml, nm-release.yml, nm-weekly.yml, nm-remote-push.yml. --- .github/workflows/nm-build-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nm-build-test.yml b/.github/workflows/nm-build-test.yml index 74dc1db48b5f2..9a89697e579a6 100644 --- a/.github/workflows/nm-build-test.yml +++ b/.github/workflows/nm-build-test.yml @@ -27,7 +27,7 @@ on: nvcc_threads: description: "number of threads nvcc build threads" type: string - default: "4" + default: "8" # test related parameters test_label_solo: description: "requested runner label (specifies instance)"