Merge topic 'FindBLAS-ACML'

a1fa0a3f23 FindBLAS: Fix search for ACML when not in fallback paths

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !11087
This commit is contained in:
Brad King
2025-08-18 14:11:32 +00:00
committed by Kitware Robot

View File

@@ -1122,9 +1122,9 @@ if(BLA_VENDOR MATCHES "ACML" OR BLA_VENDOR STREQUAL "All")
else()
file(GLOB _ACML_GPU_ROOT "/opt/acml*/GPGPUexamples")
endif()
list(GET _ACML_ROOT 0 _ACML_ROOT)
list(GET _ACML_GPU_ROOT 0 _ACML_GPU_ROOT)
if(_ACML_ROOT)
list(GET _ACML_ROOT 0 _ACML_ROOT)
list(GET _ACML_GPU_ROOT 0 _ACML_GPU_ROOT)
get_filename_component(_ACML_ROOT ${_ACML_ROOT} PATH)
if(_blas_sizeof_integer EQUAL 8)
set(_ACML_PATH_SUFFIX "_int64")