Unverified Commit fc0cfe90 by Snosixtyboo Committed by GitHub

Merge pull request #1 from grgkopanas/main_fix

Two bugs and a gitignore
parents c78d81f5 74155ec8
build/
diff_gaussian_rasterization.egg-info/
dist/
...@@ -132,9 +132,9 @@ __global__ void identifyTileRanges(int L, uint64_t* point_list_keys, uint2* rang ...@@ -132,9 +132,9 @@ __global__ void identifyTileRanges(int L, uint64_t* point_list_keys, uint2* rang
ranges[prevtile].y = idx; ranges[prevtile].y = idx;
ranges[currtile].x = idx; ranges[currtile].x = idx;
} }
if (idx == L - 1)
ranges[currtile].y = L;
} }
if (idx == L - 1)
ranges[currtile].y = L;
} }
// Mark Gaussians as visible/invisible, based on view frustum testing // Mark Gaussians as visible/invisible, based on view frustum testing
...@@ -310,11 +310,12 @@ int CudaRasterizer::Rasterizer::forward( ...@@ -310,11 +310,12 @@ int CudaRasterizer::Rasterizer::forward(
cudaMemset(imgState.ranges, 0, tile_grid.x * tile_grid.y * sizeof(uint2)); cudaMemset(imgState.ranges, 0, tile_grid.x * tile_grid.y * sizeof(uint2));
// Identify start and end of per-tile workloads in sorted list // Identify start and end of per-tile workloads in sorted list
identifyTileRanges << <(num_rendered + 255) / 256, 256 >> > ( if (num_rendered > 0)
num_rendered, identifyTileRanges << <(num_rendered + 255) / 256, 256 >> > (
binningState.point_list_keys, num_rendered,
imgState.ranges binningState.point_list_keys,
); imgState.ranges
);
// Let each tile blend its range of Gaussians independently in parallel // Let each tile blend its range of Gaussians independently in parallel
const float* feature_ptr = colors_precomp != nullptr ? colors_precomp : geomState.rgb; const float* feature_ptr = colors_precomp != nullptr ? colors_precomp : geomState.rgb;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment