Skip to content

Commit

Permalink
Added a comment to gather current workflow timings
Browse files Browse the repository at this point in the history
  • Loading branch information
coldav committed Nov 6, 2024
1 parent 18e5871 commit be2a020
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/run_pr_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

# added a comment here to force a workflow run.
jobs:

# build and run host x86_64, execute UnitCL and lit tests and build and run offline
Expand Down
4 changes: 2 additions & 2 deletions clik/external/hal_cpu/source/cpu_hal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -314,8 +314,8 @@ bool cpu_hal::kernel_exec(hal::hal_program_t program, hal::hal_kernel_t kernel,
size_t num_threads = work_group_size;
#else
#error HAL_CPU_MODE must be HAL_CPU_MODE_WG or HAL_CPU_MODE_WI.
#endif

#endif
printf("Num threads = %d\n", (int) num_threads);
std::vector<exec_state_t> exec_for_thread(num_threads);
exec.num_threads = num_threads;
for (size_t thread_id = 0; thread_id < num_threads; thread_id++) {
Expand Down

0 comments on commit be2a020

Please sign in to comment.