Skip to content

Commit

Permalink
fixed remaining warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Konstantin Läufer <[email protected]>
  • Loading branch information
klaeufer committed Jan 12, 2024
1 parent ff96335 commit 93df0fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion matrix_mul/matrix_mul_dpcpp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ int main() {
// Initialize the device queue with the default selector. The device queue is
// used to enqueue kernels. It encapsulates all states needed for execution.
try {
queue q(default_selector{}, dpc_common::exception_handler);
sycl::queue q{sycl::default_selector_v, dpc_common::exception_handler};

cout << "Device: " << q.get_device().get_info<info::device::name>() << "\n";

Expand Down

0 comments on commit 93df0fa

Please sign in to comment.