Skip to content

MinaProtocol/cuda-fixnum

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cuda-fixnum for snark challenge

Use this code to get started on the snark challenge. It implements the logic needed to do field arithmetic. In particular, for the fields used by mnt4-753 and mnt6-753, this takes the pairwise product of two arrays of field elements. That is, it maps over two arrays.

See main.cu for the implementation

Suggested steps to make a submission for the snark challenge

Here are some suggested steps to solve the tutorial stage and work towards a faster, GPU powered snark prover:

  1. Add Quadratic extension arithmetic (Tutorial, $150)
  2. Add Cubic extension arithmetic (Tutorial, $150)
  3. Add Curve operations (Tutorial, $200)

For each of these, the cuda kernel code will need to be changed (see main.cu:21-35)

And here is our best guess on how to effectively make a submission for the full prover (up to $70,000, and $7,000 immediately for the first submission to 2x the speed)

The SNARK prover is composed of several FFTs and multiexponentiations. In the C++ reference implementation, the FFTs are here and the multiexponentiations are here.

  1. Once you've finished the tutorial, try improving the multi-exponentiations with on-GPU versions using the curve operations from the tutorial. Each multi-exponentiation can be seen as a map-reduce, as explained here. The reduce part may be complicated to implement for GPU, so it may be a good idea to start by implementing the "map" part on GPU and the "reduce" part on CPU.
  2. Do the multi-exponentiations entirely on-GPU using an on-GPU reduce
  3. Use an on-GPU FFT (see for example cuFFT), adapted to finite fields. You can find a C++ implementation of a finite-field FFT here.

To build and run

To build and run:

  1. ./build.sh
  2. ./main compute inputs outputs
  3. shasum outputs should be 7b7ca73cd1ad7f2f964aaa30e4550ed23138bfe8

you will need to edit /Makefile:GENCODES to match your GPU see here

About

Extended-precision modular arithmetic library that targets CUDA.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Cuda 93.8%
  • Python 3.3%
  • C++ 2.3%
  • Other 0.6%