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

[ROCm/hip commit: 30dfa6f129]
This commit is contained in:
sunway513
2018-08-04 01:52:27 +00:00
parent 653a04fe98
commit 09a4ad1dcf
+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() {