Removing unnecessary flags from CI (#278)

* Removing unnecessary flags from CI

* Re-adding HSA_FORCE_FINE_GRAIN_PCIE in CI

[ROCm/rccl commit: 9b3f762b68]
This commit is contained in:
gilbertlee-amd
2020-10-19 13:08:24 -06:00
committed by GitHub
szülő 0465dffe6f
commit f4b9a0d8e5
@@ -5,11 +5,10 @@ def runCompileCommand(platform, project, jobName)
{
project.paths.construct_build_prefix()
String hipclangArgs = jobName.contains('hipclang') ? '--hip-clang' : ''
def command = """#!/usr/bin/env bash
set -x
cd ${project.paths.project_build_prefix}
LD_LIBRARY_PATH=/opt/rocm/hcc/lib ${project.paths.build_command} ${hipclangArgs}
LD_LIBRARY_PATH=/opt/rocm/hcc/lib ${project.paths.build_command}
"""
platform.runCommand(this,command)