Skip to content

Commit

Permalink
Change jit launch to safe_launch (#7510)
Browse files Browse the repository at this point in the history
Final step, closes #5133

Authors:
  - Devavret Makkar (@devavret)

Approvers:
  - Nghia Truong (@ttnghia)
  - Vukasin Milovanovic (@vuule)

URL: #7510
  • Loading branch information
devavret authored Mar 4, 2021
1 parent 85c1f8f commit b20f19d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/jit/launcher.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class launcher {
template <typename... Args>
void launch(Args... args)
{
get_kernel().configure_1d_max_occupancy(0, 0, 0, stream.value()).launch(args...);
get_kernel().configure_1d_max_occupancy(0, 0, 0, stream.value()).safe_launch(args...);
}

private:
Expand Down

0 comments on commit b20f19d

Please sign in to comment.