Skip to content

Commit

Permalink
temporarily disable compiler endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
suryajasper committed Jul 17, 2024
1 parent 320d2bf commit 35c8800
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/run_bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/benchmark/run_iree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 35c8800

Please sign in to comment.