Merge branch 'master' of https://github.com/ROCm-Developer-Tools/HIP into feature_purge_genco

This commit is contained in:
Alex Voicu
2018-02-22 12:08:52 +00:00
4 fájl változott, egészen pontosan 57 új sor hozzáadva és 7 régi sor törölve
+12
Fájl megtekintése
@@ -472,4 +472,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.