pyobjc-framework-CoreML 10.1__tar.gz → 11.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. pyobjc_framework_coreml-11.0/Lib/CoreML/__init__.py +120 -0
  2. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/Lib/CoreML/_metadata.py +208 -12
  3. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/Lib/pyobjc_framework_CoreML.egg-info/PKG-INFO +5 -5
  4. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/Lib/pyobjc_framework_CoreML.egg-info/SOURCES.txt +24 -6
  5. pyobjc_framework_coreml-11.0/Lib/pyobjc_framework_CoreML.egg-info/pyobjc-build-info.txt +3 -0
  6. pyobjc_framework_coreml-11.0/Lib/pyobjc_framework_CoreML.egg-info/requires.txt +2 -0
  7. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/License.txt +1 -1
  8. pyobjc_framework_coreml-11.0/Modules/_CoreML.m +67 -0
  9. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/Modules/pyobjc-api.h +1 -1
  10. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/Modules/pyobjc-compat.h +80 -5
  11. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PKG-INFO +5 -5
  12. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlcomputeplan.py +21 -0
  13. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlcomputeplancost.py +8 -0
  14. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlcomputeplandeviceusage.py +8 -0
  15. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlfeaturetype.py +2 -0
  16. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlmodel_mlstate.py +21 -0
  17. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlmodelasset.py +31 -0
  18. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlmodelstructure.py +15 -0
  19. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlmodelstructureneuralnetwork.py +8 -0
  20. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlmodelstructureneuralnetworklayer.py +8 -0
  21. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlmodelstructurepipeline.py +8 -0
  22. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlmodelstructureprogram.py +8 -0
  23. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlmodelstructureprogramargument.py +8 -0
  24. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlmodelstructureprogrambinding.py +8 -0
  25. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlmodelstructureprogramblock.py +8 -0
  26. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlmodelstructureprogramfunction.py +8 -0
  27. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlmodelstructureprogramnamedvaluetype.py +8 -0
  28. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlmodelstructureprogramoperation.py +8 -0
  29. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlmodelstructureprogramvalue.py +8 -0
  30. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlmodelstructureprogramvaluetype.py +8 -0
  31. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlreshapefrequencyhint.py +9 -0
  32. pyobjc_framework_coreml-11.0/PyObjCTest/test_mlstate.py +10 -0
  33. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/metadata/CoreML.fwinfo +11 -0
  34. pyobjc-framework-CoreML-10.1/metadata/raw/arm64-14.0.fwinfo → pyobjc_framework_coreml-11.0/metadata/raw/arm64-14.5.fwinfo +2607 -1228
  35. pyobjc-framework-CoreML-10.1/metadata/raw/arm64-13.0.fwinfo → pyobjc_framework_coreml-11.0/metadata/raw/arm64-15.0.fwinfo +2772 -653
  36. pyobjc-framework-CoreML-10.1/metadata/raw/x86_64-14.0.fwinfo → pyobjc_framework_coreml-11.0/metadata/raw/x86_64-14.5.fwinfo +2607 -1228
  37. pyobjc-framework-CoreML-10.1/metadata/raw/x86_64-13.0.fwinfo → pyobjc_framework_coreml-11.0/metadata/raw/x86_64-15.0.fwinfo +2772 -653
  38. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/pyobjc_setup.py +121 -27
  39. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/setup.py +1 -3
  40. pyobjc-framework-CoreML-10.1/Lib/CoreML/__init__.py +0 -37
  41. pyobjc-framework-CoreML-10.1/Lib/pyobjc_framework_CoreML.egg-info/requires.txt +0 -2
  42. pyobjc-framework-CoreML-10.1/Modules/_CoreML.m +0 -36
  43. pyobjc-framework-CoreML-10.1/PyObjCTest/test_mlmodelasset.py +0 -11
  44. pyobjc-framework-CoreML-10.1/metadata/raw/arm64-12.1.fwinfo +0 -4249
  45. pyobjc-framework-CoreML-10.1/metadata/raw/x86_64-12.1.fwinfo +0 -4249
  46. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/Lib/pyobjc_framework_CoreML.egg-info/dependency_links.txt +0 -0
  47. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/Lib/pyobjc_framework_CoreML.egg-info/not-zip-safe +0 -0
  48. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/Lib/pyobjc_framework_CoreML.egg-info/top_level.txt +0 -0
  49. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/MANIFEST.in +0 -0
  50. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/Modules/_CoreML_protocols.m +0 -0
  51. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/__init__.py +0 -0
  52. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_coreml.py +0 -0
  53. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlallcomputedevices.py +0 -0
  54. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlbatchprovider.py +0 -0
  55. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlcomputedeviceprotocol.py +0 -0
  56. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlcustomlayer.py +0 -0
  57. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlcustommodel.py +0 -0
  58. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mldictionaryfeatureprovider.py +0 -0
  59. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlfeaturedescription.py +0 -0
  60. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlfeatureprovider.py +0 -0
  61. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlfeaturevalue.py +0 -0
  62. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlfeaturevalue_mlimageconversion.py +0 -0
  63. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlimagesizeconstrainttype.py +0 -0
  64. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlmodel.py +0 -0
  65. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlmodel_mlmodelcompilation.py +0 -0
  66. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlmodelcollection.py +0 -0
  67. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlmodelconfiguration.py +0 -0
  68. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlmodelerror.py +0 -0
  69. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlmodelmetadatakeys.py +0 -0
  70. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlmultiarray.py +0 -0
  71. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlmultiarrayshapeconstrainttype.py +0 -0
  72. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlpredictionoptions.py +0 -0
  73. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mltask.py +0 -0
  74. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlupdateprogressevent.py +0 -0
  75. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlupdateprogresshandlers.py +0 -0
  76. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlupdatetask.py +0 -0
  77. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/PyObjCTest/test_mlwritable.py +0 -0
  78. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/metadata/metadata.ini +0 -0
  79. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/metadata/raw/arm64-12.3.fwinfo +0 -0
  80. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/metadata/raw/arm64-13.3.fwinfo +0 -0
  81. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/metadata/raw/x86_64-10.14.fwinfo +0 -0
  82. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/metadata/raw/x86_64-10.15.fwinfo +0 -0
  83. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/metadata/raw/x86_64-10.16.fwinfo +0 -0
  84. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/metadata/raw/x86_64-12.3.fwinfo +0 -0
  85. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/metadata/raw/x86_64-13.3.fwinfo +0 -0
  86. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/pyproject.toml +0 -0
  87. {pyobjc-framework-CoreML-10.1 → pyobjc_framework_coreml-11.0}/setup.cfg +0 -0
