Skip to content

Commit a2e45e0

Browse files
committed
fix the ghost problem and (temorarily) divided by zero sum problem
1 parent 1bc8387 commit a2e45e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neural_renderer/cuda/load_textures_cuda_kernel.cu

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ __global__ void load_textures_cuda_kernel(
4141
scalar_t dim0 = ((i / (ts * ts)) % ts) / (ts - 1.) ;
4242
scalar_t dim1 = ((i / ts) % ts) / (ts - 1.);
4343
scalar_t dim2 = (i % ts) / (ts - 1.);
44-
if (1 < dim0 + dim1 + dim2) {
44+
if (0 < dim0 + dim1 + dim2) {
4545
float sum = dim0 + dim1 + dim2;
4646
dim0 /= sum;
4747
dim1 /= sum;

0 commit comments

Comments
 (0)