Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 577 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 577 Bytes

Conda Environment

To create the event-nn environment, run:

conda env create -f conda/environment.yml

To enable GPU support, instead run:

conda env create -f conda/environment_gpu.yml

Code Style

Format all Python using Black. Use a line limit of 88 characters (the default). To format a file, use the command:

black <FILE>

Format all C++ using Clang-Format. Use the default settings. To format a file, use the command:

clang-format -i <FILE>