The FFT and multiexponentation calculations were refactored into
a library called ec-gpu 1. Use that library now.
BREAKING CHANGE: RAYON_NUM_THREADS is split into two settings
The RAYON_NUM_THREADS variable used to control the total number of
threads. It resulted in roughly two times as many threads. This setting
is now split into RAYON_NUM_THREADS and EC_GPU_NUM_THREADS. The
total number of threads will now roughly be those two settings combined.
EC_GPU_NUM_THREADS will control the number of threads used for FFT
and multiexponentiation calculations.
The FFT and multiexponentation calculations were refactored into a library called ec-gpu 1. Use that library now.
BREAKING CHANGE:
RAYON_NUM_THREADS
is split into two settingsThe
RAYON_NUM_THREADS
variable used to control the total number of threads. It resulted in roughly two times as many threads. This setting is now split intoRAYON_NUM_THREADS
andEC_GPU_NUM_THREADS
. The total number of threads will now roughly be those two settings combined.EC_GPU_NUM_THREADS
will control the number of threads used for FFT and multiexponentiation calculations.Closes #259.