We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e92bdbd commit 5e58fb7Copy full SHA for 5e58fb7
.github/workflows/inductor.yml
@@ -77,5 +77,29 @@ jobs:
77
# docker-image: nvidia/cuda:12.4.1-cudnn-devel-ubuntu22.04
78
run: |
79
pytest -n 1 test/inductor/test_torchinductor.py
80
- - uses: TooMuch4U/runner-post-cleanup@v2.1
+ - name: "cleanup"
81
if: always()
82
+ run: |
83
+ pwd
84
+ ls
85
+
86
+ if [ -d triton ]; then
87
+ echo "triton removed"
88
+ rm -r triton
89
+ else
90
+ echo "triton not removed"
91
+ fi
92
+ if [ -d pytorch ]; then
93
+ echo "pytorch removed"
94
+ rm -r pytorch
95
96
+ echo "pytorch not removed"
97
98
+ if [ -d llvm-project ]; then
99
+ echo "llvm-project removed"
100
+ rm -r llvm-project
101
102
+ echo "llvm not removed"
103
104
105
0 commit comments