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
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ffi::*;
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use crate::*;
extern_class!(
/// [Apple's documentation](https://developer.apple.com/documentation/mlcompute/mlcactivationlayer?language=objc)
#[unsafe(super(MLCLayer, NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "MLCLayer")]
#[deprecated]
pub struct MLCActivationLayer;
);
#[cfg(feature = "MLCLayer")]
extern_conformance!(
unsafe impl NSObjectProtocol for MLCActivationLayer {}
);
#[cfg(feature = "MLCLayer")]
impl MLCActivationLayer {
extern_methods!(
#[cfg(feature = "MLCActivationDescriptor")]
/// The activation descriptor
#[deprecated]
#[unsafe(method(descriptor))]
#[unsafe(method_family = none)]
pub unsafe fn descriptor(&self) -> Retained<MLCActivationDescriptor>;
#[cfg(feature = "MLCActivationDescriptor")]
/// Create an activation layer
///
/// Parameter `descriptor`: The activation descriptor
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(layerWithDescriptor:))]
#[unsafe(method_family = none)]
pub unsafe fn layerWithDescriptor(descriptor: &MLCActivationDescriptor) -> Retained<Self>;
/// Create a ReLU activation layer
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(reluLayer))]
#[unsafe(method_family = none)]
pub unsafe fn reluLayer() -> Retained<MLCActivationLayer>;
/// Create a ReLU6 activation layer
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(relu6Layer))]
#[unsafe(method_family = none)]
pub unsafe fn relu6Layer() -> Retained<MLCActivationLayer>;
/// Create a leaky ReLU activation layer
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(leakyReLULayer))]
#[unsafe(method_family = none)]
pub unsafe fn leakyReLULayer() -> Retained<MLCActivationLayer>;
/// Create a leaky ReLU activation layer
///
/// Parameter `negativeSlope`: Controls the angle of the negative slope
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(leakyReLULayerWithNegativeSlope:))]
#[unsafe(method_family = none)]
pub unsafe fn leakyReLULayerWithNegativeSlope(negative_slope: c_float) -> Retained<Self>;
/// Create a linear activation layer
///
/// Parameter `scale`: The scale factor
///
/// Parameter `bias`: The bias value
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(linearLayerWithScale:bias:))]
#[unsafe(method_family = none)]
pub unsafe fn linearLayerWithScale_bias(scale: c_float, bias: c_float) -> Retained<Self>;
/// Create a sigmoid activation layer
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(sigmoidLayer))]
#[unsafe(method_family = none)]
pub unsafe fn sigmoidLayer() -> Retained<MLCActivationLayer>;
/// Create a hard sigmoid activation layer
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(hardSigmoidLayer))]
#[unsafe(method_family = none)]
pub unsafe fn hardSigmoidLayer() -> Retained<MLCActivationLayer>;
/// Create a tanh activation layer
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(tanhLayer))]
#[unsafe(method_family = none)]
pub unsafe fn tanhLayer() -> Retained<MLCActivationLayer>;
/// Create an absolute activation layer
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(absoluteLayer))]
#[unsafe(method_family = none)]
pub unsafe fn absoluteLayer() -> Retained<MLCActivationLayer>;
/// Create a soft plus activation layer
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(softPlusLayer))]
#[unsafe(method_family = none)]
pub unsafe fn softPlusLayer() -> Retained<MLCActivationLayer>;
/// Create a soft plus activation layer
///
/// Parameter `beta`: The beta value for the softplus formation
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(softPlusLayerWithBeta:))]
#[unsafe(method_family = none)]
pub unsafe fn softPlusLayerWithBeta(beta: c_float) -> Retained<Self>;
/// Create a soft sign activation layer
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(softSignLayer))]
#[unsafe(method_family = none)]
pub unsafe fn softSignLayer() -> Retained<MLCActivationLayer>;
/// Create an ELU activation layer
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(eluLayer))]
#[unsafe(method_family = none)]
pub unsafe fn eluLayer() -> Retained<MLCActivationLayer>;
/// Create an ELU activation layer
///
/// Parameter `a`: The
/// `a`value for the ELU formation
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(eluLayerWithA:))]
#[unsafe(method_family = none)]
pub unsafe fn eluLayerWithA(a: c_float) -> Retained<Self>;
/// Create a ReLUN activation layer
///
/// This can be used to implement layers such as ReLU6 for example.
///
/// Parameter `a`: The
/// `a`value
///
/// Parameter `b`: The
/// `b`value
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(relunLayerWithA:b:))]
#[unsafe(method_family = none)]
pub unsafe fn relunLayerWithA_b(a: c_float, b: c_float) -> Retained<Self>;
/// Create a log sigmoid activation layer
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(logSigmoidLayer))]
#[unsafe(method_family = none)]
pub unsafe fn logSigmoidLayer() -> Retained<MLCActivationLayer>;
/// Create a SELU activation layer
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(seluLayer))]
#[unsafe(method_family = none)]
pub unsafe fn seluLayer() -> Retained<MLCActivationLayer>;
/// Create a CELU activation layer
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(celuLayer))]
#[unsafe(method_family = none)]
pub unsafe fn celuLayer() -> Retained<MLCActivationLayer>;
/// Create a CELU activation layer
///
/// Parameter `a`: The
/// `a`value for the CELU formation
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(celuLayerWithA:))]
#[unsafe(method_family = none)]
pub unsafe fn celuLayerWithA(a: c_float) -> Retained<Self>;
/// Create a hard shrink activation layer
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(hardShrinkLayer))]
#[unsafe(method_family = none)]
pub unsafe fn hardShrinkLayer() -> Retained<MLCActivationLayer>;
/// Create a hard shrink activation layer
///
/// Parameter `a`: The
/// `a`value for the hard shrink formation
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(hardShrinkLayerWithA:))]
#[unsafe(method_family = none)]
pub unsafe fn hardShrinkLayerWithA(a: c_float) -> Retained<Self>;
/// Create a soft shrink activation layer
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(softShrinkLayer))]
#[unsafe(method_family = none)]
pub unsafe fn softShrinkLayer() -> Retained<MLCActivationLayer>;
/// Create a soft shrink activation layer
///
/// Parameter `a`: The
/// `a`value for the soft shrink formation
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(softShrinkLayerWithA:))]
#[unsafe(method_family = none)]
pub unsafe fn softShrinkLayerWithA(a: c_float) -> Retained<Self>;
/// Create a TanhShrink activation layer
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(tanhShrinkLayer))]
#[unsafe(method_family = none)]
pub unsafe fn tanhShrinkLayer() -> Retained<MLCActivationLayer>;
/// Create a threshold activation layer
///
/// Parameter `threshold`: The value to threshold at
///
/// Parameter `replacement`: The value to replace with
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(thresholdLayerWithThreshold:replacement:))]
#[unsafe(method_family = none)]
pub unsafe fn thresholdLayerWithThreshold_replacement(
threshold: c_float,
replacement: c_float,
) -> Retained<Self>;
/// Create a GELU activation layer
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(geluLayer))]
#[unsafe(method_family = none)]
pub unsafe fn geluLayer() -> Retained<MLCActivationLayer>;
/// Create a hardswish activation layer
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(hardSwishLayer))]
#[unsafe(method_family = none)]
pub unsafe fn hardSwishLayer() -> Retained<MLCActivationLayer>;
/// Create a clamp activation layer
///
/// Parameter `minValue`: The minimum range used by clamp
///
/// Parameter `maxValue`: The maximum range used by clamp
///
/// Returns: A new activation layer
#[deprecated]
#[unsafe(method(clampLayerWithMinValue:maxValue:))]
#[unsafe(method_family = none)]
pub unsafe fn clampLayerWithMinValue_maxValue(
min_value: c_float,
max_value: c_float,
) -> Retained<Self>;
);
}
/// Methods declared on superclass `MLCLayer`.
#[cfg(feature = "MLCLayer")]
impl MLCActivationLayer {
extern_methods!(
#[deprecated]
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
#[deprecated]
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
);
}