From 32dd41a728ce10113032e20955ba08f8de449857 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sun, 12 Sep 2021 14:01:55 +0200 Subject: Start using C++ cuda-api-wrapper instead of raw CUDA --- tangle/taylor-couette.cu | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'tangle/taylor-couette.cu') diff --git a/tangle/taylor-couette.cu b/tangle/taylor-couette.cu index 2e69bfb..6b39afa 100644 --- a/tangle/taylor-couette.cu +++ b/tangle/taylor-couette.cu @@ -15,7 +15,11 @@ using T = float; using DESCRIPTOR = descriptor::D3Q19; int main() { -cudaSetDevice(0); +if (cuda::device::count() == 0) { + std::cerr << "No CUDA devices on this system" << std::endl; + return -1; +} +auto current = cuda::device::current::get(); const descriptor::Cuboid cuboid(500, 96, 96); Lattice lattice(cuboid); @@ -55,7 +59,7 @@ auto bulk_list = materials.list_of_material(1); auto wall_mask = materials.mask_of_material(2); auto wall_list = materials.list_of_material(2); -cudaDeviceSynchronize(); +cuda::synchronize(current); VolumetricExample renderer(cuboid); renderer.add(lattice, bulk_mask, inner_cylinder); -- cgit v1.2.3