Skip to content

Commit

Permalink
Change default benchmark mode to upstream PyTorch (#2298)
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <[email protected]>
  • Loading branch information
anmyachev authored Sep 23, 2024
1 parent 24d985b commit 782aecf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/triton-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ on:
install_ipex:
description: Install Intel PyTorch Extension
type: boolean
default: true
default: false
schedule:
- cron: "5 23 * * *"

permissions: read-all

env:
PYTHON_VERSION: "3.10"
USE_IPEX: ${{ github.event_name == 'schedule' && '1' || inputs.install_ipex && '1' || '0' }}
USE_IPEX: ${{ github.event_name == 'schedule' && '0' || inputs.install_ipex && '1' || '0' }}

jobs:
build:
Expand Down

0 comments on commit 782aecf

Please sign in to comment.