Bootstrapping random numbers are not fixed

Hi,
I’m currently running the simplebootstrapping example in CKKS.
However, the random errors generated in CKKS are not fixed even I make the one in .h file to fixed

#define FIXED_SEED
It once worked when running bfv code, but I have no idea why it do not work with the CKKS part.
Thanks in advance.

Hi @wangantian ,

Please also make sure that you use the single-threaded setup. There are two options for this:

  1. Compile with OpenMP support (ON by default) and then set the OMP_NUM_THREADS to 1, i.e.,
export OMP_NUM_THREADS=1
  1. Compile w/o OpenMP support: set WITH_OPENMP to OFF when running cmake.