Skip to content

Commit 6d69c9b

Browse files
committed
Fix test_accessor_legacy build with SYCL_CTS_ENABLE_VERBOSE_LOG
`log_accessor` doesn't take a `kernelName` template parameter, so this would fail to build.
1 parent 3832116 commit 6d69c9b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/accessor_legacy/accessor_api_local_common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,8 +328,8 @@ struct check_local_accessor_api_dim<generic_path_t> {
328328
// Do not run atomic64 checks
329329
#if SYCL_CTS_ENABLE_VERBOSE_LOG
330330
constexpr auto mode = sycl::access_mode::atomic;
331-
log_accessor<T, kernelName, dims, mode, target>(
332-
"skip_local_accessor_atomic64", typeName, log);
331+
log_accessor<T, dims, mode, target>("skip_local_accessor_atomic64",
332+
typeName, log);
333333
#else
334334
static_cast<void>(log);
335335
static_cast<void>(typeName);

0 commit comments

Comments
 (0)