From efa8dfe7fb0a7e98ebd31e30e845494d9e3d15d4 Mon Sep 17 00:00:00 2001 From: chenyu Date: Sat, 17 May 2025 20:57:02 +0800 Subject: [PATCH] test cron job to run resnet (#10368) --- .github/workflows/mlperf.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/mlperf.yml diff --git a/.github/workflows/mlperf.yml b/.github/workflows/mlperf.yml new file mode 100644 index 0000000000..6d50dbc77f --- /dev/null +++ b/.github/workflows/mlperf.yml @@ -0,0 +1,17 @@ +name: Run MLPerf Training + +on: + # schedule: + # - cron: '0 */1 * * *' + workflow_dispatch: + +jobs: + run_script_job: + runs-on: [self-hosted, Linux, tinyboxgreen] + + steps: + - name: Checkout Code + uses: actions/checkout@v4 + - name: Run resnet + run: | + examples/mlperf/training_submission_v5.0/tinycorp/benchmarks/resnet/implementations/tinybox_green/dev_beam.sh \ No newline at end of file