We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bc8387 commit a2e45e0Copy full SHA for a2e45e0
neural_renderer/cuda/load_textures_cuda_kernel.cu
@@ -41,7 +41,7 @@ __global__ void load_textures_cuda_kernel(
41
scalar_t dim0 = ((i / (ts * ts)) % ts) / (ts - 1.) ;
42
scalar_t dim1 = ((i / ts) % ts) / (ts - 1.);
43
scalar_t dim2 = (i % ts) / (ts - 1.);
44
- if (1 < dim0 + dim1 + dim2) {
+ if (0 < dim0 + dim1 + dim2) {
45
float sum = dim0 + dim1 + dim2;
46
dim0 /= sum;
47
dim1 /= sum;
0 commit comments