Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DRAFT: Added a comment to gather current workflow timings #576

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading