Skip to content

Commit 3633c1f

Browse files
committed
Remove passing the device set to lazy load API
1 parent afdd246 commit 3633c1f

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

library/src/tensile_host.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@ namespace
799799
auto deviceArch = getLazyLoadingArch(devId);
800800
if(tensileDeviceSet.find(deviceArch) == tensileDeviceSet.end())
801801
{
802-
//populate the arch list for lazy loading
802+
//future work: populate the arch list for heterogeneous support
803803
tensileDeviceSet.insert(deviceArch);
804804
//populate device property map, used in finding solutions based on arch
805805
HIP_CHECK_EXC(hipGetDeviceProperties(&prop, devId));
@@ -900,8 +900,7 @@ namespace
900900
= std::async(std::launch::async,
901901
Tensile::LoadLibraryFilePreload<Tensile::ContractionProblem>,
902902
tensileLibraryPath,
903-
std::vector<Tensile::LazyLoadingInit>{tensileDeviceSet.begin(),
904-
tensileDeviceSet.end()});
903+
std::vector<Tensile::LazyLoadingInit>{});
905904
return 0;
906905
}();
907906
}

0 commit comments

Comments
 (0)