├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Compiled Object files 5 | *.slo 6 | *.lo 7 | *.o 8 | *.obj 9 | 10 | # Precompiled Headers 11 | *.gch 12 | *.pch 13 | 14 | # Compiled Dynamic libraries 15 | *.so 16 | *.dylib 17 | *.dll 18 | 19 | # Fortran module files 20 | *.mod 21 | *.smod 22 | 23 | # Compiled Static libraries 24 | *.lai 25 | *.la 26 | *.a 27 | *.lib 28 | 29 | # Executables 30 | *.exe 31 | *.out 32 | *.app 33 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BOLT 2 | This repository contains the evaluation code for the IEEE S&P 2024 paper: **BOLT: Privacy-Preserving, Accurate and Efficient Inference for Transformers**. 3 | 4 | The implementation to reproduce the results in the paper can be found here: https://github.com/Clive2312/EzPC/tree/bert/SCI. 5 | 6 | Model weights are available here: https://drive.google.com/drive/u/1/folders/13bBok39UevQ-6hDWHtBVtLJrYVo5VnsR. 7 | 8 | We will clean and merge the code to this repo. 9 | --------------------------------------------------------------------------------