File tree 4 files changed +8
-6
lines changed
4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ __pycache__/
6
6
7
7
# C extensions
8
8
* .so
9
+ * .ninja *
10
+ * .o
9
11
10
12
# Distribution / packaging
11
13
.Python
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ at::Tensor create_texture_image_cuda(
10
10
11
11
// C++ interface
12
12
13
- #define CHECK_CUDA (x ) AT_ASSERT (x.type().is_cuda(), #x " must be a CUDA tensor" )
14
- #define CHECK_CONTIGUOUS (x ) AT_ASSERT (x.is_contiguous(), #x " must be contiguous" )
13
+ #define CHECK_CUDA (x ) AT_CHECK (x.type().is_cuda(), #x " must be a CUDA tensor" )
14
+ #define CHECK_CONTIGUOUS (x ) AT_CHECK (x.is_contiguous(), #x " must be contiguous" )
15
15
#define CHECK_INPUT (x ) CHECK_CUDA(x); CHECK_CONTIGUOUS(x)
16
16
17
17
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ at::Tensor load_textures_cuda(
12
12
13
13
// C++ interface
14
14
15
- #define CHECK_CUDA (x ) AT_ASSERT (x.type().is_cuda(), #x " must be a CUDA tensor" )
16
- #define CHECK_CONTIGUOUS (x ) AT_ASSERT (x.is_contiguous(), #x " must be contiguous" )
15
+ #define CHECK_CUDA (x ) AT_CHECK (x.type().is_cuda(), #x " must be a CUDA tensor" )
16
+ #define CHECK_CONTIGUOUS (x ) AT_CHECK (x.is_contiguous(), #x " must be contiguous" )
17
17
#define CHECK_INPUT (x ) CHECK_CUDA(x); CHECK_CONTIGUOUS(x)
18
18
19
19
Original file line number Diff line number Diff line change @@ -63,8 +63,8 @@ at::Tensor backward_depth_map_cuda(
63
63
64
64
// C++ interface
65
65
66
- #define CHECK_CUDA (x ) AT_ASSERT (x.type().is_cuda(), #x " must be a CUDA tensor" )
67
- #define CHECK_CONTIGUOUS (x ) AT_ASSERT (x.is_contiguous(), #x " must be contiguous" )
66
+ #define CHECK_CUDA (x ) AT_CHECK (x.type().is_cuda(), #x " must be a CUDA tensor" )
67
+ #define CHECK_CONTIGUOUS (x ) AT_CHECK (x.is_contiguous(), #x " must be contiguous" )
68
68
#define CHECK_INPUT (x ) CHECK_CUDA(x); CHECK_CONTIGUOUS(x)
69
69
70
70
std::vector<at::Tensor> forward_face_index_map (
You can’t perform that action at this time.
0 commit comments