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: 2 additions & 0 deletions SYCL/XPTI/Inputs/buffer_info_collector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,8 @@ void parseMetadata(xpti::trace_event_data_t *Event) {
<< arg.size << ", " << arg.index << "} "
<< "\n";
}
} else {
std::cout << "\n";
}
}
XPTI_CALLBACK_API void syclCallback(uint16_t TraceType,
Expand Down
4 changes: 4 additions & 0 deletions SYCL/XPTI/kernel/basic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ int main() {
})
.wait();

// CHECK: Wait begin|{{.*}}.cpp:[[# @LINE + 2]]:3
// CHECK: Wait end|{{.*}}.cpp:[[# @LINE + 1]]:3
Queue.wait();

// CHECK: {{[0-9]+}}|Construct accessor|[[BUFFERID]]|[[ACCID3:.*]]|2018|1024|{{.*}}.cpp:[[# @LINE + 1]]:15
{ auto HA = Buf.get_access<mode::read>(); }

Expand Down