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
|
/// Modifer to mark a function for forward-mode differentiation.
/// i.e. the compiler will automatically generate a new function
/// that computes the jacobian-vector product of the original.
syntax __differentiate_jvp : JVPDerivativeModifier;
// Custom JVP Function reference
__attributeTarget(FuncDecl)
attribute_syntax [__custom_jvp(function)] : CustomJVPAttribute;
/// Interface to denote types as differentiable.
/// Allows for user-specified differential types as
/// well as automatic generation, for when the associated type
/// hasn't been declared explicitly.
/// Note that the requirements must currently be defined in this exact order
/// since the auto-diff pass relies on the order to grab the struct keys.
///
__magic_type(DifferentiableType)
interface IDifferentiable
{
associatedtype Differential;
static Differential zero();
static Differential dadd(Differential, Differential);
static Differential dmul(This, Differential);
};
// Add extensions for the standard types
extension float : IDifferentiable
{
typedef float Differential;
[__unsafeForceInlineEarly]
static Differential zero()
{
return 0.f;
}
[__unsafeForceInlineEarly]
static Differential dadd(Differential a, Differential b)
{
return a + b;
}
[__unsafeForceInlineEarly]
static Differential dmul(This a, Differential b)
{
return a * b;
}
}
extension vector<float, 3> : IDifferentiable
{
typedef vector<float, 3> Differential;
[__unsafeForceInlineEarly]
static Differential zero()
{
return vector<float, 3>(0.f);
}
[__unsafeForceInlineEarly]
static Differential dadd(Differential a, Differential b)
{
return a + b;
}
[__unsafeForceInlineEarly]
static Differential dmul(This a, Differential b)
{
return a * b;
}
}
extension vector<float, 2> : IDifferentiable
{
typedef vector<float, 2> Differential;
[__unsafeForceInlineEarly]
static Differential zero()
{
return vector<float, 2>(0.f);
}
[__unsafeForceInlineEarly]
static Differential dadd(Differential a, Differential b)
{
return a + b;
}
[__unsafeForceInlineEarly]
static Differential dmul(This a, Differential b)
{
return a * b;
}
}
extension vector<float, 4> : IDifferentiable
{
typedef vector<float, 4> Differential;
[__unsafeForceInlineEarly]
static Differential zero()
{
return vector<float, 4>(0.f);
}
[__unsafeForceInlineEarly]
static Differential dadd(Differential a, Differential b)
{
return a + b;
}
[__unsafeForceInlineEarly]
static Differential dmul(This a, Differential b)
{
return a * b;
}
}
/// Pair type that serves to wrap the primal and
/// differential types of an arbitrary type T.
__generic<T : IDifferentiable>
__magic_type(DifferentialPairType)
__intrinsic_type($(kIROp_DifferentialPairType))
struct __DifferentialPair
{
__intrinsic_op($(kIROp_MakeDifferentialPair))
__init(T _primal, T.Differential _differential);
__intrinsic_op($(kIROp_DifferentialPairGetDifferential))
T.Differential d();
T.Differential getDifferential()
{
return d();
}
__intrinsic_op($(kIROp_DifferentialPairGetPrimal))
T p();
T getPrimal()
{
return p();
}
};
|