@@ -41,7 +41,7 @@ int main() {
4141 " the test will be skipped.\n " ;
4242 exit (EXIT_FAILURE);
4343 }
44-
44+
4545 // Run the test on each device
4646 for (const auto & device : devices) {
4747 Queue queue (device);
@@ -51,14 +51,14 @@ int main() {
5151 // Instantiate tracks on device. PortableDeviceCollection allocates
5252 // SoA on device automatically.
5353 constexpr auto nTracks = 1000 ;
54- constexpr auto nHits = nTracks * 5 ;
54+ constexpr auto nHits = nTracks * 5 ;
5555
56- TracksSoACollection tracks_d ({{nTracks,nHits}},queue);
56+ TracksSoACollection tracks_d ({{nTracks, nHits}}, queue);
5757 testTrackSoA::runKernels (tracks_d.view (), queue);
5858
5959 // Instantate tracks on host. This is where the data will be
6060 // copied to from device.
61- ::reco::TracksHost tracks_h ({{nTracks,nHits}},queue);
61+ ::reco::TracksHost tracks_h ({{nTracks, nHits}}, queue);
6262
6363 std::cout << " no. of tracks = " << tracks_h.view ().metadata ().size () << std::endl;
6464 alpaka::memcpy (queue, tracks_h.buffer (), tracks_d.const_buffer ());
0 commit comments