Преглед на файлове

Correction of an error message

Using the argument mentioned in the error message for cmake when building  openfhe-development for 128-bit CKKS yields the following message:
Warning:
Manually-specified variables were not used by the project:
NATIVE_INT

Looking at openfhe-development's CMakeLists.txt, the correct argument is -DNATIVE_SIZE.
Alexandre Pham преди 1 година
родител
ревизия
16aa39d154
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      examples/pke/advanced-real-numbers-128.py

+ 1 - 1
examples/pke/advanced-real-numbers-128.py

@@ -383,7 +383,7 @@ def main():
         fast_rotation_demo1()
         fast_rotation_demo2()
     else:
-        print("This demo only runs for 128-bit CKKS.\nIf you want to test it please reinstall the OpenFHE C++ with the flag -DNATIVE_INT=128, then reinstall OpenFHE-Python.")
+        print("This demo only runs for 128-bit CKKS.\nIf you want to test it please reinstall the OpenFHE C++ with the flag -DNATIVE_SIZE=128, then reinstall OpenFHE-Python.")
 
 if __name__ == "__main__":
     main()