OpenCL code generator for finite-field arithmetic over prime fields constructed with Rust ff library.
Notes: - Limbs are 32/64-bit long, by your choice. - The library assumes that the most significant bit of your prime-field is unset. This allows for cheap reductions.
Generating OpenCL codes for Bls12-381 Fr elements:
rust
use paired::bls12_381::Fr;
let src = ff_cl_gen::field::<Fr, Limb64>("Fr");
Generated interface (FIELD
is substituted with Fr
):
```c
typedef struct { FIELDlimb val[FIELDLIMBS]; } FIELD;
bool FIELDgte(FIELD a, FIELD b); // Greater than or equal
bool FIELDeq(FIELD a, FIELD b); // Equal
FIELD FIELDsub(FIELD a, FIELD b); // Modular subtraction
FIELD FIELDadd(FIELD a, FIELD b); // Modular addition
FIELD FIELDmul(FIELD a, FIELD b); // Modular multiplication
FIELD FIELDsqr(FIELD a); // Modular squaring
FIELD FIELDdouble(FIELD a); // Modular doubling
FIELD FIELDpow(FIELD base, uint exponent); // Modular power
FIELD FIELDpowlookup(global FIELD *bases, uint exponent); // Modular power with lookup table for bases
FIELD FIELDmont(FIELD a); // To montgomery form
FIELD FIELDunmont(FIELD a); // To regular form
bool FIELDgetbit(FIELD l, uint i); // Get i
th bit (From most significant digit)
uint FIELDgetbits(FIELD l, uint skip, uint window); // Get window
consecutive bits, (Starting from skip
th bit from most significant digit)
```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.