ROCm / hipBLASLt

hipBLASLt is a library that provides general matrix-matrix operations with a flexible API and extends functionalities beyond a traditional BLAS library
https://rocm.docs.amd.com/projects/hipBLASLt/en/latest/index.html
MIT License
49 stars 80 forks source link

Fix default value for tensile logic build parameter #1129

Closed AlexBrownAMD closed 1 week ago

AlexBrownAMD commented 1 week ago

The install script allows you to specify which logic directory to build by setting the "-l" or "--logic" option. The default in the CMake file tries to set the value to "asm_full", but if the user doesn't specify a logic directory then the install script overrides the default with the base Logic directory causing all libraries to be built.

This change fixes the default logic directory by checking if the user set a value for the "-l" flag before overriding CMake's default value.