@@ -0,0 +1,120 @@
1
+ """
2
+ Python mapping for the CoreML framework.
3
+
4
+ This module does not contain docstrings for the wrapped code, check Apple's
5
+ documentation for details on how to use these functions and classes.
6
+ """
7
+
8
+
9
+ def _setup():
10
+ import sys
11
+
12
+ import Foundation
13
+ import objc
14
+ from . import _metadata, _CoreML
15
+
16
+ dir_func, getattr_func = objc.createFrameworkDirAndGetattr(
17
+ name="CoreML",
18
+ frameworkIdentifier="com.apple.CoreML",
19
+ frameworkPath=objc.pathForFramework(
20
+ "/System/Library/Frameworks/CoreML.framework"
21
+ ),
22
+ globals_dict=globals(),
23
+ inline_list=None,
24
+ parents=(
25
+ _CoreML,
26
+ Foundation,
27
+ ),
28
+ metadict=_metadata.__dict__,
29
+ )
30
+
31
+ globals()["__dir__"] = dir_func
32
+ globals()["__getattr__"] = getattr_func
33
+
34
+ for clsname in (
35
+ "MLComputePlan",
36
+ "MLComputePlanCost",
37
+ "MLComputePlanDeviceUsage",
38
+ "MLModelStructureNeuralNetwork",
39
+ "MLModelStructurePipeline",
40
+ "MLModelStructureProgram",
41
+ "MLModelStructureProgramArgument",
42
+ "MLModelStructureProgramBinding",
43
+ "MLModelStructureProgramBlock",
44
+ "MLModelStructureProgramFunction",
45
+ "MLModelStructureProgramNamedValueType",
46
+ "MLModelStructureProgramOperation",
47
+ "MLModelStructureProgramValue",
48
+ "MLModelStructureProgramValueType",
49
+ "MLState",
50
+ ):
51
+ try:
52
+ objc.lookUpClass(clsname).__objc_final__ = True
53
+ except objc.error:
54
+ pass
55
+
56
+ for cls, sel in (
57
+ ("MLMetricKey", b"init"),
58
+ ("MLMetricKey", b"new"),
59
+ ("MLModelStructureProgramValue", b"init"),
60
+ ("MLModelStructureProgramValue", b"new"),
61
+ ("MLGPUComputeDevice", b"init"),
62
+ ("MLGPUComputeDevice", b"new"),
63
+ ("MLComputePlanDeviceUsage", b"init"),
64
+ ("MLComputePlanDeviceUsage", b"new"),
65
+ ("MLCPUComputeDevice", b"init"),
66
+ ("MLCPUComputeDevice", b"new"),
67
+ ("MLModelStructure", b"init"),
68
+ ("MLModelStructure", b"new"),
69
+ ("MLUpdateProgressHandlers", b"init"),
70
+ ("MLUpdateProgressHandlers", b"new"),
71
+ ("MLModelCollection", b"init"),
72
+ ("MLModelCollection", b"new"),
73
+ ("MLModelStructureProgramNamedValueType", b"init"),
74
+ ("MLModelStructureProgramNamedValueType", b"new"),
75
+ ("MLUpdateTask", b"init"),
76
+ ("MLUpdateTask", b"new"),
77
+ ("MLModelCollectionEntry", b"init"),
78
+ ("MLModelCollectionEntry", b"new"),
79
+ ("MLModelStructureProgramFunction", b"init"),
80
+ ("MLModelStructureProgramFunction", b"new"),
81
+ ("MLModelStructureProgram", b"init"),
82
+ ("MLModelStructureProgram", b"new"),
83
+ ("MLComputePlan", b"init"),
84
+ ("MLComputePlan", b"new"),
85
+ ("MLParameterKey", b"init"),
86
+ ("MLParameterKey", b"new"),
87
+ ("MLModelStructureProgramBinding", b"init"),
88
+ ("MLModelStructureProgramBinding", b"new"),
89
+ ("MLModelAsset", b"init"),
90
+ ("MLModelAsset", b"new"),
91
+ ("MLModelStructureProgramArgument", b"init"),
92
+ ("MLModelStructureProgramArgument", b"new"),
93
+ ("MLModelStructureProgramOperation", b"init"),
94
+ ("MLModelStructureProgramOperation", b"new"),
95
+ ("MLComputePlanCost", b"init"),
96
+ ("MLComputePlanCost", b"new"),
97
+ ("MLModelStructureNeuralNetwork", b"init"),
98
+ ("MLModelStructureNeuralNetwork", b"new"),
99
+ ("MLNeuralEngineComputeDevice", b"init"),
100
+ ("MLNeuralEngineComputeDevice", b"new"),
101
+ ("MLTask", b"init"),
102
+ ("MLTask", b"new"),
103
+ ("MLModelStructureNeuralNetworkLayer", b"init"),
104
+ ("MLModelStructureNeuralNetworkLayer", b"new"),
105
+ ("MLKey", b"init"),
106
+ ("MLKey", b"new"),
107
+ ("MLModelStructureProgramBlock", b"init"),
108
+ ("MLModelStructureProgramBlock", b"new"),
109
+ ("MLImageConstraint", b"init"),
110
+ ("MLModelStructurePipeline", b"init"),
111
+ ("MLModelStructurePipeline", b"new"),
112
+ ("MLModelStructureProgramValueType", b"init"),
113
+ ("MLModelStructureProgramValueType", b"new"),
114
+ ):
115
+ objc.registerUnavailableMethod(cls, sel)
116
+
117
+ del sys.modules["CoreML._metadata"]
118
+
119
+
120
+ globals().pop("_setup")()
@@ -1,6 +1,6 @@
1
1
  # This file is generated by objective.metadata
