Skip to content

Commit 81deb7e

Browse files
committed
Cherry pick - Update Tensile data search path to support asan lib
1 parent 72e5736 commit 81deb7e

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

library/src/tensile_host.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -722,6 +722,10 @@ namespace
722722
path += "/../../Tensile/library";
723723
else if(TestPath(path + "/library"))
724724
path += "/library";
725+
else if(TestPath(path + "/../rocblas/library"))
726+
// For ASAN packaging, library file directory will be lib/asan
727+
// so need to prefix ../ to set search path to lib/rocblas/library
728+
path += "/../rocblas/library";
725729
else
726730
path += "/rocblas/library";
727731

0 commit comments

Comments
 (0)