MUDA
Loading...
Searching...
No Matches
cuda_vec_utils.h
1#pragma once
2#include <muda/muda_def.h>
3#include <vector_types.h>
4
5namespace muda
6{
7MUDA_INLINE MUDA_GENERIC int2 operator+(const int2& a, const int2& b)
8{
9 return make_int2(a.x + b.x, a.y + b.y);
10}
11} // namespace muda