spl-math 0.3.0

Solana Program Library Math
Documentation
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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
//! Program instructions, used for end-to-end testing and instruction counts

use {
    crate::id,
    borsh::{BorshDeserialize, BorshSerialize},
    solana_program::instruction::Instruction,
};

/// Instructions supported by the math program, used for testing instruction
/// counts
#[derive(Clone, Debug, BorshSerialize, BorshDeserialize, PartialEq)]
pub enum MathInstruction {
    /// Calculate the square root of the given u64 with decimals
    ///
    /// No accounts required for this instruction
    PreciseSquareRoot {
        /// Number underneath the square root sign, whose square root will be
        /// calculated
        radicand: u64,
    },
    /// Calculate the integer square root of the given u64
    ///
    /// No accounts required for this instruction
    SquareRootU64 {
        /// Number underneath the square root sign, whose square root will be
        /// calculated
        radicand: u64,
    },
    /// Calculate the integer square root of the given u128
    ///
    /// No accounts required for this instruction
    SquareRootU128 {
        /// Number underneath the square root sign, whose square root will be
        /// calculated
        radicand: u128,
    },
    /// Multiply two u64 values
    ///
    /// No accounts required for this instruction
    U64Multiply {
        /// The multiplicand
        multiplicand: u64,
        /// The multipier
        multiplier: u64,
    },
    /// Divide two u64 values
    ///
    /// No accounts required for this instruction
    U64Divide {
        /// The dividend
        dividend: u64,
        /// The divisor
        divisor: u64,
    },
    /// Multiply two float values
    ///
    /// No accounts required for this instruction
    F32Multiply {
        /// The multiplicand
        multiplicand: f32,
        /// The multipier
        multiplier: f32,
    },
    /// Divide two float values
    ///
    /// No accounts required for this instruction
    F32Divide {
        /// The dividend
        dividend: f32,
        /// The divisor
        divisor: f32,
    },

    /// Exponentiate a float base by a power
    ///
    /// No accounts required for this instruction
    F32Exponentiate {
        /// The base
        base: f32,
        /// The exponent
        exponent: f32,
    },

    /// Natural Log of a float
    ///
    /// No accounts required for this instruction
    F32NaturalLog {
        /// The argument
        argument: f32,
    },

    /// The Normal CDF of a float
    ///
    /// No accounts required for this instruction
    F32NormalCDF {
        /// The argument
        argument: f32,
    },

    /// Pow two float values
    ///
    /// No accounts required for this instruction
    F64Pow {
        /// The base
        base: f64,
        /// The exponent
        exponent: f64,
    },

    /// Multiply two u128 values
    ///
    /// No accounts required for this instruction
    U128Multiply {
        /// The multiplicand
        multiplicand: u128,
        /// The multipier
        multiplier: u128,
    },
    /// Divide two u128 values
    ///
    /// No accounts required for this instruction
    U128Divide {
        /// The dividend
        dividend: u128,
        /// The divisor
        divisor: u128,
    },
    /// Multiply two f64 values
    ///
    /// No accounts required for this instruction
    F64Multiply {
        /// The multiplicand
        multiplicand: f64,
        /// The multipier
        multiplier: f64,
    },
    /// Divide two f64 values
    ///
    /// No accounts required for this instruction
    F64Divide {
        /// The dividend
        dividend: f64,
        /// The divisor
        divisor: f64,
    },

    /// Don't do anything for comparison
    ///
    /// No accounts required for this instruction
    Noop,
}

/// Create PreciseSquareRoot instruction
pub fn precise_sqrt(radicand: u64) -> Instruction {
    Instruction {
        program_id: id(),
        accounts: vec![],
        data: borsh::to_vec(&MathInstruction::PreciseSquareRoot { radicand }).unwrap(),
    }
}

/// Create U64 SquareRoot instruction
pub fn sqrt_u64(radicand: u64) -> Instruction {
    Instruction {
        program_id: id(),
        accounts: vec![],
        data: borsh::to_vec(&MathInstruction::SquareRootU64 { radicand }).unwrap(),
    }
}

/// Create U128 SquareRoot instruction
pub fn sqrt_u128(radicand: u128) -> Instruction {
    Instruction {
        program_id: id(),
        accounts: vec![],
        data: borsh::to_vec(&MathInstruction::SquareRootU128 { radicand }).unwrap(),
    }
}

