REVIEW 4 major objections 6 minor 1 cited by
Efficient 3D Gaussian Splatting with Axis-Shared Rasterization and Order-independent Transmittance
T0 review · 4 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read This paper claims that 3D Gaussian splatting can run in real time on edge hardware by replacing explicit depth sorting with a tiny learned decay function and reusing shared axis terms in rasterization, achieving 23.4–27.8x speedup and…
desk verdict Rasterization factorization is a real contribution; the neural sorting is a per-scene fit, not a general replacement, and the abstract overstates partial speedups as end-to-end. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
Two mechanisms carry the argument. Axis-shared rasterization: for a $16\times16$ tile, dedicated X-PE and Y-PE lines compute the X-axis term, Y-axis term, squared terms, and cross-term coefficient once, then broadcast them to a $16\times16$ PE array where each PE only combines the received values (2 multiply, 2 add, 1 exponential per pixel instead of 8 multiply, 4 add). Neural sorting: a two-layer MLP with Leaky ReLU hidden activation and exponential output takes depth $d_i$ and outputs the decay factor $F(d_i)$; its 6 MACs fit inside the same reconfigurable PE array, which switches between rasterization mode and sorting mode. Supporting hardware mechanisms include a fine-grained interleaved pipeline that overlaps the memory-bound MLP sorting of the next subtile with rasterization of the current one, and a generalized $\pi$-trajectory tile schedule (a Hilbert-like ordering) that raises the Gaussian feature cache hit rate from 43% to 62%.
What would settle it
Take a scene with many overlapping semi-transparent Gaussians at similar depths (foliage, glass layers, smoke), fine-tune the MLP with the paper's recipe, and render novel views; if the average PSNR gap to the full sorted baseline exceeds the roughly 1 dB reported here, or if artifacts such as see-through occluders appear, the order-independent decay assumption is falsified. A more direct test is to compare the learned $F(d_i)$ against the true transmittance $\prod_{j<i}(1-\alpha_j)$ for a fixed checkpoint: systematic mismatch in high-occlusion tiles would show the MLP is learning a scene-specific heuristic rather than a general transmittance model.
Extended reading notes
Core claim
The central claim is that sorting in 3DGS exists only to compute a per-Gaussian decay factor (the transmittance), and that this decay can be learned rather than explicitly ordered. A tiny MLP with only 10 parameters and 6 MACs maps Gaussian depth $d_i$ to a decay $F(d_i)$, replacing the front-to-back product $T_i = \prod_{j<i}(1-\alpha_j)$ with $F(d_i)$ inside the weighted sum $C = \sum_i F(d_i)\alpha_i c_i / \sum_i F(d_i)\alpha_i$. The paper reports that, when trained from a pretrained sorting-based checkpoint with clone/split disabled and with the MLP learning faster than the Gaussians, this order-independent blending produces rendering quality close to the baseline and better than the prior sort-free weighted-sum approach (average PSNR 26.50 vs 25.43). Alongside this, the paper claims that axis-oriented rasterization reduces the $\alpha$-computation MAC count by up to 63% with no loss of parallelism.
Load-bearing premise
The load-bearing premise is that a single per-scene 10-parameter function of depth alone, trained from a sorted-checkpoint initialization, can reproduce the visual effect of exact front-to-back alpha blending on arbitrary tiles and views; if it cannot on scenes with complex occlusion or view-dependent transparency, the 'negligible quality loss' claim fails even though the rasterization hardware would still work.
Editorial extensions
If this is right
- Rendering quality stays within roughly 1 dB PSNR of fully sorted 3DGS while removing the sorting unit from the hardware pipeline; rasterization alone runs at 16.9–20.4x the speed of the edge GPU, exceeding 150 FPS on the tested scenes.
- A dedicated 16x16 FP16 array at 3.85 mm^2 and 1.64 W in 28nm can meet real-time (over 50 FPS end-to-end) rendering on MipNeRF-360 scenes, with 23.4–27.8x speedup and 28.8–51.4x energy savings over an edge GPU.
- Replacing per-pixel parallel rasterization with axis-shared, broadcast terms cuts the alpha-computation cost from 8 multiplications and 4 additions to 2 and 2 per pixel, reducing total multiplier count by about 63% while keeping one Gaussian-per-cycle throughput.
- The interleaved pipeline makes sorting latency effectively negligible: even a naive pipelined version is 102–525x faster than GPU sorting, and the interleaved version reaches roughly 2000x by hiding memory-bound MLP evaluation behind rasterization.
- The generalized pi-trajectory tile schedule reduces off-chip energy by 2.56x versus a design without cache and by 1.23x versus the Z-trajectory, because it exploits horizontal, vertical, and hierarchical locality in tile traversal.
Reading between the lines
- If the central claim holds, the 'sorting is just a decay function' idea may transfer to other order-dependent compositing pipelines, such as particle systems or layered volume rendering, but the depth-to-decay MLP would need per-scene retraining because the paper only demonstrates per-scene fits.
- The reported end-to-end speedup (7.8–11.5x) is much smaller than the 23.4–27.8x speedup for rasterization plus sorting, because Gaussian projection still runs on the edge GPU; a full-system benefit would require accelerating projection too, which the paper explicitly leaves to the GPU.
- The requirement to start from a pretrained sorting-based checkpoint and to disable clone/split means the method is a fine-tuning recipe, not a from-scratch training pipeline; scenes trained from scratch with the MLP did not converge in the paper's experiments, so adoption in training-from-scratch workflows would need a different initialization strategy.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript proposes an algorithm-hardware co-design for 3D Gaussian splatting (3DGS). It makes three main contributions: (i) axis-oriented rasterization, which factors the per-pixel Gaussian exponent computation into shared X-axis and Y-axis terms and combines them in each PE, reducing the per-PE arithmetic from 8 multipliers and 4 adders to about 2.25 multipliers and 2.19 adders when including the support PE lines; (ii) a neural sorting scheme that replaces explicit depth sorting with a two-layer, 10-parameter MLP mapping depth d_i to a decay factor F(d_i), used in a normalized weighted sum (Eq. 4); and (iii) a 16x16 reconfigurable PE array that supports both rasterization and MLP inference, together with a fine-grained interleaved pipeline and a pi-trajectory tile schedule. Experiments on six MipNeRF-360 scenes report PSNR 26.50 on average versus 27.45 for a sorted baseline, and hardware evaluations report 23.4-27.8x speedup and 28.8-51.4x energy savings over an edge GPU, plus 1.94-2.39x area-efficiency and 1.36-1.89x energy-efficiency gains over GSCore.
Significance. The axis-shared rasterization identity is a legitimate and clearly explained arithmetic saving: the per-PE MAC reduction is substantial, and the hardware design is presented in enough detail (RTL synthesis, cycle-accurate simulator cross-validated with RTL, CACTI and DRAMPower estimates) to be credible as an engineering contribution. The design-space exploration of the MLP and the ablation study isolating each optimization are also strengths. The paper is less convincing on the algorithmic side: the claim that neural sorting 'preserves rendering quality' is the load-bearing premise for the whole co-design, and that premise currently rests on a per-scene co-training procedure whose comparison baseline is not matched in training budget. If the quality claim can be re-benchmarked and appropriately scoped, the hardware contributions would merit publication.
major comments (4)
- [Sec. 4.1-4.2, Eq. (4)] The central algorithmic claim that Eq. (4) can replace exact front-to-back alpha blending with negligible quality loss is not backed by a correctness argument or a controlled experiment. Exact transmittance in Eq. (3) is T_i = prod_{j<i}(1-alpha_j), which depends on the accumulated opacity of every preceding Gaussian and on their order. A scalar function F(d_i) of depth alone cannot represent such order-dependent interactions in general. The paper itself reports in Sec. 4.2 that co-training the MLP and Gaussians from scratch fails and that freezing the Gaussians while training only the MLP also fails, which shows that the method is not a drop-in sorting replacement for a fixed scene model. The quality numbers in Table 1 are therefore the result of a co-trained model with an additional 15,000 iterations of fine-tuning, not a demonstration that sorting can be omitted without quality loss. Please report the frozen-Gaussian baseline quantitatively and compare against the sorted baseline at matched total training budget.
- [Sec. 6.1 and Table 1] The quality comparison is confounded by training protocol. The baseline is trained for 7,000 epochs, while the neural-sorting model starts from that checkpoint and is trained for a further 15,000 epochs with the Gaussian learning rate scaled by 0.01, clone and split disabled, and the best-PSNR checkpoint selected. This gives the proposed method a longer and differently regularized training schedule, so the reported average gap of 0.95 dB PSNR and the per-scene gaps of 1.43-1.55 dB on Room and Bonsai cannot be attributed to the sorting-free formulation alone. The comparison with the sort-free method [16] is also a reproduction under the authors' own framework; the reproduction protocol is not described in enough detail to assess fairness. Please provide per-scene PSNR curves over training time and the exact settings used for the [16] baseline.
- [Sec. 6.1-6.2] Generalization to unseen scenes is not evaluated. The MLP F(d_i) is trained per scene on the same reconstruction loss used to report quality, so the 'negligible quality loss' claim in the abstract and Sec. 6.5 is only demonstrated on the six training scenes. Scenes with more complex occlusion (Room, Bonsai) already show the largest gaps. To support the architecture-algorithm co-design claim, the authors should either evaluate cross-scene transfer (e.g., train the MLP on one scene and test on held-out scenes or held-out views with denser occlusion) or explicitly limit the claim to per-scene fine-tuned deployment.
- [Sec. 6.5, Fig. 17] The headline speedup numbers mix algorithmic and hardware contributions in a way that could mislead. The sorting+rasterization speedup of 23.4-27.8x drops to 7.8-11.5x end-to-end once the edge GPU executes projection, and the comparison with GSCore is reported as area efficiency and energy efficiency rather than end-to-end latency. Please state clearly whether the GSCore comparison includes projection and memory system effects, and report end-to-end latency/energy for both designs under the same workload. Without this, the claimed advantage over prior accelerators is not directly comparable.
minor comments (6)
- [Title/Abstract/Sec. 3] The arXiv abstract and the full-text title differ ('Axis-Shared Rasterization and Order-independent Transmittance' vs. 'Neural Sorting and Axis-Oriented Rasterization'), and the abstract states a MAC reduction of up to 38% while Sec. 3 states 63%; please align these.
- [Eq. (3)] Eq. (3) uses alpha_i inside the product for T_i; it should be alpha_j (or alpha_{j}) to be correct.
- [Throughout] There are numerous typos and inconsistent terms, e.g., 'PNSR' for PSNR, 'redundency', 'minized', and alternating 'GScore'/'GSCore'; please proofread.
- [Sec. 6.1] '7000epochs' is presumably 'iterations' or 'steps' (the original 3DGS trains for 30k iterations); please clarify the training schedule and use the same unit throughout.
- [Fig. 13] In Fig. 13, the PSNR differences across activation functions are small (roughly 25.1-25.9 dB); please indicate whether these differences are consistent across scenes or only shown for Garden.
- [Abstract/Code availability] The paper states the code is open source at a GitHub URL containing 'ISCA26'; if the manuscript is intended for journal review, the URL should not pre-commit to a specific conference.
Circularity Check
No significant circularity: the learned transmittance is a per-scene trained approximation validated against external baselines, not a quantity forced by construction.
full rationale
The paper's central algorithmic claim is that a tiny MLP can replace explicit depth sorting by producing a depth-dependent decay factor F(d_i) in the weighted-OIT-style equation (4). This is a learned approximation, not an algebraic derivation: F(d_i) is not constructed to equal the exact transmittance T_i = prod_{j<i}(1-alpha_j) from equation (3), and the paper never claims equality. Instead, the MLP is an independent 10-parameter function optimized end-to-end against the image reconstruction loss on MipNeRF-360 scenes, with the resulting rendering compared to a sorted 3DGS baseline. The quality comparison is therefore an empirical result, not a tautology. The paper's own admissions that co-training from scratch fails and that freezing the Gaussians while training only the MLP does not work (Sec. 4.2) narrow the scope of the claim: the method requires initialization from a sorting-based pretrained checkpoint and subsequent co-training. But this is a limitation and a contingency of the training procedure, not a circular reduction, because the MLP outputs are not defined in terms of the quantity they are said to predict. The hardware claims are also self-contained: axis-oriented rasterization is an arithmetic restructuring with a concrete MAC count, and the speedup/energy numbers come from a cycle-accurate simulator compared against an external GSCore implementation and a Jetson edge GPU. The only apparent self-citation is GSArch [12] in related work, and it is not load-bearing. Potential concerns about per-scene fitting and checkpoint selection by PSNR are correctness or overfitting risks, not circularity under the definitions used here. No step in the paper's derivation chain reduces, by construction or self-citation, to its own inputs.
Assumptions & free parameters
free parameters (5)
- MLP weights and biases for F(d) =
10 values, not listed in paper
- MLP learning rate =
0.005
- Gaussian learning rate scaling factor =
0.01
- Training epoch counts =
7000 baseline, 15000 neural sorting, best PSNR checkpoint
- Leaky ReLU negative slope =
1/8
assumptions (4)
- domain assumption Exact front-to-back alpha blending in 3DGS can be approximated by weighted sum rendering with a single depth-dependent factor F(d_i).
- ad hoc to paper A 2-layer, 10-parameter MLP with only depth as input is sufficient to represent the needed decay factor across a scene.
- domain assumption The pretrained 3DGS checkpoint from the original sorting-based pipeline is a valid initialization for the sort-free pipeline.
- domain assumption The cycle-accurate simulator and RTL synthesis correctly model the proposed hardware and the GSCore baseline.
Cite this review
Pith. "Pith review of Efficient 3D Gaussian Splatting with Axis-Shared Rasterization and Order-independent Transmittance." pith.science (2026). https://pith.science/paper/NZ7BQI4L
@misc{pith2026250607069,
author = {Pith},
title = {Pith review of: Efficient 3D Gaussian Splatting with Axis-Shared Rasterization and Order-independent Transmittance},
year = {2026},
howpublished = {\url{https://pith.science/paper/NZ7BQI4L}},
note = {Machine review of arXiv:2506.07069}
}
read the original abstract
3D Gaussian Splatting (3DGS) has emerged as a powerful technique for novel view synthesis, combining high-quality reconstruction with efficient rendering. It has been widely adopted in domains such as AR/VR, robotics, and autonomous driving. However, achieving real-time performance on resource-constrained platforms remains challenging due to strict power and area budgets. Prior accelerators improve hardware performance but still overlook key inefficiencies, including insufficient rasterization efficiency, poor sorting scalability, and pipeline imbalance. This paper presents an architecture-algorithm co-design to address these challenges. First, we propose axis-shared rasterization, which precomputes and reuses common terms along the X- and Y-axes, reducing multiply-and-accumulate (MAC) operations by up to 38% while preserving high parallelism. Second, we develop a novel order-independent transmittance method that removes the need for explicit sorting by leveraging a lightweight multilayer perceptron (MLP) to directly approximate the transmittance of each Gaussian, enabling efficient alpha blending with negligible quality loss. Third, we design a unified reconfigurable PE array that supports both rasterization and MLP inference, sustaining high utilization without costly sorting hardware. Our experiments demonstrate that our design preserves rendering quality while achieving a 1.33 to 1.88x speedup over state-of-the-art 3DGS accelerators. Our code is open source at https://github.com/WangZhican/ISCA26_3DGS_Acc.
Figures
Figures from the paper (13 more)
Forward citations
Cited by 1 Pith paper
-
DeGS: A Scalable 3DGS Architecture via Decoupled Workload Parsing and Reorganization
DeGS restructures 3DGS rendering into span parsing, task reorganization, and dense blending stages, achieving 1.8x-7.2x speedup and >80% scaling utilization over prior 3DGS accelerators.
Reference graph
Works this paper leans on
-
[16]
Qiqi Hou, Randall Rauwendaal, Zifeng Li, Hoang Le, Farzad Farhadzadeh, Fatih Porikli, Alexei Bourd, and Amir Said. 2024. Sort-free Gaussian Splatting via Weighted Sum Rendering.arXiv preprint arXiv:2410.18931(2024)
arXiv 2024
-
[1]
2022.NVIDIA Jetson Xavier NX-based AI Vision System
ADLINK Technology Inc. 2022.NVIDIA Jetson Xavier NX-based AI Vision System. https://www.adlinktech.com/en/news/nvidia-xavier-nxbasedpoe-ai- vision-system
work page 2022
-
[2]
Jonathan T Barron, Ben Mildenhall, Dor Verbin, Pratul P Srinivasan, and Peter Hedman. 2022. Mip-nerf 360: Unbounded anti-aliased neural radiance fields. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition. 5470–5479
2022
-
[3]
Loren Carpenter. 1984. The A-buffer, an antialiased hidden surface method. In Proceedings of the 11th annual conference on Computer graphics and interactive techniques. 103–108
work page 1984
-
[4]
Karthik Chandrasekar, Christian Weis, Yonghui Li, Benny Akesson, Norbert Wehn, and Kees Goossens. 2012. DRAMPower: Open-source DRAM power & energy estimation tool.URL: http://www. drampower. info22 (2012)
work page 2012
-
[5]
Eric Enderton, Erik Sintorn, Peter Shirley, and David Luebke. 2010. Stochastic transparency. InProceedings of the 2010 ACM SIGGRAPH symposium on Interactive 3D Graphics and Games. 157–164
work page 2010
-
[6]
Cass Everitt. 2001. Interactive order-independent transparency.White paper, nVIDIA2, 6 (2001), 7
work page 2001
-
[7]
Zhiwen Fan, Kevin Wang, Kairun Wen, Zehao Zhu, Dejia Xu, Zhangyang Wang, et al. 2024. Lightgaussian: Unbounded 3d gaussian compression with 15x reduc- tion and 200+ fps.Advances in neural information processing systems37 (2024), 140138–140158
2024
Show all 46 references
-
[8]
Guangchi Fang and Bing Wang. 2024. Mini-splatting: Representing scenes with a constrained number of gaussians. InEuropean Conference on Computer Vision. Springer, 165–181
2024
-
[9]
Guangchi Fang and Bing Wang. 2024. Mini-Splatting2: Building 360 Scenes within Minutes via Aggressive Gaussian Densification.arXiv preprint arXiv:2411.12788 (2024)
2024
-
[10]
Sharath Girish, Kamal Gupta, and Abhinav Shrivastava. 2024. Eagles: Efficient accelerated 3d gaussians with lightweight encodings. InEuropean Conference on Computer Vision. Springer, 54–71
2024
-
[11]
Frank Gray. 1953. Pulse code communication.United States Patent Number 2632058(1953)
1953
-
[12]
Houshu He, Gang Li, Fangxin Liu, Li Jiang, Xiaoyao Liang, and Zhuoran Song
-
[13]
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. 2015. Delving deep into rectifiers: Surpassing human-level performance on imagenet classification. InProceedings of the IEEE international conference on computer vision. 1026–1034
2015
-
[14]
David Hilbert and David Hilbert. 1935. Über die stetige Abbildung einer Linie auf ein Flächenstück.Dritter Band: Analysis·Grundlagen der Mathematik·Physik Verschiedenes: Nebst Einer Lebensgeschichte(1935), 1–2
1935
-
[15]
Charles Antony Richard Hoare. 1961. Algorithm 64: quicksort.Commun. ACM 4, 7 (1961), 321
1961
-
[17]
Mihai F Ionescu and Klaus E Schauser. 1997. Optimizing parallel bitonic sort. In Proceedings 11th International Parallel Processing Symposium. IEEE, 303–309
1997
-
[18]
Bernhard Kerbl, Georgios Kopanas, Thomas Leimkühler, and George Drettakis
-
[19]
Mustafa Khan, Hamidreza Fazlali, Dhruv Sharma, Tongtong Cao, Dongfeng Bai, Yuan Ren, and Bingbing Liu. 2024. Autosplat: Constrained gaussian splatting for autonomous driving scene reconstruction.arXiv preprint arXiv:2407.02598 (2024)
2024 arXiv
-
[20]
Yoongu Kim, Weikun Yang, and Onur Mutlu. 2015. Ramulator: A fast and extensible DRAM simulator.IEEE Computer architecture letters15, 1 (2015), 45–49
2015
-
[21]
Siddharth Krishna Kumar. 2017. On weight initialization in deep neural networks. arXiv preprint arXiv:1704.08863(2017)
2017 arXiv
-
[22]
Junseo Lee, Seokwon Lee, Jungi Lee, Junyong Park, and Jaewoong Sim. 2024. Gscore: Efficient radiance field rendering via architectural support for 3d gaussian splatting. InProceedings of the 29th ACM International Conference on Architectural Support for Programming Languages a...
2024
-
[23]
Weikai Lin, Yu Feng, and Yuhao Zhu. 2025. MetaSapiens: Real-Time Neural Rendering with Efficiency-Aware Pruning and Accelerated Foveated Rendering. InProceedings of the 30th ACM International Conference on Architectural Sup- port for Programming Languages and Operating Systems...
2025
-
[24]
Morgan McGuire and Louis Bavoil. 2013. Weighted blended order-independent transparency.Journal of Computer Graphics Techniques2, 4 (2013)
2013
-
[25]
Ben Mildenhall, Pratul P Srinivasan, Matthew Tancik, Jonathan T Barron, Ravi Ramamoorthi, and Ren Ng. 2021. Nerf: Representing scenes as neural radiance fields for view synthesis.Commun. ACM65, 1 (2021), 99–106
2021
-
[26]
Guy M Morton. 1966. A computer oriented geodetic data base and a new tech- nique in file sequencing. (1966)
1966
-
[27]
Cedrick Münstermann, Stefan Krumpen, Reinhard Klein, and Christoph Peters
-
[28]
Naveen Muralimanohar, Rajeev Balasubramonian, and Norman P Jouppi. 2009. CACTI 6.0: A tool to model large caches.HP laboratories27 (2009), 28
2009
-
[29]
Michael Niemeyer, Fabian Manhardt, Marie-Julie Rakotosaona, Michael Oechsle, Daniel Duckworth, Rama Gosula, Keisuke Tateno, John Bates, Dominik Kaeser, and Federico Tombari. 2024. Radsplat: Radiance field-informed gaussian splatting for robust real-time rendering with 900+ fps...
2024 arXiv
-
[30]
Thomas Porter and Tom Duff. 1984. Compositing digital images. InProceedings of the 11th annual conference on Computer graphics and interactive techniques. 253–259
1984
-
[31]
David P Rodgers. 1985. Improvements in multiprocessor system design.ACM SIGARCH Computer Architecture News13, 3 (1985), 225–231
1985
-
[32]
1995.Alpha and the history of digital compositing
Alvy Ray Smith. 1995.Alpha and the history of digital compositing. Technical Report. Citeseer
1995
-
[33]
Synopsys, Inc. [n. d.]. DesignWare Library. https://www.synopsys.com/ designware-ip/soc-infrastructure-ip/designware-library.html
-
[34]
Xuechang Tu, Bernhard Kerbl, and Fernando de la Torre. 2024. Fast and robust 3D Gaussian splatting for virtual reality. InSIGGRAPH Asia 2024 Posters. 1–3
2024
-
[35]
Samuel Williams, Andrew Waterman, and David Patterson. 2009. Roofline: an insightful visual performance model for multicore architectures.Commun. ACM 52, 4 (2009), 65–76
2009
-
[36]
Lizhou Wu, Haozhe Zhu, Siqi He, Jiapei Zheng, Chixiao Chen, and Xiaoyang Zeng. 2024. GauSPU: 3D Gaussian Splatting Processor for Real-Time SLAM Systems. In2024 57th IEEE/ACM International Symposium on Microarchitecture (MICRO). IEEE, 1562–1573
2024
-
[37]
Jin Xu, Zishan Li, Bowen Du, Miaomiao Zhang, and Jing Liu. 2020. Reluplex made more practical: Leaky ReLU. In2020 IEEE Symposium on Computers and communications (ISCC). IEEE, 1–7
2020
-
[38]
Vickie Ye, Ruilong Li, Justin Kerr, Matias Turkulainen, Brent Yi, Zhuoyang Pan, Otto Seiskari, Jianbo Ye, Jeffrey Hu, Matthew Tancik, et al . 2025. gsplat: An open-source library for Gaussian splatting.Journal of Machine Learning Research 26, 34 (2025), 1–17
2025
-
[39]
Zhifan Ye, Yonggan Fu, Jingqun Zhang, Leshu Li, Yongan Zhang, Sixu Li, Cheng Wan, Chenxi Wan, Chaojian Li, Sreemanth Prathipati, and Yingyan (Celine) Lin
-
[40]
Zhifan Ye, Chenxi Wan, Chaojian Li, Jihoon Hong, Sixu Li, Leshu Li, Yongan Zhang, and Yingyan Celine Lin. 2024. 3D Gaussian Rendering Can Be Sparser: Ef- ficient Rendering via Learned Fragment Pruning.Advances in Neural Information Processing Systems37 (2024), 5850–5869
2024
-
[41]
Hongjia Zhai, Xiyu Zhang, Boming Zhao, Hai Li, Yijia He, Zhaopeng Cui, Hujun Bao, and Guofeng Zhang. 2025. Splatloc: 3D Gaussian splatting-based visual lo- calization for augmented reality.IEEE Transactions on Visualization and Computer Graphics(2025)
2025
-
[42]
Siting Zhu, Guangming Wang, Xin Kong, Dezhi Kong, and Hesheng Wang. 2024. 3D Gaussian splatting in robotics: A survey.arXiv preprint arXiv:2410.12262 (2024). 12
2024 arXiv
-
[43]
InProceedings of the 2025 IEEE International Sympo- sium on High Performance Computer Architecture (HPCA)
Gaussian Blending Unit: An Edge GPU Plug-in for Real-Time Gaussian- Based Rendering in AR/VR. InProceedings of the 2025 IEEE International Sympo- sium on High Performance Computer Architecture (HPCA). IEEE
2025
-
[2018]
Moment-based order-independent transparency.Proceedings of the ACM on Computer Graphics and Interactive Techniques1, 1 (2018), 1–20
2018
-
[2023]
Graph.42, 4 (2023), 139–1
3D Gaussian splatting for real-time radiance field rendering.ACM Trans. Graph.42, 4 (2023), 139–1
2023
-
[2025]
InProceedings of the 2025 IEEE International Symposium on High Performance Computer Architecture (HPCA)
GSArch: Breaking Memory Barriers in 3D Gaussian Splatting Training via Architectural Support. InProceedings of the 2025 IEEE International Symposium on High Performance Computer Architecture (HPCA). IEEE
2025
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.