diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 820bac65..00000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,32 +0,0 @@ -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 diff --git a/.github/workflows/python_lint.yml b/.github/workflows/python_lint.yml index 71b9174e..fbf4ae9d 100644 --- a/.github/workflows/python_lint.yml +++ b/.github/workflows/python_lint.yml @@ -21,6 +21,3 @@ jobs: - name: Run ruff run: ruff format --check --diff . - - - name: Run Pyre Check - run: pyre check diff --git a/.pyre_configuration b/.pyre_configuration deleted file mode 100644 index 61a7b75d..00000000 --- a/.pyre_configuration +++ /dev/null @@ -1,12 +0,0 @@ -{ - "source_directories": [ - "timeline_visualizer", - "et_converter", - "utils" - ], - "search_path": ["/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/site-packages"], - "ignore_all_errors": [ - "et_converter/pytorch2chakra_converter.py", - "et_converter/pytorch_node.py" - ] -}