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

Этот коммит содержится в:
sunway513
2018-08-04 01:52:27 +00:00
родитель 9af862d364
Коммит 7d776ae665
+1 -1
Просмотреть файл
@@ -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() {