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
use crate::*;
pub mod f32;
pub use self::f32::*;
pub mod f64;
pub use self::f64::*;
pub mod i8;
pub use self::i8::*;
pub mod i16;
pub use self::i16::*;
pub mod i32;
pub use self::i32::*;
pub mod i64;
pub use self::i64::*;
pub mod i128;
pub use self::i128::*;
pub mod u8;
pub use self::u8::*;
pub mod u16;
pub use self::u16::*;
pub mod u32;
pub use self::u32::*;
pub mod u64;
pub use self::u64::*;
pub mod u128;
pub use self::u128::*;
pub type FgdType = fn(&[String], String, &[Arg]) -> syn::Stmt;
pub type RgdType = fn(String, &[Arg], &mut HashMap<String, Vec<String>>) -> syn::Stmt;
pub enum Arg {
Variable(String),
Literal(String),
}
impl std::fmt::Display for Arg {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::Variable(s) => write!(f, "{}", s),
Self::Literal(s) => write!(f, "{}", s),
}
}
}
impl TryFrom<&syn::Expr> for Arg {
type Error = &'static str;
fn try_from(expr: &syn::Expr) -> Result<Self, Self::Error> {
match expr {
syn::Expr::Lit(l) => match &l.lit {
syn::Lit::Int(int) => Ok(Self::Literal(int.to_string())),
syn::Lit::Float(float) => Ok(Self::Literal(float.to_string())),
_ => Err("Unsupported literal type argument"),
},
syn::Expr::Path(p) => Ok(Self::Variable(p.path.segments[0].ident.to_string())),
_ => Err("Non literal or path argument"),
}
}
}
pub type DFn = fn(&[Arg]) -> String;
pub fn lm_identifiers(stmt: &syn::Stmt) -> (String, &syn::ExprMethodCall) {
let local = stmt.local().expect("lm_identifiers: not local");
let init = &local.init;
let method_expr = init
.as_ref()
.unwrap()
.1
.method_call()
.expect("lm_identifiers: not method");
let local_ident = local
.pat
.ident()
.expect("lm_identifiers: not ident")
.ident
.to_string();
(local_ident, method_expr)
}
pub fn cumulative_derivative_wrt_rt(
expr: &syn::Expr,
input_var: &str,
function_inputs: &[String],
out_type: &Type,
) -> String {
match expr {
syn::Expr::Lit(_) => out_type.zero(),
syn::Expr::Path(path_expr) => {
let x = path_expr.path.segments[0].ident.to_string();
if x == input_var {
der!(input_var)
}
else if function_inputs.contains(&x) {
out_type.zero()
}
else {
wrt!(x, input_var)
}
}
_ => panic!("cumulative_derivative_wrt: unsupported expr"),
}
}
#[derive(PartialEq, Eq)]
pub enum Type {
F32,
F64,
U8,
U16,
U32,
U64,
U128,
I8,
I16,
I32,
I64,
I128,
}
impl Type {
pub fn zero(&self) -> String {
format!("0{}", self.to_string())
}
}
impl ToString for Type {
fn to_string(&self) -> String {
match self {
Self::F32 => "f32",
Self::F64 => "f64",
Self::U8 => "u8",
Self::U16 => "u16",
Self::U32 => "u32",
Self::U64 => "u64",
Self::U128 => "u128",
Self::I8 => "i8",
Self::I16 => "i16",
Self::I32 => "i32",
Self::I64 => "i64",
Self::I128 => "i128",
}
.into()
}
}
impl TryFrom<&str> for Type {
type Error = &'static str;
fn try_from(string: &str) -> Result<Self, Self::Error> {
match string {
"f32" => Ok(Self::F32),
"f64" => Ok(Self::F64),
"u8" => Ok(Self::U8),
"u16" => Ok(Self::U16),
"u32" => Ok(Self::U32),
"u64" => Ok(Self::U64),
"u128" => Ok(Self::U128),
"i8" => Ok(Self::I8),
"i16" => Ok(Self::I16),
"i32" => Ok(Self::I32),
"i64" => Ok(Self::I64),
"i128" => Ok(Self::I128),
_ => Err("Type::try_from unsupported type"),
}
}
}
pub fn fgd<const DEFAULT: &'static str, const TRANSLATION_FUNCTIONS: &'static [DFn]>(
outer_fn_args: &[String],
local_ident: String,
args: &[Arg],
) -> syn::Stmt {
assert_eq!(args.len(), TRANSLATION_FUNCTIONS.len());
let (idents, deriatives) = outer_fn_args
.iter()
.map(|outer_fn_input| {
let acc = args
.iter()
.zip(TRANSLATION_FUNCTIONS.iter())
.map(|(arg,t)|
match arg {
Arg::Literal(_) => DEFAULT.to_string(),
Arg::Variable(v) => {
let (a,b) = (
t(args),
if v == outer_fn_input {
der!(outer_fn_input)
} else if outer_fn_args.contains(v) {
DEFAULT.to_string()
} else {
wrt!(arg,outer_fn_input)
});
format!("({})*{}",a,b)
}
})
.intersperse(String::from("+"))
.collect::<String>();
(wrt!(local_ident, outer_fn_input), acc)
})
.unzip::<_, _, Vec<_>, Vec<_>>();
let (idents, deriatives) = (
idents
.into_iter()
.intersperse(String::from(","))
.collect::<String>(),
deriatives
.into_iter()
.intersperse(String::from(","))
.collect::<String>(),
);
let stmt_str = format!("let ({}) = ({});", idents, deriatives);
syn::parse_str(&stmt_str).expect("fgd: parse fail")
}
pub fn rgd<const DEFAULT: &'static str, const TRANSLATION_FUNCTIONS: &'static [DFn]>(
local_ident: String,
args: &[Arg],
component_map: &mut HashMap<String, Vec<String>>,
) -> syn::Stmt {
assert_eq!(args.len(), TRANSLATION_FUNCTIONS.len());
let (idents, deriatives) = args
.iter()
.zip(TRANSLATION_FUNCTIONS.iter())
.filter_map(|(arg, t)| match arg {
Arg::Variable(v) => Some((v, t)),
Arg::Literal(_) => None,
})
.map(|(arg, t)| {
let der_ident = wrt!(arg, local_ident);
append_insert(arg, local_ident.clone(), component_map);
let (derivative, accumulator) = (t(args), der!(local_ident));
let full_der = format!("({})*{}", derivative, accumulator);
(der_ident, full_der)
})
.unzip::<_, _, Vec<_>, Vec<_>>();
let (idents, deriatives) = (
idents
.into_iter()
.intersperse(String::from(","))
.collect::<String>(),
deriatives
.into_iter()
.intersperse(String::from(","))
.collect::<String>(),
);
let stmt_str = format!("let ({}) = ({});", idents, deriatives);
syn::parse_str(&stmt_str).expect("fgd: parse fail")
}