Papers › FlashFPS: Efficient Farthest Point Sampling for Large-Scale Point Clouds via Pruning...

FlashFPS: Efficient Farthest Point Sampling for Large-Scale Point Clouds via Pruning and Caching

20 Apr 2026arXiv:2604.17720added by Syntology

Yuzhe Fu, Hancheng Ye, Cong Guo, Junyao Zhang, Qinsi Wang, Yueqian Lin, Changchun Zhou, Hai, Li, Yiran Chen

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Point-based Neural Networks (PNNs) have become a key approach for point cloud processing. However, a core operation in these models, Farthest Point Sampling (FPS), often introduces significant inference latency, especially for large-scale processing. Despite existing CUDA- and hardware-level optimizations, FPS remains a major bottleneck due to exhaustive computations across multiple network layers in PNNs, which hinders scalability. Through systematic analysis, we identify three substantial redundancies in FPS, including unnecessary full-cloud computations, redundant late-stage iterations, and predictable inter-layer outputs that make later FPS computations avoidable. To address these, we propose \textbf{\textit{FlashFPS}}, a hardware-agnostic, plug-and-play framework for FPS acceleration, composed of \textit{FPS-Prune} and \textit{FPS-Cache}. \textit{FPS-Prune} introduces candidate pruning and iteration pruning to reduce redundant computations in FPS while preserving sampling quality, and \textit{FPS-Cache} eliminates layer-wise redundancy via cache-and-reuse. Integrated into existing CUDA libraries and state-of-the-art PNN accelerators, \textit{FlashFPS} achieves 5.16× speedup over the standard CUDA baseline on GPU and 2.69× on PNN accelerators, with negligible accuracy loss, enabling efficient and scalable PNN inference. Codes are released at https://github.com/Yuzhe-Fu/FlashFPS.

PaperPDFCode Syntology ran

In Syntology View this paper on Syntology: its repositories, every harvested function with whether it ran, its licence and the call to fetch it.

Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2604.17720")

Code

Syntology Ran 10 of 11 code samples harvested from 1 repository linked to this paper; 1 has no recorded run. Of those that ran: 1 ran · honoured contract; 9 ran with no contract checked.

By repository: found in paper text by Syntology: 11 samples from 1 repository, 10 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

Yuzhe-Fu/FlashFPS found in paper text by Syntology report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

11 samples harvested; 10 ran; 1 honoured the contract we drafted; 1 has no recorded run. Read from Syntology's graph 2026-09-25; that is when this build read the record, not when the samples ran.

1ran · honoured contract
9ran
1unverified

Licence: 11 of the 11 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from Yuzhe-Fu/FlashFPS. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

concat_collate_fn Yuzhe-Fu/FlashFPS/FlashFPS-Openpoints/openpoints/dataset/build.py found in paper text by Syntology ran licence not identified · pointer only · 65c970f35976128a · report
download_and_extract_archive Yuzhe-Fu/FlashFPS/FlashFPS-Openpoints/openpoints/dataset/modelnet/modelnet40_ply_2048_loader.py found in paper text by Syntology ran licence not identified · pointer only · b9389712035a81db · report
farthest_point_sample Yuzhe-Fu/FlashFPS/FlashFPS-Openpoints/openpoints/dataset/modelnet/modelnet40_normal_resampled_loader.py found in paper text by Syntology ran fingerprinted licence not identified · pointer only · f80066a00e7156a2 · report
fnv_hash_vec Yuzhe-Fu/FlashFPS/FlashFPS-Openpoints/openpoints/dataset/data_util.py found in paper text by Syntology ran fingerprinted licence not identified · pointer only · 0086c892bd1df796 · report
is_model Yuzhe-Fu/FlashFPS/FlashFPS-Openpoints/openpoints/models/registry.py found in paper text by Syntology ran licence not identified · pointer only · cd2a47ded9dd84cf · report
list_models Yuzhe-Fu/FlashFPS/FlashFPS-Openpoints/openpoints/models/registry.py found in paper text by Syntology ran licence not identified · pointer only · d14a6ca5ff9d530e · report
load_data Yuzhe-Fu/FlashFPS/FlashFPS-Openpoints/openpoints/dataset/modelnet/modelnet40_ply_2048_loader.py found in paper text by Syntology ran licence not identified · pointer only · 9ed5c671b662922a · report
pc_normalize Yuzhe-Fu/FlashFPS/FlashFPS-Openpoints/openpoints/dataset/modelnet/modelnet40_normal_resampled_loader.py found in paper text by Syntology ran · honoured contract fingerprinted no licence file found · pointer only · 4783fbece52f500e · report
ravel_hash_vec Yuzhe-Fu/FlashFPS/FlashFPS-Openpoints/openpoints/dataset/data_util.py found in paper text by Syntology ran fingerprinted licence not identified · pointer only · afdc8ad15d9098b8 · report
register_model Yuzhe-Fu/FlashFPS/FlashFPS-Openpoints/openpoints/models/registry.py found in paper text by Syntology ran licence not identified · pointer only · e13039fb1c347452 · report
download_url Yuzhe-Fu/FlashFPS/FlashFPS-Openpoints/openpoints/dataset/data_util.py found in paper text by Syntology unverified licence not identified · pointer only · 556e417290a6e1fd · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2604.17720, was issued in April 2026, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections