We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 046cadb commit 6d87f53Copy full SHA for 6d87f53
.github/actions/inductor-test/action.yml
@@ -30,7 +30,7 @@ jobs:
30
git clone https://github.com/triton-lang/triton.git
31
pushd triton
32
echo "Checking out triton branch or commit"
33
- git checkout ${{ github.event.inputs.triton_pin || 'main' }}
+ git checkout ${{ inputs.triton_pin || 'main' }}
34
sudo yum install -y zlib-devel
35
echo "Installing build-time dependencies"
36
pip install ninja==1.11.1.1 cmake==3.30.2 wheel==0.44.0
@@ -58,7 +58,7 @@ jobs:
58
git clone https://github.com/pytorch/pytorch.git
59
pushd pytorch
60
echo "Checking out pytorch branch or commit"
61
- git checkout ${{ github.event.inputs.pytorch_pin || 'main' }}
+ git checkout ${{ inputs.pytorch_pin || 'main' }}
62
git submodule sync
63
git submodule update --init --recursive
64
pip install -r requirements.txt
0 commit comments