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

[SYCL] Add bf16 aspect #888

Merged
merged 5 commits into from
Jun 13, 2022
Merged
Changes from 1 commit
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
3 changes: 3 additions & 0 deletions SYCL/Basic/aspects.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ int main() {
if (plt.has(aspect::fp64)) {
std::cout << " fp64" << std::endl;
}
if (plt.has(aspect::bf16)) {
std::cout << " bf16" << std::endl;
}
if (plt.has(aspect::int64_base_atomics)) {
std::cout << " base atomic operations" << std::endl;
}
Expand Down