Skip to content

Commit

Permalink
Fix SYCL
Browse files Browse the repository at this point in the history
  • Loading branch information
WeiqunZhang committed Dec 12, 2023
1 parent 10ebe21 commit f9e9faf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Src/Base/AMReX_GpuTypes.H
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ struct Dim1 {
struct gpuStream_t {
sycl::queue* queue = nullptr;
bool operator== (gpuStream_t const& rhs) noexcept { return queue == rhs.queue; }
bool operator!= (gpuStream_t const& rhs) noexcept { return queue != rhs.queue; }
};

#endif
Expand Down

0 comments on commit f9e9faf

Please sign in to comment.