Internal change.

PiperOrigin-RevId: 184047860
This commit is contained in:
Anna R 2018-01-31 14:30:22 -08:00 committed by Michael Case
parent faaa74db71
commit b47b2a7f2e

View File

@ -136,7 +136,7 @@ def run_and_gather_logs(name, test_name, test_args,
gpu_config = gpu_info_lib.gather_gpu_devices()
if gpu_config:
gpu_name = gpu_config[0].model
gpu_short_name_match = re.search(r"Tesla (K40|K80|P100)", gpu_name)
gpu_short_name_match = re.search(r"Tesla (K40|K80|P100|V100)", gpu_name)
if gpu_short_name_match:
gpu_short_name = gpu_short_name_match.group(0)
test_adjusted_name = name + "|" + gpu_short_name.replace(" ", "_")