Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

[SYCL] Adjust stream test to use new member function names #1573

Merged
merged 1 commit into from
Feb 22, 2023
Merged
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
4 changes: 2 additions & 2 deletions SYCL/Basic/stream/stream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ int main() {
Queue.submit([&](handler &CGH) {
stream Out(1024, 80, CGH,
property_list{property::buffer::context_bound{Context}});
assert(Out.get_size() == 1024);
assert(Out.get_max_statement_size() == 80);
assert(Out.size() == 1024);
assert(Out.get_work_item_buffer_size() == 80);
assert(Out.has_property<property::buffer::context_bound>());
assert(!Out.has_property<property::queue::in_order>());
assert(
Expand Down