2
2
  #
3
- # Last update: Sat Jul 1 14:11:45 2023
3
+ # Last update: Fri Jun 28 13:35:34 2024
4
4
  #
5
5
  # flake8: noqa
6
6
 
@@ -31,19 +31,21 @@ else:
31
31
 
32
32
  misc = {}
33
33
  constants = """$MLFeatureValueImageOptionCropAndScale$MLFeatureValueImageOptionCropRect$MLModelAuthorKey$MLModelCollectionDidChangeNotification$MLModelCreatorDefinedKey$MLModelDescriptionKey$MLModelErrorDomain$MLModelLicenseKey$MLModelVersionStringKey$"""
34
- enums = """$MLComputeUnitsAll@2$MLComputeUnitsCPUAndGPU@1$MLComputeUnitsCPUAndNeuralEngine@3$MLComputeUnitsCPUOnly@0$MLFeatureTypeDictionary@6$MLFeatureTypeDouble@2$MLFeatureTypeImage@4$MLFeatureTypeInt64@1$MLFeatureTypeInvalid@0$MLFeatureTypeMultiArray@5$MLFeatureTypeSequence@7$MLFeatureTypeString@3$MLImageSizeConstraintTypeEnumerated@2$MLImageSizeConstraintTypeRange@3$MLImageSizeConstraintTypeUnspecified@0$MLModelErrorCustomLayer@4$MLModelErrorCustomModel@5$MLModelErrorFeatureType@1$MLModelErrorGeneric@0$MLModelErrorIO@3$MLModelErrorModelCollection@10$MLModelErrorModelDecryption@9$MLModelErrorModelDecryptionKeyFetch@8$MLModelErrorParameters@7$MLModelErrorPredictionCancelled@11$MLModelErrorUpdate@6$MLMultiArrayDataTypeDouble@65600$MLMultiArrayDataTypeFloat@65568$MLMultiArrayDataTypeFloat16@65552$MLMultiArrayDataTypeFloat32@65568$MLMultiArrayDataTypeFloat64@65600$MLMultiArrayDataTypeInt32@131104$MLMultiArrayShapeConstraintTypeEnumerated@2$MLMultiArrayShapeConstraintTypeRange@3$MLMultiArrayShapeConstraintTypeUnspecified@1$MLTaskStateCancelling@3$MLTaskStateCompleted@4$MLTaskStateFailed@5$MLTaskStateRunning@2$MLTaskStateSuspended@1$MLUpdateProgressEventEpochEnd@2$MLUpdateProgressEventMiniBatchEnd@4$MLUpdateProgressEventTrainingBegin@1$"""
34
+ enums = """$MLComputeUnitsAll@2$MLComputeUnitsCPUAndGPU@1$MLComputeUnitsCPUAndNeuralEngine@3$MLComputeUnitsCPUOnly@0$MLFeatureTypeDictionary@6$MLFeatureTypeDouble@2$MLFeatureTypeImage@4$MLFeatureTypeInt64@1$MLFeatureTypeInvalid@0$MLFeatureTypeMultiArray@5$MLFeatureTypeSequence@7$MLFeatureTypeState@8$MLFeatureTypeString@3$MLImageSizeConstraintTypeEnumerated@2$MLImageSizeConstraintTypeRange@3$MLImageSizeConstraintTypeUnspecified@0$MLModelErrorCustomLayer@4$MLModelErrorCustomModel@5$MLModelErrorFeatureType@1$MLModelErrorGeneric@0$MLModelErrorIO@3$MLModelErrorModelCollection@10$MLModelErrorModelDecryption@9$MLModelErrorModelDecryptionKeyFetch@8$MLModelErrorParameters@7$MLModelErrorPredictionCancelled@11$MLModelErrorUpdate@6$MLMultiArrayDataTypeDouble@65600$MLMultiArrayDataTypeFloat@65568$MLMultiArrayDataTypeFloat16@65552$MLMultiArrayDataTypeFloat32@65568$MLMultiArrayDataTypeFloat64@65600$MLMultiArrayDataTypeInt32@131104$MLMultiArrayShapeConstraintTypeEnumerated@2$MLMultiArrayShapeConstraintTypeRange@3$MLMultiArrayShapeConstraintTypeUnspecified@1$MLReshapeFrequencyHintFrequent@0$MLReshapeFrequencyHintInfrequent@1$MLSpecializationStrategyDefault@0$MLSpecializationStrategyFastPrediction@1$MLTaskStateCancelling@3$MLTaskStateCompleted@4$MLTaskStateFailed@5$MLTaskStateRunning@2$MLTaskStateSuspended@1$MLUpdateProgressEventEpochEnd@2$MLUpdateProgressEventMiniBatchEnd@4$MLUpdateProgressEventTrainingBegin@1$"""
35
35
  misc.update(
36
36
  {
37
37
  "MLMultiArrayDataType": NewType("MLMultiArrayDataType", int),
38
38
  "MLMultiArrayShapeConstraintType": NewType(
39
39
  "MLMultiArrayShapeConstraintType", int
40
40
  ),
41
+ "MLSpecializationStrategy": NewType("MLSpecializationStrategy", int),
41
42
  "MLImageSizeConstraintType": NewType("MLImageSizeConstraintType", int),
42
43
  "MLTaskState": NewType("MLTaskState", int),
43
44
  "MLUpdateProgressEvent": NewType("MLUpdateProgressEvent", int),
44
45
  "MLFeatureType": NewType("MLFeatureType", int),
45
46
  "MLModelError": NewType("MLModelError", int),
46
47
  "MLComputeUnits": NewType("MLComputeUnits", int),
48
+ "MLReshapeFrequencyHint": NewType("MLReshapeFrequencyHint", int),
47
49
  }
48
50
  )
