Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
MaryaSharf committed Dec 24, 2023
1 parent 9a17275 commit 3c06ae4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .github/actions/build_vgg_resnet_action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,18 @@ runs:
# We don't want a new docker just a list of steps, so mark as composite
using: "composite"
steps:
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.8'

- name: Install Python libraries and system dependencies
run: |
pip install requests numpy h5py Pillow
sudo add-apt-repository universe
sudo apt-get update
sudo apt-get install -y libblas-dev libopenblas64-dev libopenblas-dev libpthread-stubs0-dev libboost-all-dev
- name: Clone portDNN
shell: bash
run: git clone --recursive https://github.com/codeplaysoftware/portDNN.git
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/run_tartan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:

- name: Package Tartan Artifacts
run: |
tar -czf new_tartan.tar.gz build #$(pwd)/portDNN_build_dir $(pwd)/portBLAS_build_dir
tar -czf new_tartan.tar.gz build $(pwd)/portDNN_build_dir $(pwd)/portBLAS_build_dir
- name: Upload Artifacts
uses: actions/upload-artifact@v2
Expand All @@ -87,6 +87,7 @@ jobs:
- name: Untar artifacts
run: |
tar -xvzf new_tartan.tar.gz
ls
- name: Build vgg and resnet
uses: ./.github/actions/build_vgg_resnet_action
Expand Down

0 comments on commit 3c06ae4

Please sign in to comment.