This commit is contained in:
Awni Hannun
2025-07-27 06:31:30 -07:00
parent 254c0f56c3
commit 82fff85355

View File

@@ -56,7 +56,8 @@ Device::Device(int device) : device_(device) {
// The cudnn handle is used by Convolution.
CHECK_CUDNN_ERROR(cudnnCreate(&cudnn_));
// Ensure the jit module cache is initialized
// Initialize the jit module cache here ensures it is not
// unloaded before any evaluation is done
get_jit_module_cache();
}