Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
wejoncy committed Oct 10, 2024
1 parent 871ade4 commit fbbd1c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions java/src/main/java/ai/onnxruntime/providers/CoreMLFlags.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ public enum CoreMLFlags implements OrtFlags {
* usage as it significantly impacts performance.
*/
CPU_ONLY(16), // COREML_FLAG_USE_CPU_ONLY(0x010)
CPU_And_GPU(32),// MLComputeUnitsCPUAndGPU(0x020)
CPU_And_NeuralEngine(64),// MLComputeUnitsCPUAndNeuralEngine(0x040)
Units_All(128),// MLComputeUnitsAll(0x080)
CPU_And_GPU(32), // MLComputeUnitsCPUAndGPU(0x020)
CPU_And_NeuralEngine(64), // MLComputeUnitsCPUAndNeuralEngine(0x040)
Units_All(128), // MLComputeUnitsAll(0x080)
/**
* Create an MLProgram. By default it will create a NeuralNetwork model. Requires Core ML 5 or
* later.
Expand Down

0 comments on commit fbbd1c0

Please sign in to comment.