Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
diff-gaussian-rasterization
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alan de Oliveira
diff-gaussian-rasterization
Commits
fc0cfe90
Unverified
Commit
fc0cfe90
authored
Jul 12, 2023
by
Snosixtyboo
Committed by
GitHub
Jul 12, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1 from grgkopanas/main_fix
Two bugs and a gitignore
parents
c78d81f5
74155ec8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
7 deletions
+11
-7
.gitignore
.gitignore
+3
-0
rasterizer_impl.cu
cuda_rasterizer/rasterizer_impl.cu
+8
-7
No files found.
.gitignore
0 → 100644
View file @
fc0cfe90
build/
diff_gaussian_rasterization.egg-info/
dist/
cuda_rasterizer/rasterizer_impl.cu
View file @
fc0cfe90
...
...
@@ -132,9 +132,9 @@ __global__ void identifyTileRanges(int L, uint64_t* point_list_keys, uint2* rang
ranges[prevtile].y = 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
...
...
@@ -310,11 +310,12 @@ int CudaRasterizer::Rasterizer::forward(
cudaMemset(imgState.ranges, 0, tile_grid.x * tile_grid.y * sizeof(uint2));
// Identify start and end of per-tile workloads in sorted list
identifyTileRanges << <(num_rendered + 255) / 256, 256 >> > (
num_rendered,
binningState.point_list_keys,
imgState.ranges
);
if (num_rendered > 0)
identifyTileRanges << <(num_rendered + 255) / 256, 256 >> > (
num_rendered,
binningState.point_list_keys,
imgState.ranges
);
// Let each tile blend its range of Gaussians independently in parallel
const float* feature_ptr = colors_precomp != nullptr ? colors_precomp : geomState.rgb;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment