module-cache: raise max_pjrt_executable_size limit to 400 MB to accommodate large PJRT executables.
This commit is contained in:
parent
88c7a74ccf
commit
0f9a92f27d
@ -1089,7 +1089,7 @@ fn computeModuleHash(platform: Platform, module: mlir.Module) u64 {
|
||||
return hasher.final();
|
||||
}
|
||||
|
||||
const max_pjrt_executable_size = 20 * 1024 * 1024;
|
||||
const max_pjrt_executable_size = 400 * 1024 * 1024;
|
||||
|
||||
fn loadPjrtExecutable(arena: std.mem.Allocator, platform: Platform, module_hash: u64, compilation_cache_location: []const u8) !*pjrt.LoadedExecutable {
|
||||
const resolved_path = try std.fs.cwd().realpathAlloc(arena, compilation_cache_location);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user