From b43e73e949f66d279857ac35dfa230588c731c1a Mon Sep 17 00:00:00 2001 From: LittleMouse Date: Thu, 8 May 2025 17:19:33 +0800 Subject: [PATCH] [add] add benchmark.yml --- .github/workflows/benchmark.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/benchmark.yml diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml new file mode 100644 index 0000000..5396ec8 --- /dev/null +++ b/.github/workflows/benchmark.yml @@ -0,0 +1,18 @@ +name: Benchmark Test +on: + workflow_dispatch: + push: + branches: + - dev +jobs: + build: + runs-on: [self-hosted, linux, arm64] + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Start Benchmark Test + run: | + echo "This job runs on a self-hosted runner!" + echo "Running benchmark test..." + python3 benchmark/benchmodulellm.py \ No newline at end of file