Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
MaryaSharf committed Dec 22, 2023
1 parent 46d2a30 commit a593bee
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/actions/build_vgg_resnet_action/action.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Setup and build networks; VGG16, Resnet50
description: Build and run VV16 and Resnet50 with oneAPI base toolkit and oneAPI-Construction-Kit

# inputs:
# workspace:
# description: 'Main workflow workspace'
# default: ${{ github.workspace }}
inputs:
workspace:
description: 'Main workflow workspace'
default: ${{ github.workspace }}

runs:
# We don't want a new docker just a list of steps, so mark as composite
Expand All @@ -24,7 +24,7 @@ runs:
- name: Untar artifacts
shell: bash
run: |
tar -xvzf $(pwd)/new_tartan.tar.gz
tar -xvzf ${{ inputs.workspace }}/new_tartan.tar.gz
- name: Set up environment and build networks
shell: bash
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/run_tartan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,6 @@ jobs:
path: new_tartan.tar.gz

- name: Build vgg and resnet
uses: ./.github/actions/build_vgg_resnet_action
uses: ./.github/actions/build_vgg_resnet_action
with:
workspace: ${{ github.workspace }}

0 comments on commit a593bee

Please sign in to comment.