Removed GPU_IB (#59)

This commit is contained in:
Yiltan
2025-03-24 09:04:52 -04:00
committed by GitHub
parent 1210b6419f
commit 658bf2a3b5
76 changed files with 33 additions and 8539 deletions
+1 -4
View File
@@ -145,12 +145,9 @@ def determine_algos_from_library_config_type(config):
if config['algorithms']:
return config
gpu_ib = re.match('^[rd]c_', config['library_build_config_type'])
thread_single = re.match('.*single.*', config['library_build_config_type'])
if not gpu_ib:
config['algorithms'] = reverse_offload_algorithms
elif thread_single:
if thread_single:
config['algorithms'] = single_thread_algorithms
else:
config['algorithms'] = multi_thread_algorithms