/// Create U64 Multiplication instruction
pub fn u64_multiply(multiplicand: u64, multiplier: u64) -> Instruction {
    Instruction {
        program_id: id(),
        accounts: vec![],
        data: borsh::to_vec(&MathInstruction::U64Multiply {
            multiplicand,
            multiplier,
        })
        .unwrap(),
    }
}

/// Create U64 Division instruction
pub fn u64_divide(dividend: u64, divisor: u64) -> Instruction {
    Instruction {
        program_id: id(),
        accounts: vec![],
        data: borsh::to_vec(&MathInstruction::U64Divide { dividend, divisor }).unwrap(),
    }
}

/// Create F32 Multiplication instruction
pub fn f32_multiply(multiplicand: f32, multiplier: f32) -> Instruction {
    Instruction {
        program_id: id(),
        accounts: vec![],
        data: borsh::to_vec(&MathInstruction::F32Multiply {
            multiplicand,
            multiplier,
        })
        .unwrap(),
    }
}

/// Create F32 Division instruction
pub fn f32_divide(dividend: f32, divisor: f32) -> Instruction {
    Instruction {
        program_id: id(),
        accounts: vec![],
        data: borsh::to_vec(&MathInstruction::F32Divide { dividend, divisor }).unwrap(),
    }
}

/// Create F32 Exponentiate instruction
pub fn f32_exponentiate(base: f32, exponent: f32) -> Instruction {
    Instruction {
        program_id: id(),
        accounts: vec![],
        data: borsh::to_vec(&MathInstruction::F32Exponentiate { base, exponent }).unwrap(),
    }
}

/// Create F32 Natural Log instruction
pub fn f32_natural_log(argument: f32) -> Instruction {
    Instruction {
        program_id: id(),
        accounts: vec![],
        data: borsh::to_vec(&MathInstruction::F32NaturalLog { argument }).unwrap(),
    }
}

/// Create F32 Normal CDF instruction
pub fn f32_normal_cdf(argument: f32) -> Instruction {
    Instruction {
        program_id: id(),
        accounts: vec![],
        data: borsh::to_vec(&MathInstruction::F32NormalCDF { argument }).unwrap(),
    }
}

/// Create F64Pow instruction
pub fn f64_pow(base: f64, exponent: f64) -> Instruction {
    Instruction {
        program_id: id(),
        accounts: vec![],
        data: borsh::to_vec(&MathInstruction::F64Pow { base, exponent }).unwrap(),
    }
}

/// Create U128 Multiplication instruction
pub fn u128_multiply(multiplicand: u128, multiplier: u128) -> Instruction {
    Instruction {
        program_id: id(),
        accounts: vec![],
        data: borsh::to_vec(&MathInstruction::U128Multiply {
            multiplicand,
            multiplier,
        })
        .unwrap(),
    }
}

/// Create U128 Division instruction
pub fn u128_divide(dividend: u128, divisor: u128) -> Instruction {
    Instruction {
        program_id: id(),
        accounts: vec![],
        data: borsh::to_vec(&MathInstruction::U128Divide { dividend, divisor }).unwrap(),
    }
}

/// Create F64 Multiplication instruction
pub fn f64_multiply(multiplicand: f64, multiplier: f64) -> Instruction {
    Instruction {
        program_id: id(),
        accounts: vec![],
        data: borsh::to_vec(&MathInstruction::F64Multiply {
            multiplicand,
            multiplier,
        })
        .unwrap(),
    }
}

/// Create F64 Division instruction
pub fn f64_divide(dividend: f64, divisor: f64) -> Instruction {
    Instruction {
        program_id: id(),
        accounts: vec![],
        data: borsh::to_vec(&MathInstruction::F64Divide { dividend, divisor }).unwrap(),
    }
}

