Skip to content

Commit

Permalink
gpu ci 4
Browse files Browse the repository at this point in the history
  • Loading branch information
mspronesti committed Jul 29, 2024
1 parent 41f0b51 commit 50b4e17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/sycl/adamw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ int main(int argc, char** argv) {

// Allocate device memory
sycl::queue q(sycl::default_selector_v, sycl::property::queue::in_order());
std::cout << "Running on: " << q.get_device().get_info<sycl::info::device::name>() << "\n
std::cout << "Running on: " << q.get_device().get_info<sycl::info::device::name>() << '\n';

float* d_params = sycl::malloc_device<float>(num_parameters, q);
float* d_grads = sycl::malloc_device<float>(num_parameters, q);
Expand Down

0 comments on commit 50b4e17

Please sign in to comment.