From 35c8800486a3a13408b28bd28758edce1c170a21 Mon Sep 17 00:00:00 2001 From: Surya Jasper Date: Tue, 16 Jul 2024 23:16:54 -0500 Subject: [PATCH] temporarily disable compiler endpoint --- .github/workflows/run_bench.yml | 3 +-- src/benchmark/run_iree.cpp | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run_bench.yml b/.github/workflows/run_bench.yml index 43a33a5..9df933a 100644 --- a/.github/workflows/run_bench.yml +++ b/.github/workflows/run_bench.yml @@ -10,8 +10,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 with: - submodules: true - submodules_recursive: true + submodules: 'recursive' - name: Set up CMake uses: jwlawson/actions-setup-cmake@v1 diff --git a/src/benchmark/run_iree.cpp b/src/benchmark/run_iree.cpp index 8314443..cf7f077 100644 --- a/src/benchmark/run_iree.cpp +++ b/src/benchmark/run_iree.cpp @@ -43,7 +43,7 @@ void IREEGEMMBench::initialize() char** compileArgs = new char*[2]; compileArgs[0] = (char*)"--iree-hal-target-backends=rocm"; compileArgs[1] = (char*)"--iree-rocm-target-chip=gfx942"; - compile_state = ireeGemmCompilerInitialize(2, compileArgs); + compile_state = nullptr; // ireeGemmCompilerInitialize(2, compileArgs); device_id = 7; }