Skip to content

SamsungLabs/Butterfly_Acc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Butterfly Accelerator for Efficient Transformer

Hardware architecture/accelerator for FABNET, an efficient Transformer sparsified by Fast Fourier Transform and Butterfly Matrix. Check our paper for details.

1. Structure

.
├── README.md
├── figs                 # All the scripts to generate figures in the paper
├── hardware             # All code related to hardware implementation on an FPGA
    ├── cpu_gpu_perf     # Code for evaluate hardware performance on cpu and gpu
    ├── npu_design       # Code for evaluating our butterfly accelerator
        ├── simulator    # Our custom simulator/performance model to get latency
        ├── verilog      # Verilog code of our hardware implementation
            ├── functionality   # Design and Testbench to evaluate the functionality of hardware
            ├── VCU128          # Design and Constraints for synthesis, place&route on VCU128
            ├── Zynq7045        # Design and Constraints for synthsis, place&route on Zynq7045
├── requirements.txt        
└── software          # All code related to software experiments   
    ├── speed         # Code for speed testing
    ├── accuracy      # Code for training/inference to get accuracy

2. Environment Setup

2.1 Install Dependencies

We use conda to manage the required enviroment

conda create -n npu_transformer python=3.8 scipy
source activate npu_transformer
pip3 install -r requirements.txt

Then, install the butterfly operation(hand-written CUDA optimization has included in their repo).

git clone https://github.com/HazyResearch/butterfly.git
cd butterfly/
python setup.py install

To compare the speed of dense linear and butterfly linear, run:

cd NPU_Transformer/software
python -m src.bflylr

2.2 Prepare Dataset

Download lra_release.gz released by LRA repo and place the unzipped folder in folder:

NPU_Transformer/software/src/LRA/datasets

Then, run sh create_datasets.sh in NPU_Transformer/software/src/LRA/datasets and it will create train, dev, and test dataset pickle files for each task.

To run experiment, go to NPU_Transformer/software/src/LRA/code. For instance, running the command running listop is in benchmarking_listop.sh.

3. Artifact Evaluation

3.1 Functionality

3.1.1. Verilog Design

All the testbenches (Butterfly matrix multiplication, FFT, Layer normalization, Shortcut addition) are in hardware/npu_design/verilog/functionality/testbench/. Pls read instruction before running, where you need to generate test data first.

3.1.2. Training and Evaluation of FABNet on CPU/GPU

The code and scripts of evaluting speed are put under software/speed/. The code and scripts of evaluating accuracy are put under software/accuracy/.

3.2 Reproducibility

All the scripts are put under the folder ./script_figs, we refer reviewers/users to read instruction before running it. Some training may take over hunderds of GPU hours to finish, so we also attach our log files in google drive link.

Citation

Our paper is online now (link)! If you found it helpful, pls cite us using:

@inproceedings{fan2022adaptable,
  title={Adaptable Butterfly Accelerator for Attention-based NNs via Hardware and Algorithm Co-design},
  author={Fan, Hongxiang and Chau, Thomas and Venieris, Stylianos I and Lee, Royson and Kouris, Alexandros and Luk, Wayne and Lane, Nicholas D and Abdelfattah, Mohamed S},
  booktitle={MICRO-55: 55th Annual IEEE/ACM International Symposium on Microarchitecture},
  year={2022}
}

About

The codes and artifacts associated with our MICRO'22 paper titled: "Adaptable Butterfly Accelerator for Attention-based NNs via Hardware and Algorithm Co-design"

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published