File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
backends/apple/coreml/runtime/delegate Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -449,14 +449,12 @@ - (nullable NSURL *)compiledModelURLWithIdentifier:(NSString *)identifier
449
449
case ModelAssetType::CompiledModel: {
450
450
// The model is already compiled; no further action needed.
451
451
// Return the existing model URL.
452
- ETCoreMLLogInfo (" The model in the pte file is pre-compiled. Skipping compilation." );
453
452
return modelURL;
454
453
}
455
454
456
455
case ModelAssetType::Model: {
457
456
// The model is not compiled yet.
458
457
// Compile the model at the specified URL with a maximum wait time of 5 minutes.
459
- ETCoreMLLogInfo (" The model in the pte file is not pre-compiled. Compiling with a 5 min timeout." );
460
458
NSURL *compiledModelURL = [ETCoreMLModelCompiler compileModelAtURL: modelURL
461
459
maxWaitTimeInSeconds: (5 * 60 )
462
460
error: error];
@@ -492,7 +490,6 @@ - (nullable ETCoreMLAsset *)compiledModelAssetWithMetadata:(const ModelMetadata&
492
490
error: error];
493
491
if (compiledModelURL) {
494
492
// Move the compiled model to the asset manager to transfer ownership.
495
- ETCoreMLLogInfo (" Storing compiled asset with identifier=%@ in the asset manager." , identifier);
496
493
compiledModelAsset = [self .assetManager storeAssetAtURL: compiledModelURL withIdentifier: identifier error: error];
497
494
}
498
495
}];
You can’t perform that action at this time.
0 commit comments