/// Create Noop instruction
pub fn noop() -> Instruction {
    Instruction {
        program_id: id(),
        accounts: vec![],
        data: borsh::to_vec(&MathInstruction::Noop).unwrap(),
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_precise_sqrt() {
        let instruction = precise_sqrt(u64::MAX);
        assert_eq!(0, instruction.accounts.len());
        assert_eq!(
            instruction.data,
            borsh::to_vec(&MathInstruction::PreciseSquareRoot { radicand: u64::MAX }).unwrap()
        );
        assert_eq!(instruction.program_id, crate::id());
    }

    #[test]
    fn test_sqrt_u64() {
        let instruction = sqrt_u64(u64::MAX);
        assert_eq!(0, instruction.accounts.len());
        assert_eq!(
            instruction.data,
            borsh::to_vec(&MathInstruction::SquareRootU64 { radicand: u64::MAX }).unwrap()
        );
        assert_eq!(instruction.program_id, crate::id());
    }

    #[test]
    fn test_sqrt_u128() {
        let instruction = sqrt_u128(u128::MAX);
        assert_eq!(0, instruction.accounts.len());
        assert_eq!(
            instruction.data,
            borsh::to_vec(&MathInstruction::SquareRootU128 {
                radicand: u128::MAX
            })
            .unwrap()
        );
        assert_eq!(instruction.program_id, crate::id());
    }

    #[test]
    fn test_u64_multiply() {
        let instruction = u64_multiply(u64::MAX, u64::MAX);
        assert_eq!(0, instruction.accounts.len());
        assert_eq!(
            instruction.data,
            borsh::to_vec(&MathInstruction::U64Multiply {
                multiplicand: u64::MAX,
                multiplier: u64::MAX
            })
            .unwrap()
        );
        assert_eq!(instruction.program_id, crate::id());
    }

    #[test]
    fn test_u64_divide() {
        let instruction = u64_divide(u64::MAX, u64::MAX);
        assert_eq!(0, instruction.accounts.len());
        assert_eq!(
            instruction.data,
            borsh::to_vec(&MathInstruction::U64Divide {
                dividend: u64::MAX,
                divisor: u64::MAX
            })
            .unwrap()
        );
        assert_eq!(instruction.program_id, crate::id());
    }

    #[test]
    fn test_f32_multiply() {
        let instruction = f32_multiply(f32::MAX, f32::MAX);
        assert_eq!(0, instruction.accounts.len());
        assert_eq!(
            instruction.data,
            borsh::to_vec(&MathInstruction::F32Multiply {
                multiplicand: f32::MAX,
                multiplier: f32::MAX
            })
            .unwrap()
        );
        assert_eq!(instruction.program_id, crate::id());
    }

    #[test]
    fn test_f32_divide() {
        let instruction = f32_divide(f32::MAX, f32::MAX);
        assert_eq!(0, instruction.accounts.len());
        assert_eq!(
            instruction.data,
            borsh::to_vec(&MathInstruction::F32Divide {
                dividend: f32::MAX,
                divisor: f32::MAX
            })
            .unwrap()
        );
        assert_eq!(instruction.program_id, crate::id());
    }

    #[test]
    fn test_f32_exponentiate() {
        let instruction = f32_exponentiate(f32::MAX, f32::MAX);
        assert_eq!(0, instruction.accounts.len());
        assert_eq!(
            instruction.data,
            borsh::to_vec(&MathInstruction::F32Exponentiate {
                base: f32::MAX,
                exponent: f32::MAX
            })
            .unwrap()
        );
        assert_eq!(instruction.program_id, crate::id())
    }

    #[test]
    fn test_f32_natural_log() {
        let instruction = f32_natural_log(f32::MAX);
        assert_eq!(0, instruction.accounts.len());
        assert_eq!(
            instruction.data,
            borsh::to_vec(&MathInstruction::F32NaturalLog { argument: f32::MAX }).unwrap()
        );
        assert_eq!(instruction.program_id, crate::id())
    }

    #[test]
    fn test_f32_normal_cdf() {
        let instruction = f32_normal_cdf(f32::MAX);
        assert_eq!(0, instruction.accounts.len());
        assert_eq!(
            instruction.data,
            borsh::to_vec(&MathInstruction::F32NormalCDF { argument: f32::MAX }).unwrap()
        );
        assert_eq!(instruction.program_id, crate::id())
    }

    #[test]
    fn test_noop() {
        let instruction = noop();
        assert_eq!(0, instruction.accounts.len());
        assert_eq!(
            instruction.data,
            borsh::to_vec(&MathInstruction::Noop).unwrap()
        );
        assert_eq!(instruction.program_id, crate::id());
    }
}