From 4f0ac2a408e5e337201e371db23a00bb5c8e6d45 Mon Sep 17 00:00:00 2001 From: wejoncy Date: Mon, 16 Dec 2024 18:20:11 +0800 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Scott McKay --- .../onnxruntime/core/providers/coreml/coreml_provider_factory.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/onnxruntime/core/providers/coreml/coreml_provider_factory.h b/include/onnxruntime/core/providers/coreml/coreml_provider_factory.h index 12bdcddb5ae2a..6c6d5c8d601ef 100644 --- a/include/onnxruntime/core/providers/coreml/coreml_provider_factory.h +++ b/include/onnxruntime/core/providers/coreml/coreml_provider_factory.h @@ -61,7 +61,7 @@ static const char* const kCoremlProviderOption_SpecializationStrategy = "Special static const char* const kCoremlProviderOption_ProfileComputePlan = "ProfileComputePlan"; // please refer to https://developer.apple.com/documentation/coreml/mlmodelconfiguration/allowlowprecisionaccumulationongpu static const char* const kCoremlProviderOption_AllowLowPrecisionAccumulationOnGPU = "AllowLowPrecisionAccumulationOnGPU"; -// Specify the path to cache the model. +// Specify the directory to cache any CoreML models created from the ONNX model in. // CoreML EP will convert onnx subgraph to CoreML model and save to disk. // If this path is not specified, the model will be saved to a temp directory and deleted after the session is closed. // otherwise, the model will be saved to the specified path and User should manage to delete the model.