Add more check to ensure the startup loader only be enabled with the env var set to 1

[ROCm/clr commit: 7d776ae665]
This commit is contained in:
sunway513
2018-08-04 01:52:27 +00:00
parent ef368c0f43
commit e1d72394da
+1 -1
View File
@@ -525,7 +525,7 @@ class startup_kernel_loader {
};
extern "C" void __attribute__((constructor)) __startup_kernel_loader_init() {
if (atoi(std::getenv("HIP_STARTUP_LOADER"))) functions();
if (atoi(std::getenv("HIP_STARTUP_LOADER")) == 1) functions();
}
extern "C" void __attribute__((destructor)) __startup_kernel_loader_fini() {