vernamlab / cuFHE

CUDA-accelerated Fully Homomorphic Encryption Library
MIT License
211 stars 60 forks source link

user@HP-Z8-G4-Workstation:~/cuFHE-master/cufhe/python$ python test_circuits_gpu.py Traceback (most recent call last): File "test_circuits_gpu.py", line 23, in <module> import lib.fhe_gpu as fhe File "/home/user/cuFHE-master/cufhe/python/lib/fhe_gpu.py", line 59 fhe.Encrypt(ctxt.ctxt_, ptxt, prikey) ^ TabError: inconsistent use of tabs and spaces in indentation #16

Open bpradeep508 opened 4 years ago

muyixi315 commented 1 week ago

The code formatting issue arises from inconsistent indentation styles, specifically the mixed use of tabs and spaces. To resolve this, it's essential to unify the indentation style across the entire codebase. It is recommended to use 4 spaces for indentation, as per standard conventions.