Skip to content

Commit

Permalink
run clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
TApplencourt committed Jan 30, 2025
1 parent bad8a04 commit fa38af0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adoc/extensions/sycl_khr_queue_empty_query.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ The example below demonstrates the usage of this extension.

[source,,linenums]
----
#include <iostream>
#include <algorithm>
#include <iostream>
#include <sycl/sycl.hpp>
int main() {
// Pool of queues, one per device
std::vector<sycl::queue> Qs;
for (sycl::device& d : sycl::platform{}.get_devices())
for (sycl::device& d : sycl::platform {}.get_devices())
Qs.push_back(sycl::queue(d));
// Useful recipe for load-balancing
Expand Down

0 comments on commit fa38af0

Please sign in to comment.