make HIP to load the GPU objects and to setup the function symbol map on startup

[ROCm/hip commit: ebc92e5975]
This commit is contained in:
Siu Chi Chan
2018-02-18 14:19:21 -05:00
parent b3ce8d8519
commit afc71e3bad
+12
View File
@@ -490,4 +490,16 @@ namespace hip_impl
return executable;
}
// To force HIP to load the kernels and to setup the function
// symbol map on program startup
class startup_kernel_loader {
private:
startup_kernel_loader() { functions(); }
startup_kernel_loader(const startup_kernel_loader&) = delete;
startup_kernel_loader& operator= (const startup_kernel_loader&) = delete;
static startup_kernel_loader skl;
};
startup_kernel_loader startup_kernel_loader::skl;
} // Namespace hip_impl.