From b634b2f1c2a02c76165844968e7d3eb3b8ea78b3 Mon Sep 17 00:00:00 2001 From: gilbertlee-amd <44450918+gilbertlee-amd@users.noreply.github.com> Date: Thu, 3 Mar 2022 18:04:28 -0700 Subject: [PATCH] Adding NCCL_DEBUG=INFO for CI runs (#508) --- .jenkins/common.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.jenkins/common.groovy b/.jenkins/common.groovy index 941f141025..c1cbfe96a8 100644 --- a/.jenkins/common.groovy +++ b/.jenkins/common.groovy @@ -21,7 +21,7 @@ def runTestCommand (platform, project, gfilter) def command = """#!/usr/bin/env bash set -x cd ${project.paths.project_build_prefix}/build/release/test - ${sudo} UT_SHOW_NAMES=1 HSA_FORCE_FINE_GRAIN_PCIE=1 ./UnitTests --gtest_filter=${gfilter} --gtest_output=xml --gtest_color=yes + ${sudo} NCCL_DEBUG=INFO HSA_FORCE_FINE_GRAIN_PCIE=1 ./UnitTests --gtest_filter=${gfilter} --gtest_output=xml --gtest_color=yes """ platform.runCommand(this, command)