Commit 03f17ca1 authored by Jeremy Reizenstein's avatar Jeremy Reizenstein Committed by Facebook GitHub Bot
Browse files

missing cudaGetLastError

Summary: Investigating a reported problem.

Reviewed By: MichaelRamamonjisoa

Differential Revision: D50791296

fbshipit-source-id: 8dc162b87d02debf05d16c2b4816fcd57234d7e0
parent a8c70161
...@@ -102,6 +102,7 @@ void forward( ...@@ -102,6 +102,7 @@ void forward(
self->workspace_d, self->workspace_d,
self->workspace_size, self->workspace_size,
stream); stream);
CHECKLAUNCH();
SORT_ASCENDING_WS( SORT_ASCENDING_WS(
self->min_depth_d, self->min_depth_d,
self->min_depth_sorted_d, self->min_depth_sorted_d,
...@@ -111,6 +112,7 @@ void forward( ...@@ -111,6 +112,7 @@ void forward(
self->workspace_d, self->workspace_d,
self->workspace_size, self->workspace_size,
stream); stream);
CHECKLAUNCH();
SORT_ASCENDING_WS( SORT_ASCENDING_WS(
self->min_depth_d, self->min_depth_d,
self->min_depth_sorted_d, self->min_depth_sorted_d,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment