Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,16 @@ jobs:

- name: Install Benchmark Requirements
run: |
set -x
source .venv/bin/activate
uv pip freeze | grep -E "^(torch|triton)" > constraints.txt
uv pip install quack-kernels -c constraints.txt
uv pip install quack-kernels --no-deps
mkdir -p benchmarks/ && pushd benchmarks/
git clone https://github.com/pytorch-labs/tritonbench/
pushd tritonbench/
git submodule update --init --recursive
uv pip install -r requirements.txt
python install.py --liger
uv pip install -e .
uv pip install -e . --no-deps
popd
popd
uv pip install pip
Expand Down
Loading