Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.
Merged
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
2 changes: 1 addition & 1 deletion SYCL/ESIMD/api/functional/ctors/ctor_broadcast.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ class run_test {
const std::string &dst_data_type) {
shared_vector<DstT> result(NumElems, shared_allocator<DstT>(queue));
shared_vector<SrcT> shared_ref_data(1, shared_allocator<SrcT>(queue));
shared_ref_data.push_back(ref_value);
shared_ref_data[0] = ref_value;

queue.submit([&](sycl::handler &cgh) {
const SrcT *const ref = shared_ref_data.data();
Expand Down
3 changes: 0 additions & 3 deletions SYCL/ESIMD/api/functional/ctors/ctor_broadcast_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@
// UNSUPPORTED: cuda, hip
// XRUN: %clangxx -fsycl %s -fsycl-device-code-split=per_kernel -o %t.out
// XRUN: %GPU_RUN_PLACEHOLDER %t.out
// RUN: false
// XFAIL: *
// TODO The simd filled with unexpected values.
//
// Test for simd broadcast constructor.
// This test uses different data types, sizes and different simd constructor
Expand Down