Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: oneapi-src/level-zero-tests
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: kboyarinov/level-zero-tests
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 6, 2023

  1. Copy the full SHA
    6b832fc View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 utils/test_harness/src/test_harness_module.cpp
2 changes: 1 addition & 1 deletion utils/test_harness/src/test_harness_module.cpp
Original file line number Diff line number Diff line change
@@ -97,7 +97,7 @@ ze_module_handle_t create_module(ze_context_handle_t context,
const char *build_flags,
ze_module_build_log_handle_t *p_build_log) {
ze_result_t build_result = ZE_RESULT_SUCCESS;
return create_module(lzt::get_default_context(), device, filename, format,
return create_module(context, device, filename, format,
build_flags, p_build_log, &build_result);
}