Skip to content

Commit

Permalink
Fix SYCL version of CountIntersections function
Browse files Browse the repository at this point in the history
  • Loading branch information
lumurillo committed Nov 5, 2024
1 parent aa437b6 commit 1eec474
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/open3d/t/geometry/RaycastingScene.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -615,8 +615,8 @@ struct RaycastingScene::SYCLImpl : public RaycastingScene::Impl {
}

// Copy the initialized data to the device
queue_.memcpy(host_previous_geom_prim_ID_tfar.get(),
previous_geom_prim_ID_tfar,
queue_.memcpy(previous_geom_prim_ID_tfar,
host_previous_geom_prim_ID_tfar.get(),
num_rays * sizeof(callbacks::GeomPrimID))
.wait();

Expand Down

0 comments on commit 1eec474

Please sign in to comment.