49
51
  misc.update(
@@ -62,6 +64,42 @@ try:
62
64
  b"initWithDictionary:error:",
63
65
  {"arguments": {3: {"type_modifier": b"o"}}},
64
66
  )
67
+ r(
68
+ b"MLComputePlan",
69
+ b"loadContentsOfURL:configuration:completionHandler:",
70
+ {
71
+ "arguments": {
72
+ 4: {
73
+ "callable": {
74
+ "retval": {"type": b"v"},
75
+ "arguments": {
76
+ 0: {"type": b"^v"},
77
+ 1: {"type": b"@"},
78
+ 2: {"type": b"@"},
79
+ },
80
+ }
81
+ }
82
+ }
83
+ },
84
+ )
85
+ r(
86
+ b"MLComputePlan",
87
+ b"loadModelAsset:configuration:completionHandler:",
88
+ {
89
+ "arguments": {
90
+ 4: {
91
+ "callable": {
92
+ "retval": {"type": b"v"},
93
+ "arguments": {
94
+ 0: {"type": b"^v"},
95
+ 1: {"type": b"@"},
96
+ 2: {"type": b"@"},
97
+ },
98
+ }
99
+ }
100
+ }
101
+ },
102
+ )
65
103
  r(
66
104
  b"MLDictionaryFeatureProvider",
67
105
  b"initWithDictionary:error:",
@@ -237,6 +275,34 @@ try:
237
275
  b"predictionFromFeatures:options:error:",
238
276
  {"arguments": {4: {"type_modifier": b"o"}}},
239
277
  )
