1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
use crate::{GraphObject, PaddingStyle, TensorNamedDataLayout};
use objc2::{
extern_class, extern_conformance, extern_methods,
rc::{Allocated, Retained},
runtime::NSObject,
};
use objc2_foundation::{CopyingHelper, NSCopying, NSObjectProtocol};
extern_class!(
/// A class that describes the properties of a 2D-convolution operator.
///
/// Use an instance of this class is to add a 2D-convolution operator with the desired properties to the graph.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/metalperformanceshadersgraph/mpsgraphconvolution2dopdescriptor?language=objc)
#[unsafe(super(GraphObject, NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct Convolution2DOpDescriptor;
);
extern_conformance!(
unsafe impl NSCopying for Convolution2DOpDescriptor {}
);
unsafe impl CopyingHelper for Convolution2DOpDescriptor {
type Result = Self;
}
extern_conformance!(
unsafe impl NSObjectProtocol for Convolution2DOpDescriptor {}
);
impl Convolution2DOpDescriptor {
extern_methods!(
/// Returns the scale that maps the destination `x`-coordinate to the source
/// `x`-coordinate.
///
/// # Details
///
/// The source coordinate `sx` is computed from the destination coordinate
/// `dx` as `sx = strideInX * dx`.
/// The default value is `1`.
///
/// # Returns
///
/// The scale factor applied to the `x` dimension.
#[unsafe(method(strideInX))]
#[unsafe(method_family = none)]
pub fn stride_in_x(&self) -> u64;
/// Sets the [`stride_in_x`](Self::stride_in_x) property.
///
/// # Arguments
///
/// * `stride_in_x` – The new scale factor.
#[unsafe(method(setStrideInX:))]
#[unsafe(method_family = none)]
pub fn set_stride_in_x(&self, stride_in_x: u64);
/// Returns the scale that maps the destination `y`-coordinate to the source
/// `y`-coordinate.
///
/// # Details
///
/// The source coordinate `sy` is computed from the destination coordinate
/// `dy` as `sy = strideInY * dy`.
/// The default value is `1`.
///
/// # Returns
///
/// The scale factor applied to the `y` dimension.
#[unsafe(method(strideInY))]
#[unsafe(method_family = none)]
pub fn stride_in_y(&self) -> u64;
/// Sets the [`stride_in_y`](Self::stride_in_y) property.
///
/// # Arguments
///
/// * `stride_in_y` – The new scale factor.
#[unsafe(method(setStrideInY:))]
#[unsafe(method_family = none)]
pub fn set_stride_in_y(&self, stride_in_y: u64);
/// Returns the amount by which the weights tensor expands in the `x` direction.
///
/// # Details
///
/// Expansion is achieved by inserting `dilationRateInX - 1` zeros between consecutive values
/// in the `x` dimension of the weights tensor. The resulting dilated width is
/// `(dilationRateInX - 1) * kernelWidth + 1`.
/// The default value is `1`.
///
/// # Returns
///
/// The dilation rate along the `x` axis.
#[unsafe(method(dilationRateInX))]
#[unsafe(method_family = none)]
pub fn dilation_rate_in_x(&self) -> u64;
/// Sets the [`dilation_rate_in_x`](Self::dilation_rate_in_x) property.
///
/// # Arguments
///
/// * `dilation_rate_in_x` – The new dilation rate.
#[unsafe(method(setDilationRateInX:))]
#[unsafe(method_family = none)]
pub fn set_dilation_rate_in_x(&self, dilation_rate_in_x: u64);
/// Returns the amount by which the weights tensor expands in the `y` direction.
///
/// # Details
///
/// Expansion is achieved by inserting `dilationRateInY - 1` zeros between consecutive values
/// in the `y` dimension of the weights tensor. The resulting dilated height is
/// `(dilationRateInY - 1) * kernelHeight + 1`.
/// The default value is `1`.
///
/// # Returns
///
/// The dilation rate along the `y` axis.
#[unsafe(method(dilationRateInY))]
#[unsafe(method_family = none)]
pub fn dilation_rate_in_y(&self) -> u64;
/// Sets the [`dilation_rate_in_y`](Self::dilation_rate_in_y) property.
///
/// # Arguments
///
/// * `dilation_rate_in_y` – The new dilation rate.
#[unsafe(method(setDilationRateInY:))]
#[unsafe(method_family = none)]
pub fn set_dilation_rate_in_y(&self, dilation_rate_in_y: u64);
/// Returns the number of zeros added to the left side of the source tensor.
///
/// # Returns
///
/// The left padding value.
#[unsafe(method(paddingLeft))]
#[unsafe(method_family = none)]
pub fn padding_left(&self) -> u64;
/// Sets the [`padding_left`](Self::padding_left) property.
///
/// # Arguments
///
/// * `padding_left` – Number of zeros to add on the left.
#[unsafe(method(setPaddingLeft:))]
#[unsafe(method_family = none)]
pub fn set_padding_left(&self, padding_left: u64);
/// Returns the number of zeros added to the right side of the source tensor.
///
/// # Returns
///
/// The right padding value.
#[unsafe(method(paddingRight))]
#[unsafe(method_family = none)]
pub fn padding_right(&self) -> u64;
/// Sets the [`padding_right`](Self::padding_right) property.
///
/// # Arguments
///
/// * `padding_right` – Number of zeros to add on the right.
#[unsafe(method(setPaddingRight:))]
#[unsafe(method_family = none)]
pub fn set_padding_right(&self, padding_right: u64);
/// Returns the number of zeros added to the top of the source tensor.
///
/// # Returns
///
/// The top padding value.
#[unsafe(method(paddingTop))]
#[unsafe(method_family = none)]
pub fn padding_top(&self) -> u64;
/// Sets the [`padding_top`](Self::padding_top) property.
///
/// # Arguments
///
/// * `padding_top` – Number of zeros to add on the top.
#[unsafe(method(setPaddingTop:))]
#[unsafe(method_family = none)]
pub fn set_padding_top(&self, padding_top: u64);
/// Returns the number of zeros added to the bottom of the source tensor.
///
/// # Returns
///
/// The bottom padding value.
#[unsafe(method(paddingBottom))]
#[unsafe(method_family = none)]
pub fn padding_bottom(&self) -> u64;
/// Sets the [`padding_bottom`](Self::padding_bottom) property.
///
/// # Arguments
///
/// * `padding_bottom` – Number of zeros to add on the bottom.
#[unsafe(method(setPaddingBottom:))]
#[unsafe(method_family = none)]
pub fn set_padding_bottom(&self, padding_bottom: u64);
/// Returns the padding style applied to the source tensor.
///
/// # Details
///
/// If the style is [`PaddingStyle::Explicit`], the individual padding
/// values (`padding_left`, `padding_right`, `padding_top`,
/// `padding_bottom`) must be specified. For all other styles, the
/// framework computes these values automatically.
///
/// # Returns
///
/// The selected [`PaddingStyle`].
#[unsafe(method(paddingStyle))]
#[unsafe(method_family = none)]
pub fn padding_style(&self) -> PaddingStyle;
/// Sets the [`padding_style`](Self::padding_style) property.
///
/// # Arguments
///
/// * `padding_style` – The new padding style.
#[unsafe(method(setPaddingStyle:))]
#[unsafe(method_family = none)]
pub fn set_padding_style(&self, padding_style: PaddingStyle);
/// Returns the named layout of data in the source tensor.
///
/// # Returns
///
/// The current [`TensorNamedDataLayout`] for the source tensor.
#[unsafe(method(dataLayout))]
#[unsafe(method_family = none)]
pub fn data_layout(&self) -> TensorNamedDataLayout;
/// Sets the [`data_layout`](Self::data_layout) property.
///
/// # Arguments
///
/// * `data_layout` – The desired layout of the source tensor data.
#[unsafe(method(setDataLayout:))]
#[unsafe(method_family = none)]
pub fn set_data_layout(&self, data_layout: TensorNamedDataLayout);
/// Returns the named layout of data in the weights tensor.
///
/// # Returns
///
/// The current [`TensorNamedDataLayout`] for the weights tensor.
#[unsafe(method(weightsLayout))]
#[unsafe(method_family = none)]
pub fn weights_layout(&self) -> TensorNamedDataLayout;
/// Sets the [`weights_layout`](Self::weights_layout) property.
///
/// # Arguments
///
/// * `weights_layout` – The desired layout of the weights tensor data.
#[unsafe(method(setWeightsLayout:))]
#[unsafe(method_family = none)]
pub fn set_weights_layout(&self, weights_layout: TensorNamedDataLayout);
/// Returns the number of channel partitions (`groups`).
///
/// # Details
///
/// Input and output channels are divided into `groups` partitions. Input
/// channels in a partition are only connected to output channels in the
/// corresponding partition.
///
/// # Returns
///
/// The number of groups.
#[unsafe(method(groups))]
#[unsafe(method_family = none)]
pub fn groups(&self) -> u64;
/// Sets the [`groups`](Self::groups) property.
///
/// # Arguments
///
/// * `groups` – The desired number of channel partitions.
#[unsafe(method(setGroups:))]
#[unsafe(method_family = none)]
pub fn set_groups(&self, groups: u64);
/// Creates a convolution descriptor with the supplied parameter values.
///
/// # Arguments
///
/// * `stride_in_x` – See [`stride_in_x`][Self::stride_in_x].
/// * `stride_in_y` – See [`stride_in_y`][Self::stride_in_y].
/// * `dilation_rate_in_x` – See [`dilation_rate_in_x`][Self::dilation_rate_in_x].
/// * `dilation_rate_in_y` – See [`dilation_rate_in_y`][Self::dilation_rate_in_y].
/// * `groups` – See [`groups`][Self::groups].
/// * `padding_left` – See [`padding_left`][Self::padding_left].
/// * `padding_right` – See [`padding_right`][Self::padding_right].
/// * `padding_top` – See [`padding_top`][Self::padding_top].
/// * `padding_bottom` – See [`padding_bottom`][Self::padding_bottom].
/// * `padding_style` – See [`padding_style`][Self::padding_style].
/// * `data_layout` – See [`data_layout`][Self::data_layout].
/// * `weights_layout` – See [`weights_layout`][Self::weights_layout].
///
/// # Returns
///
/// A new `MPSGraphConvolution2DOpDescriptor`.
#[unsafe(method(descriptorWithStrideInX:strideInY:dilationRateInX:dilationRateInY:groups:paddingLeft:paddingRight:paddingTop:paddingBottom:paddingStyle:dataLayout:weightsLayout:))]
#[unsafe(method_family = none)]
pub fn descriptor_with_stride_in_x_stride_in_y_dilation_rate_in_x_dilation_rate_in_y_groups_padding_left_padding_right_padding_top_padding_bottom_padding_style_data_layout_weights_layout(
stride_in_x: u64,
stride_in_y: u64,
dilation_rate_in_x: u64,
dilation_rate_in_y: u64,
groups: u64,
padding_left: u64,
padding_right: u64,
padding_top: u64,
padding_bottom: u64,
padding_style: PaddingStyle,
data_layout: TensorNamedDataLayout,
weights_layout: TensorNamedDataLayout,
) -> Option<Retained<Self>>;
/// Creates a convolution descriptor with the supplied parameter values.
///
/// # Arguments
///
/// * `stride_in_x` – See [`stride_in_x`][Self::stride_in_x].
/// * `stride_in_y` – See [`stride_in_y`][Self::stride_in_y].
/// * `dilation_rate_in_x` – See [`dilation_rate_in_x`][Self::dilation_rate_in_x].
/// * `dilation_rate_in_y` – See [`dilation_rate_in_y`][Self::dilation_rate_in_y].
/// * `groups` – See [`groups`][Self::groups].
/// * `padding_style` – See [`padding_style`][Self::padding_style].
/// * `data_layout` – See [`data_layout`][Self::data_layout].
/// * `weights_layout` – See [`weights_layout`][Self::weights_layout].
///
/// # Returns
///
/// A new `MPSGraphConvolution2DOpDescriptor`.
#[unsafe(method(descriptorWithStrideInX:strideInY:dilationRateInX:dilationRateInY:groups:paddingStyle:dataLayout:weightsLayout:))]
#[unsafe(method_family = none)]
pub fn descriptor_with_stride_in_x_stride_in_y_dilation_rate_in_x_dilation_rate_in_y_groups_padding_style_data_layout_weights_layout(
stride_in_x: u64,
stride_in_y: u64,
dilation_rate_in_x: u64,
dilation_rate_in_y: u64,
groups: u64,
padding_style: PaddingStyle,
data_layout: TensorNamedDataLayout,
weights_layout: TensorNamedDataLayout,
) -> Option<Retained<Self>>;
/// Sets the explicit padding values on all sides of the source tensor.
///
/// # Arguments
///
/// * `padding_left` – See [`padding_left`][Self::padding_left].
/// * `padding_right` – See [`padding_right`][Self::padding_right].
/// * `padding_top` – See [`padding_top`][Self::padding_top].
/// * `padding_bottom` – See [`padding_bottom`][Self::padding_bottom].
#[unsafe(method(setExplicitPaddingWithPaddingLeft:paddingRight:paddingTop:paddingBottom:))]
#[unsafe(method_family = none)]
pub fn set_explicit_padding_with_padding_left_padding_right_padding_top_padding_bottom(
&self,
padding_left: u64,
padding_right: u64,
padding_top: u64,
padding_bottom: u64,
);
);
}
/// Methods declared on superclass `NSObject`.
impl Convolution2DOpDescriptor {
extern_methods!(
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
);
}