WIP #194
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: make gcc g++ libprotobuf-dev protobuf-compiler | |
version: 1.0 | |
- run: sudo apt install -y graphviz | |
- uses: lukka/get-cmake@latest | |
- run: protoc et_def.proto --proto_path et_def --cpp_out et_def | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- uses: s-weigand/setup-conda@v1 | |
with: | |
activate-conda: true | |
python-version: 3.7 | |
- run: conda install pytorch | |
- run: pip install fbgemm-gpu-cpu | |
- run: pip install . | |
- run: chakra_generator --num_npus 1 | |
- run: | | |
chakra_visualizer --help | |
for f in *.et | |
do | |
chakra_visualizer --input_filename ${f} --output_filename "${f%.*}".dot | |
done |