278
+ r(
279
+ b"MLModel",
280
+ b"predictionFromFeatures:usingState:error:",
281
+ {"arguments": {4: {"type_modifier": b"o"}}},
282
+ )
283
+ r(
284
+ b"MLModel",
285
+ b"predictionFromFeatures:usingState:options:completionHandler:",
286
+ {
287
+ "arguments": {
288
+ 5: {
289
+ "callable": {
290
+ "retval": {"type": b"v"},
291
+ "arguments": {
292
+ 0: {"type": b"^v"},
293
+ 1: {"type": b"@"},
294
+ 2: {"type": b"@"},
295
+ },
296
+ }
297
+ }
298
+ }
299
+ },
300
+ )
301
+ r(
302
+ b"MLModel",
303
+ b"predictionFromFeatures:usingState:options:error:",
304
+ {"arguments": {5: {"type_modifier": b"o"}}},
305
+ )
240
306
  r(
241
307
  b"MLModel",
242
308
  b"predictionsFromBatch:error:",
@@ -247,11 +313,80 @@ try:
247
313
  b"predictionsFromBatch:options:error:",
248
314
  {"arguments": {4: {"type_modifier": b"o"}}},
249
315
  )
316
+ r(
317
+ b"MLModelAsset",
318
+ b"functionNamesWithCompletionHandler:",
319
+ {
320
+ "arguments": {
321
+ 2: {
322
+ "callable": {
323
+ "retval": {"type": b"v"},
324
+ "arguments": {
325
+ 0: {"type": b"^v"},
326
+ 1: {"type": b"@"},
327
+ 2: {"type": b"@"},
328
+ },
329
+ }
330
+ }
331
+ }
332
+ },
333
+ )
334
+ r(
335
+ b"MLModelAsset",
336
+ b"modelAssetWithSpecificationData:blobMapping:error",
337
+ {"arguments": {4: {"type_modifier": b"o"}}},
338
+ )
339
+ r(
340
+ b"MLModelAsset",
341
+ b"modelAssetWithSpecificationData:blobMapping:error:",
342
+ {"arguments": {4: {"type_modifier": b"o"}}},
343
+ )
250
344
  r(
251
345
  b"MLModelAsset",
252
346
  b"modelAssetWithSpecificationData:error:",
253
347
  {"arguments": {3: {"type_modifier": b"o"}}},
254
348
  )
349
+ r(
350
+ b"MLModelAsset",
351
+ b"modelAssetWithURL:error:",
352
+ {"arguments": {3: {"type_modifier": b"o"}}},
353
+ )
354
+ r(
355
+ b"MLModelAsset",
356
+ b"modelDescriptionOfFunctionNamed:completionHandler:",
357
+ {
358
+ "arguments": {
359
+ 3: {
360
+ "callable": {
361
+ "retval": {"type": b"v"},
362
+ "arguments": {
363
+ 0: {"type": b"^v"},
364
+ 1: {"type": b"@"},
365
+ 2: {"type": b"@"},
366
+ },
367
+ }
368
+ }
369
+ }
370
+ },
371
+ )
372
+ r(
373
+ b"MLModelAsset",
374
+ b"modelDescriptionWithCompletionHandler:",
375
+ {
376
+ "arguments": {
377
+ 2: {
378
+ "callable": {
379
+ "retval": {"type": b"v"},
380
+ "arguments": {
381
+ 0: {"type": b"^v"},
382
+ 1: {"type": b"@"},
383
+ 2: {"type": b"@"},
384
+ },
385
+ }
386
+ }
387
+ }
388
+ },
389
+ )
255
390
  r(
256
391
  b"MLModelCollection",
257
392
  b"beginAccessingModelCollectionWithIdentifier:completionHandler:",
@@ -304,6 +439,42 @@ try:
304
439
  {"arguments": {2: {"type": "Z"}}},
305
440
  )
306
441
  r(b"MLModelDescription", b"isUpdatable", {"retval": {"type": b"Z"}})
442
+ r(
443
+ b"MLModelStructure",
444
+ b"loadContentsOfURL:completionHandler:",
445
+ {
446
+ "arguments": {
447
+ 3: {
448
+ "callable": {
449
+ "retval": {"type": b"v"},
450
+ "arguments": {
451
+ 0: {"type": b"^v"},
452
+ 1: {"type": b"@"},
453
+ 2: {"type": b"@"},
454
+ },
455
+ }
456
+ }
457
+ }
458
+ },
459
+ )
460
+ r(
461
+ b"MLModelStructure",
462
+ b"loadModelAsset:completionHandler:",
463
+ {
464
+ "arguments": {
465
+ 3: {
466
+ "callable": {
467
+ "retval": {"type": b"v"},
468
+ "arguments": {
469
+ 0: {"type": b"^v"},
470
+ 1: {"type": b"@"},
471
+ 2: {"type": b"@"},
472
+ },
473
+ }
474
+ }
475
+ }
476
+ },
477
+ )
307
478
  r(b"MLMultiArray", b"dataPointer", {"retval": {"c_array_of_variable_length": True}})
