Options
public struct Options : Equatable, HashableUndocumented
- 
                  
                  A type indicating which devices the Core ML delegate should be enabled for. The default value is .neuralEngineindicating that the delegate is enabled for Neural Engine devices only.DeclarationSwift public var enabledDevices: EnabledDevices
- 
                  
                  Target Core ML version for the model conversion. When it’s not set, Core ML version will be set to highest available version for the platform. DeclarationSwift public var coreMLVersion: Int
- 
                  
                  The maximum number of Core ML delegate partitions created. Each graph corresponds to one delegated node subset in the TFLite model. The default value is 0indicating that all possible partitions are delegated.DeclarationSwift public var maxDelegatedPartitions: Int
- 
                  
                  The minimum number of nodes per partition to be delegated by the Core ML delegate. The default value is 2.DeclarationSwift public var minNodesPerPartition: Int
- 
                  
                  Creates a new instance with the default values. DeclarationSwift public init()