308
479
  r(
309
480
  b"MLMultiArray",
@@ -367,6 +538,20 @@ try:
367
538
  )
368
539
  r(b"MLPredictionOptions", b"setUsesCPUOnly:", {"arguments": {2: {"type": "Z"}}})
369
540
  r(b"MLPredictionOptions", b"usesCPUOnly", {"retval": {"type": "Z"}})
541
+ r(
542
+ b"MLState",
543
+ b"getMultiArrayForStateNamed:handler:",
544
+ {
545
+ "arguments": {
546
+ 3: {
547
+ "callable": {
548
+ "retval": {"type": b"v"},
549
+ "arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
550
+ }
551
+ }
552
+ }
553
+ },
554
+ )
370
555
  r(
371
556
  b"MLUpdateProgressHandlers",
372
557
  b"initForEvents:progressHandler:completionHandler:",
@@ -437,11 +622,7 @@ try:
437
622
  b"updateTaskForModelAtURL:trainingData:progressHandlers:error:",
438
623
  {"arguments": {5: {"type_modifier": b"o"}}},
439
624
  )
440
- r(
441
- b"NSObject",
442
- b"count",
443
- {"required": True, "retval": {"type": sel32or64(b"i", b"q")}},
444
- )
625
+ r(b"NSObject", b"count", {"required": True, "retval": {"type": "q"}})
445
626
  r(
446
627
  b"NSObject",
447
628
  b"encodeToCommandBuffer:inputs:outputs:error:",
@@ -488,11 +669,7 @@ try:
488
669
  r(
489
670
  b"NSObject",
490
671
  b"featuresAtIndex:",
491
- {
492
- "required": True,
493
- "retval": {"type": b"@"},
494
- "arguments": {2: {"type": sel32or64(b"i", b"q")}},
495
- },
672
+ {"required": True, "retval": {"type": b"@"}, "arguments": {2: {"type": "q"}}},
496
673
  )
497
674
  r(
498
675
  b"NSObject",
@@ -618,6 +795,25 @@ try:
618
795
  )
619
796
  finally:
620
797
  objc._updatingMetadata(False)
798
+
799
+ objc.registerNewKeywordsFromSelector(
800
+ "MLArrayBatchProvider", b"initWithDictionary:error:"
801
+ )
802
+ objc.registerNewKeywordsFromSelector(
803
+ "MLArrayBatchProvider", b"initWithFeatureProviderArray:"
804
+ )
805
+ objc.registerNewKeywordsFromSelector(
806
+ "MLDictionaryFeatureProvider", b"initWithDictionary:error:"
807
+ )
808
+ objc.registerNewKeywordsFromSelector(
809
+ "MLMultiArray", b"initWithDataPointer:shape:dataType:strides:deallocator:error:"
810
+ )
811
+ objc.registerNewKeywordsFromSelector("MLMultiArray", b"initWithPixelBuffer:shape:")
812
+ objc.registerNewKeywordsFromSelector("MLMultiArray", b"initWithShape:dataType:error:")
813
+ objc.registerNewKeywordsFromSelector("MLMultiArray", b"initWithShape:dataType:strides:")
814
+ objc.registerNewKeywordsFromSelector(
815
+ "MLUpdateProgressHandlers", b"initForEvents:progressHandler:completionHandler:"
816
+ )
621
817
  expressions = {}
622
818
 
623
819
  # END OF FILE
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyobjc-framework-CoreML
3
- Version: 10.1
3
+ Version: 11.0
4
4
  Summary: Wrappers for the framework CoreML on macOS
5
5
  Home-page: https://github.com/ronaldoussoren/pyobjc
6
6
  Author: Ronald Oussoren
@@ -18,20 +18,20 @@ Classifier: Operating System :: MacOS :: MacOS X
18
18
  Classifier: Programming Language :: Python
19
19
  Classifier: Programming Language :: Python :: 3
20
20
  Classifier: Programming Language :: Python :: 3 :: Only
21
- Classifier: Programming Language :: Python :: 3.8
22
21
  Classifier: Programming Language :: Python :: 3.9
23
22
  Classifier: Programming Language :: Python :: 3.10
24
23
  Classifier: Programming Language :: Python :: 3.11
25
24
  Classifier: Programming Language :: Python :: 3.12
26
25
  Classifier: Programming Language :: Python :: 3.13
26
+ Classifier: Programming Language :: Python :: 3.14
27
27
  Classifier: Programming Language :: Python :: Implementation :: CPython
28
28
  Classifier: Programming Language :: Objective C
29
29
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
30
30
  Classifier: Topic :: Software Development :: User Interfaces
31
- Requires-Python: >=3.8
31
+ Requires-Python: >=3.9
32
32
  Description-Content-Type: text/x-rst; charset=UTF-8
33
- Requires-Dist: pyobjc-core>=10.1
34
- Requires-Dist: pyobjc-framework-Cocoa>=10.1
33
+ Requires-Dist: pyobjc-core>=11.0
34
+ Requires-Dist: pyobjc-framework-Cocoa>=11.0
35
35
  Project-URL: Documentation, https://pyobjc.readthedocs.io/en/latest/
36
36
  Project-URL: Issue tracker, https://github.com/ronaldoussoren/pyobjc/issues
37
37
  Project-URL: Repository, https://github.com/ronaldoussoren/pyobjc
@@ -9,6 +9,7 @@ Lib/pyobjc_framework_CoreML.egg-info/PKG-INFO
9
9
  Lib/pyobjc_framework_CoreML.egg-info/SOURCES.txt
10
10
  Lib/pyobjc_framework_CoreML.egg-info/dependency_links.txt
11
11
  Lib/pyobjc_framework_CoreML.egg-info/not-zip-safe
12
+ Lib/pyobjc_framework_CoreML.egg-info/pyobjc-build-info.txt
12
13
  Lib/pyobjc_framework_CoreML.egg-info/requires.txt
13
14
  Lib/pyobjc_framework_CoreML.egg-info/top_level.txt
14
15
  Modules/_CoreML.m
@@ -20,6 +21,9 @@ PyObjCTest/test_coreml.py
20
21
  PyObjCTest/test_mlallcomputedevices.py
21
22
  PyObjCTest/test_mlbatchprovider.py
22
23
  PyObjCTest/test_mlcomputedeviceprotocol.py
24
+ PyObjCTest/test_mlcomputeplan.py
25
+ PyObjCTest/test_mlcomputeplancost.py
26
+ PyObjCTest/test_mlcomputeplandeviceusage.py
23
27
  PyObjCTest/test_mlcustomlayer.py
24
28
  PyObjCTest/test_mlcustommodel.py
25
29
  PyObjCTest/test_mldictionaryfeatureprovider.py
@@ -31,14 +35,30 @@ PyObjCTest/test_mlfeaturevalue_mlimageconversion.py
31
35
  PyObjCTest/test_mlimagesizeconstrainttype.py
32
36
  PyObjCTest/test_mlmodel.py
33
37
  PyObjCTest/test_mlmodel_mlmodelcompilation.py
38
+ PyObjCTest/test_mlmodel_mlstate.py
34
39
  PyObjCTest/test_mlmodelasset.py
35
40
  PyObjCTest/test_mlmodelcollection.py
36
41
  PyObjCTest/test_mlmodelconfiguration.py
37
42
  PyObjCTest/test_mlmodelerror.py
38
43
  PyObjCTest/test_mlmodelmetadatakeys.py
44
+ PyObjCTest/test_mlmodelstructure.py
45
+ PyObjCTest/test_mlmodelstructureneuralnetwork.py
46
+ PyObjCTest/test_mlmodelstructureneuralnetworklayer.py
47
+ PyObjCTest/test_mlmodelstructurepipeline.py
48
+ PyObjCTest/test_mlmodelstructureprogram.py
49
+ PyObjCTest/test_mlmodelstructureprogramargument.py
50
+ PyObjCTest/test_mlmodelstructureprogrambinding.py
51
+ PyObjCTest/test_mlmodelstructureprogramblock.py
52
+ PyObjCTest/test_mlmodelstructureprogramfunction.py
53
+ PyObjCTest/test_mlmodelstructureprogramnamedvaluetype.py
54
+ PyObjCTest/test_mlmodelstructureprogramoperation.py
55
+ PyObjCTest/test_mlmodelstructureprogramvalue.py
56
+ PyObjCTest/test_mlmodelstructureprogramvaluetype.py
39
57
  PyObjCTest/test_mlmultiarray.py
40
58
  PyObjCTest/test_mlmultiarrayshapeconstrainttype.py
41
59
  PyObjCTest/test_mlpredictionoptions.py
60
+ PyObjCTest/test_mlreshapefrequencyhint.py
61
+ PyObjCTest/test_mlstate.py
42
62
  PyObjCTest/test_mltask.py
43
63
  PyObjCTest/test_mlupdateprogressevent.py
44
64
  PyObjCTest/test_mlupdateprogresshandlers.py
@@ -46,16 +66,14 @@ PyObjCTest/test_mlupdatetask.py
46
66
  PyObjCTest/test_mlwritable.py
47
67
  metadata/CoreML.fwinfo
48
68
  metadata/metadata.ini
49
- metadata/raw/arm64-12.1.fwinfo
50
69
  metadata/raw/arm64-12.3.fwinfo
51
- metadata/raw/arm64-13.0.fwinfo
52
70
  metadata/raw/arm64-13.3.fwinfo
53
- metadata/raw/arm64-14.0.fwinfo
71
+ metadata/raw/arm64-14.5.fwinfo
72
+ metadata/raw/arm64-15.0.fwinfo
54
73
  metadata/raw/x86_64-10.14.fwinfo
55
74
  metadata/raw/x86_64-10.15.fwinfo
56
75
  metadata/raw/x86_64-10.16.fwinfo
57
- metadata/raw/x86_64-12.1.fwinfo
58
76
  metadata/raw/x86_64-12.3.fwinfo
59
- metadata/raw/x86_64-13.0.fwinfo
60
77
  metadata/raw/x86_64-13.3.fwinfo
61
- metadata/raw/x86_64-14.0.fwinfo
78
+ metadata/raw/x86_64-14.5.fwinfo
79
+ metadata/raw/x86_64-15.0.fwinfo
@@ -0,0 +1,3 @@
1
+ macOS 15.3 (24D5040f)
2
+ Apple clang version 16.0.0 (clang-1600.0.26.6)
3
+ SDK: macOS 15.2
@@ -0,0 +1,2 @@
1
+ pyobjc-core>=11.0
2
+ pyobjc-framework-Cocoa>=11.0
@@ -1,7 +1,7 @@
1
1
  (This is the MIT license, note that libffi-src is a separate product with its own license)
2
2
 
3
3
  Copyright 2002, 2003 - Bill Bumgarner, Ronald Oussoren, Steve Majewski, Lele Gaifax, et.al.
4
- Copyright 2003-2022 - Ronald Oussoren
4
+ Copyright 2003-2024 - Ronald Oussoren
5
5
 
6
6
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
7
7
 
@@ -0,0 +1,67 @@
1
+ #define PY_SSIZE_T_CLEAN
2
+ #include "Python.h"
3
+ #include "pyobjc-api.h"
4
+
5
+ #import <CoreML/CoreML.h>
6
+ #import <Foundation/Foundation.h>
7
+
8
+ /* We include the source code here instead of
9
+ * using the linker due to limitations in pyobjc-api.h
10
+ */
11
+ #include "_CoreML_protocols.m"
12
+
13
+ static PyMethodDef mod_methods[] = {
14
+ {0, 0, 0, 0} /* sentinel */
15
+ };
16
+
17
+ static int mod_exec_module(PyObject* m)
18
+ {
19
+ return 0;
20
+ }
21
+
22
+ static struct PyModuleDef_Slot mod_slots[] = {
23
+ {
24
+ .slot = Py_mod_exec,
25
+ .value = (void*)mod_exec_module
26
+ },
27
+ #if PY_VERSION_HEX >= 0x030c0000
28
+ {
29
+ /* This extension does not use the CPython API other than initializing
30
+ * the module, hence is safe with subinterpreters and per-interpreter
31
+ * GILs
32
+ */
33
+ .slot = Py_mod_multiple_interpreters,
34
+ .value = Py_MOD_PER_INTERPRETER_GIL_SUPPORTED,
35
+ },
36
+ #endif
37
+ #if PY_VERSION_HEX >= 0x030d0000
38
+ {
39
+ /* The code in this extension should be safe to use without the GIL */
40
+ .slot = Py_mod_gil,
41
+ .value = Py_MOD_GIL_NOT_USED,
42
+ },
43
+ #endif
44
+ { /* Sentinel */
45
+ .slot = 0,
46
+ .value = 0
47
+ }
48
+ };
49
+
50
+ static struct PyModuleDef mod_module = {
51
+ .m_base = PyModuleDef_HEAD_INIT,
52
+ .m_name = "_CoreML",
53
+ .m_doc = NULL,
54
+ .m_size = 0,
55
+ .m_methods = mod_methods,
56
+ .m_slots = mod_slots,
57
+ .m_traverse = NULL,
58
+ .m_clear = NULL,
59
+ .m_free = NULL,
60
+ };
61
+
62
+ PyObject* PyInit__CoreML(void);
63
+
64
+ PyObject* __attribute__((__visibility__("default"))) PyInit__CoreML(void)
65
+ {
66
+ return PyModuleDef_Init(&mod_module);
67
+ }
@@ -83,7 +83,7 @@ struct pyobjc_api {
83
83
  PyObject* _Nullable (*_Nonnull unsupported_method_caller)(
84
84
  PyObject* _Nonnull, PyObject* _Nonnull, PyObject* _Nonnull const* _Nonnull,
85
85
  size_t);
86
- void (*_Nonnull err_python_to_objc_gil)(PyGILState_STATE* _Nonnull state);
86
+ void (*_Nonnull err_python_to_objc_gil)(PyGILState_STATE* _Nonnull state) __attribute__((__noreturn__));
87
87
  int (*_Nonnull simplify_sig)(const char* signature, char* buf, size_t buflen);
88
88
  void (*_Nonnull free_c_array)(int, Py_buffer*);
89
89
  int (*_Nonnull py_to_c_array)(BOOL, BOOL, const char* _Nonnull, PyObject* _Nonnull,