REVIEW 3 major objections 5 minor 1 cited by
Accelerating Sparse Graph Neural Networks with Tensor Core Optimization
T0 review · 3 major / 5 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read FTC-GNN accelerates sparse GNNs by running Tensor Cores and CUDA Cores in parallel, reporting kernel-time speedups of up to 7.10x over established libraries.
desk verdict The abstract's 5.32x AGNN-vs-DGL speedup is contradicted by the paper's own Table VI, and the novelty over TC-GNN is thin, but the GCN data and implementation description give the paper enough substance to justify a corrective review round. 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
The load-bearing mechanism is the sparse graph transformation technique, which reads the graph in CSR form, groups rows into row windows, compresses duplicate neighbor loads, and emits dense TC blocks with block height 16 and width 8. These blocks are consumed by a single fused CUDA kernel that uses WMMA instructions to perform GEMM on Tensor Cores for most blocks and scalar multiply-add on CUDA Cores for the remainder, with shared memory acting as the buffer that both units read from. The same transformation feeds two kernels: sparse neighbor aggregation, an SpMM-style operation, and sparse edge feature computation, an SDDMM-style operation.
What would settle it
Rerun the FTC-GNN, DGL, PyG, and TC-GNN comparison on the same five datasets but measure full end-to-end time including the sparse graph transformation and, for training, the accuracy after convergence. If the transformation cost is included, small graphs such as citeseer and cora should show much smaller speedups; recomputing the AGNN-versus-DGL average from Table VI will also reveal whether the abstract's 5.32x figure can be reproduced.
Extended reading notes
Core claim
The paper's central claim is that the usual bottleneck in sparse GNN acceleration is not the raw speed of either unit but the failure to use them concurrently. FTC-GNN therefore divides the work by data shape: dense matrix-multiply fragments are sent to Tensor Cores, while CUDA Cores execute the memory-intensive and irregular parts of the computation. The measured evidence is a set of GPU kernel-time comparisons, presented per dataset, showing that FTC-GNN is faster than DGL and PyG on all five datasets under GCN, and faster than PyG under AGNN, while remaining competitive with TC-GNN. The authors state the speedups as 4.90x, 7.10x, and 1.17x for GCN and 5.32x, 2.92x, and 1.02x for AGNN relative to DGL, PyG, and TC-GNN.
Load-bearing premise
The load-bearing premise is that average GPU kernel time alone is a fair and complete measure of acceleration, so the one-time sparse graph transformation cost, end-to-end runtime, and model accuracy can be left out of the speedup comparison.
Editorial extensions
If this is right
- A one-time graph transformation can be reused across many training and inference iterations, so the preprocessing cost is amortised rather than paid per layer.
- The same CUDA-plus-Tensor-Core split can accelerate both SpMM-like neighbor aggregation and SDDMM-like edge feature computation, covering the two main sparse operations in GNN layers.
- Because the split is done inside one kernel, FTC-GNN avoids the overhead of launching separate kernels for the dense and sparse portions of the computation.
- If the kernel-time speedups hold, GNN frameworks can adopt the technique without changing model semantics, only the internal scheduling of matrix work.
Reading between the lines
- A reader redoing the arithmetic on Table VI will find that the AGNN-versus-DGL average is not the 5.32x stated in the abstract.
- A testable extension would be to measure end-to-end time including the one-time sparse transformation; small graphs such as citeseer and cora would likely show smaller speedups than the kernel-only figures.
- The same heterogeneous scheduling idea could generalize to other sparse deep learning workloads, such as sparse attention or recommendation models that mix irregular indexing with dense matrix multiplication.
- An adaptive version that sizes the CUDA/Tensor-Core split per row window or per graph density is a natural next step for graphs where TC blocks are few.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes FTC-GNN, a GPU framework for sparse graph neural network computation that aims to use Tensor Cores and CUDA Cores in parallel. It introduces a sparse-to-dense graph transformation technique, sparse neighbor aggregation, and sparse edge feature computation kernels built on the WMMA API, and reports speedups over DGL, PyG, and TC-GNN for GCN and AGNN models on five datasets. The abstract claims average speedups of 4.90x, 7.10x, and 1.17x for GCN and 5.32x, 2.92x, and 1.02x for AGNN against DGL, PyG, and TC-GNN, respectively.
Significance. If the reported speedups were reproducible, FTC-GNN would be a practically useful contribution: it targets a real bottleneck, the poor utilization of Tensor Cores for irregular sparse GNN workloads, and it goes beyond existing work such as TC-GNN by attempting a more balanced partitioning between Tensor Cores and CUDA Cores. The paper deserves credit for reporting per-dataset kernel-time tables, which allow an independent reader to recompute the claimed averages, and for comparing against multiple established baselines. However, the central performance claim for half of the evaluation is directly contradicted by the paper's own data: the abstract's 5.32x AGNN-vs-DGL speedup is not reproducible from Table VI, which shows FTC-GNN slower than DGL on amazon0505 and a per-dataset average speedup of about 1.97x. In addition, the evaluation is limited to GPU kernel time, excluding the one-time sparse graph transformation cost, and no accuracy results are provided despite the stated requirement to preserve accuracy. These gaps mean the practical superiority of FTC-GNN is not currently established.
major comments (3)
- [Abstract, Section VI.B.1, Table VI, Figure 11] The abstract states that for AGNN, FTC-GNN achieves a 5.32x speedup over DGL, and Section VI.B.1 repeats this claim. This is not supported by the data in Table VI. Computing the ratio DGL average GPU kernel time divided by FTC-GNN average GPU kernel time for each dataset gives citeseer 5.673/1.665 = 3.41x, cora 5.630/1.744 = 3.23x, amazon0505 35.841/38.762 = 0.93x, com-amazon 21.269/19.179 = 1.11x, and amazon0601 26.754/22.358 = 1.20x. The arithmetic mean of these per-dataset ratios is about 1.97x, and the ratio of summed DGL time to summed FTC-GNN time is about 1.14x; neither equals 5.32x. The narrative in Section VI.B.1 is also inconsistent with its own table: it says FTC-GNN's average GPU kernel time is 'significantly higher' than DGL for amazon0505, com-amazon, and amazon0601, but Table VI shows FTC-GNN is faster than DGL on com-amazon (19.179 ms vs. 21.269 ms) and amazon0601 (22.358 ms vs. 26.754 ms), and slower only on amazon0505. This is a direct internal contradiction that invalidates the headline AGNN-vs-DGL result.
- [Section VI.B.1 and Section V.A.1] All speedup claims are based on average GPU kernel time only, as defined in Section VI.B.1, and exclude the one-time sparse graph transformation cost described in Section V.A.1. The transformation is a required preprocessing step that converts the input CSR graph into TC blocks, so a practical performance comparison should include it or provide an amortized analysis. For small datasets such as citeseer and cora, the reported FTC-GNN kernel times are sub-millisecond (0.551 ms and 0.485 ms for GCN), so even a modest transformation overhead could dominate the kernel time and change the direction of the comparison. No end-to-end runtime or total training time is reported anywhere in Section VI. The claimed practical acceleration therefore rests on the unstated assumption that kernel time alone is a fair and complete proxy for GNN performance.
- [Section III.C and Section VI] Section III.C states that the acceleration approach 'must ensure' that the accuracy of GNN models is not compromised, but the experimental section contains no accuracy measurements for any model or dataset. This is a load-bearing omission because the implementation uses TF-32 and half-precision WMMA operations (Sections V.A.1 and V.A.2), which can change numerical results compared to FP32. Without accuracy results, the reader cannot verify that the reported speedups are achieved at acceptable model quality, and the stated research goal of preserving accuracy is left unvalidated.
minor comments (5)
- [Section VI.B.1, Table VI] The sentence 'FTC-GNN and DGL show relatively similar performance in terms of average GPU kernel time' is misleading: per Table VI, FTC-GNN is about 3.4x and 3.2x faster than DGL on citeseer and cora, respectively, for AGNN.
- [Figures 10-15] The figures are referenced in the text but not reproduced in the manuscript, and the axis definitions are not described. In particular, Figure 11 is claimed to show a 5.32x average speedup that does not agree with Table VI; if the figure aggregates data differently, the aggregation rule should be stated explicitly.
- [Section V.A.1 and V.A.2] The precision used in the experiments is ambiguous: Section V.A.1 says the TF-32 data format is adopted with TC_BLK_H = 16 and TC_BLK_W = 8, while Section V.A.2 mentions that half-precision floating-point numbers are used to reduce complexity. The relationship between these two statements and the actual precision used in the reported kernel times should be clarified.
- [Table III] The hardware table lists a 'Graphics Card Cirrus Logic GD 5446' alongside the Tesla V100; this appears to be a display adapter rather than the device used for CUDA computation, and the entry should be removed or clarified.
- [References] Several references appear unrelated to the claims they support, for example the TechRxiv preprints on housing price prediction and Wikipedia topic modeling cited in the context of recommendation systems and social networks; the authors should verify that each citation matches its context.
Circularity Check
No circular reasoning: FTC-GNN's claims are empirical benchmark comparisons against external systems, not derived from fitted inputs or self-citations.
full rationale
The paper contains no derivation chain in which an output is defined in terms of the claimed result. FTC-GNN's central claims are speedup measurements against DGL, PyG, and TC-GNN, computed as ratios of measured GPU kernel times. These baselines are external systems; the measurements are reported in tables and are not produced by fitting a parameter to the target result. The sparse-to-dense transformation and CUDA/Tensor Core kernel design are engineering contributions evaluated empirically, so no 'prediction' is forced by construction. The author's self-citations concern unrelated topics and are not load-bearing for the acceleration claims. The abstract's AGNN-vs-DGL speedup of 5.32x is not reproduced by Table VI, and the evaluation excludes one-time transformation overhead and accuracy; these are serious correctness concerns, but not circularity. Accordingly the circularity score is 0.
Assumptions & free parameters
free parameters (2)
- TC_BLK_H and TC_BLK_W =
16 and 8
- TCU/CUDA work partition =
not specified
assumptions (4)
- domain assumption Average GPU kernel time, excluding the one-time sparse graph transformation, is the correct performance metric for comparing GNN frameworks.
- domain assumption Tensor Core mixed-precision computation preserves GNN accuracy.
- domain assumption The experimental GPU behaves as a standard Tesla V100 with CUDA 11.3 and WMMA support.
- domain assumption The five benchmark datasets and two GNN models are representative of sparse GNN workloads.
Cite this review
Pith. "Pith review of Accelerating Sparse Graph Neural Networks with Tensor Core Optimization." pith.science (2026). https://pith.science/paper/FWDVLCKH
@misc{pith2026241212218,
author = {Pith},
title = {Pith review of: Accelerating Sparse Graph Neural Networks with Tensor Core Optimization},
year = {2026},
howpublished = {\url{https://pith.science/paper/FWDVLCKH}},
note = {Machine review of arXiv:2412.12218}
}
read the original abstract
Graph neural networks (GNNs) have seen extensive application in domains such as social networks, bioinformatics, and recommendation systems. However, the irregularity and sparsity of graph data challenge traditional computing methods, which are insufficient to meet the performance demands of GNNs. Recent research has explored parallel acceleration using CUDA Cores and Tensor Cores, but significant challenges persist: (1) kernel fusion leads to false high utilization, failing to treat CUDA and Tensor Cores as independent resources, and (2) heterogeneous cores have distinct computation preferences, causing inefficiencies. To address these issues, this paper proposes FTC-GNN, a novel acceleration framework that efficiently utilizes CUDA and Tensor Cores for GNN computation. FTC-GNN introduces (1) a collaborative design that enables the parallel utilization of CUDA and Tensor Cores and (2) a sparse-to-dense transformation strategy that assigns dense matrix operations to Tensor Cores while leveraging CUDA Cores for data management and sparse edge processing. This design optimizes GPU resource utilization and improves computational efficiency. Experimental results demonstrate the effectiveness of FTC-GNN using GCN and AGNN models across various datasets. For GCN, FTC-GNN achieves speedups of 4.90x, 7.10x, and 1.17x compared to DGL, PyG, and TC-GNN, respectively. For AGNN, it achieves speedups of 5.32x, 2.92x, and 1.02x, establishing its superiority in accelerating GNN computations.
Figures
Figures from the paper (12 more)
Forward citations
Cited by 1 Pith paper
-
Blockchain-Based Secure Vehicle Auction System with Smart Contracts
A student prototype applies Ethereum smart contracts to used-car auctions, claiming security and privacy gains, but ships no code and offers no comparison to existing systems.
Reference graph
Works this paper leans on
-
[1]
A survey of graph neural networks for social recommender systems,
K. Sharma, Y .-C. Lee, S. Nambi, A. Salian, S. Shah, S.-W. Kim, and S. Kumar, “A survey of graph neural networks for social recommender systems,” ACM Computing Surveys , vol. 56, no. 10, pp. 1–34, 2024, ACM, New York, NY
work page 2024
-
[2]
Graph repre- sentation learning in bioinformatics: trends, methods and applications,
H.-C. Yi, Z.-H. You, D.-S. Huang, and C. K. Kwoh, “Graph repre- sentation learning in bioinformatics: trends, methods and applications,” Briefings in Bioinformatics , vol. 23, no. 1, Article bbab340, 2022, Oxford University Press
work page 2022
-
[3]
Finding patient zero: Learning contagion source with graph neural networks,
C. Shah, N. Dehmamy, N. Perra, M. Chinazzi, A.-L. Barab ´asi, A. Vespignani, and R. Yu, “Finding patient zero: Learning contagion source with graph neural networks,” arXiv preprint arXiv:2006.11913 , 2020
arXiv 2006
-
[4]
Graph convolutional networks for computational drug development and discovery,
M. Sun, S. Zhao, C. Gilvary, O. Elemento, J. Zhou, and F. Wang, “Graph convolutional networks for computational drug development and discovery,” Briefings in Bioinformatics , vol. 21, no. 3, pp. 919–935, 2020, Oxford University Press
work page 2020
-
[5]
Heterogeneous graph neural networks for malicious account detection,
Z. Liu, C. Chen, X. Yang, J. Zhou, X. Li, and L. Song, “Heterogeneous graph neural networks for malicious account detection,” in Proceedings of the 27th ACM International Conference on Information and Knowl- edge Management, 2018, pp. 2077–2085
work page 2018
-
[6]
Graph neural networks for social recommendation,
W. Fan, Y . Ma, Q. Li, Y . He, E. Zhao, J. Tang, and D. Yin, “Graph neural networks for social recommendation,” in Proceedings of The World Wide Web Conference, 2019, pp. 417–426
work page 2019
-
[7]
Graph convolutional neural networks for web-scale rec- ommender systems,
R. Ying, R. He, K. Chen, P. Eksombatchai, W. L. Hamilton, and J. Leskovec, “Graph convolutional neural networks for web-scale rec- ommender systems,” in Proceedings of the 24th ACM SIGKDD Interna- tional Conference on Knowledge Discovery & Data Mining , 2018, pp. 974–983
work page 2018
-
[8]
Hygcn: A GCN accelerator with hybrid architecture,
M. Yan, L. Deng, X. Hu, L. Liang, Y . Feng, X. Ye, Z. Zhang, D. Fan, and Y . Xie, “Hygcn: A GCN accelerator with hybrid architecture,” in Proceedings of the 2020 IEEE International Symposium on High Performance Computer Architecture (HPCA) , 2020, pp. 15–29, IEEE
work page 2020
Show all 41 references
-
[9]
Strengthening DeFi Security: A Static Analysis Approach to Flash Loan Vulnerabilities,
K. W. Wu, “Strengthening DeFi Security: A Static Analysis Approach to Flash Loan Vulnerabilities,” *arXiv preprint arXiv:2411.01230*, 2024
2024 arXiv
-
[10]
TC-GNN: Bridging sparse GNN computation and dense tensor cores on GPUs,
Y . Wang, B. Feng, Z. Wang, G. Huang, and Y . Ding, “TC-GNN: Bridging sparse GNN computation and dense tensor cores on GPUs,” in Proceedings of the 2023 USENIX Annual Technical Conference (USENIX ATC 23) , 2023, pp. 149–164
2023
-
[11]
Graph neural networks in node classification: survey and evaluation,
S. Xiao, S. Wang, Y . Dai, and W. Guo, “Graph neural networks in node classification: survey and evaluation,” Machine Vision and Applications, vol. 33, no. 1, Article 4, 2022, Springer
2022
-
[12]
Clnode: Curriculum learning for node classification,
X. Wei, X. Gong, Y . Zhan, B. Du, Y . Luo, and W. Hu, “Clnode: Curriculum learning for node classification,” in Proceedings of the Sixteenth ACM International Conference on Web Search and Data Mining, 2023, pp. 670–678
2023
-
[13]
Hermes: Boosting the Perfor- mance of Machine-Learning-Based Intrusion Detection System through Geometric Feature Learning,
C. Zhang, S. Shi, N. Wang, X. Xu, S. Li, L. Zheng, R. Marchany, M. Gardner, Y . T. Hou, and W. Lou, “Hermes: Boosting the Perfor- mance of Machine-Learning-Based Intrusion Detection System through Geometric Feature Learning,” in *Proceedings of the Twenty-fifth Inter- national...
2024
-
[14]
Explicit pairwise factorized graph neural network for semi-supervised node classification,
Y . Wang, Y . Shen, and D. Cremers, “Explicit pairwise factorized graph neural network for semi-supervised node classification,” in Proceedings of Uncertainty in Artificial Intelligence , 2021, pp. 1979–1987, PMLR
2021
-
[15]
Link prediction based on graph neural net- works,
M. Zhang and Y . Chen, “Link prediction based on graph neural net- works,” Advances in Neural Information Processing Systems , vol. 31, 2018
2018
-
[16]
Advanced Machine Learning for Housing Market Analysis: Predicting Property Prices in Washington, D.C
Pei-Hsuan Sung. Advanced Machine Learning for Housing Market Analysis: Predicting Property Prices in Washington, D.C. TechRxiv. January 04, 2025. DOI: 10.36227/techrxiv.173603502.26172421/v1
2025
-
[17]
Temporal network embedding for link prediction via V AE joint attention mechanism,
P. Jiao, X. Guo, X. Jing, D. He, H. Wu, S. Pan, M. Gong, and W. Wang, “Temporal network embedding for link prediction via V AE joint attention mechanism,” IEEE Transactions on Neural Networks and Learning Systems, vol. 33, no. 12, pp. 7400–7413, 2021, IEEE
2021
-
[18]
Hashing-accelerated graph neural networks for link prediction,
W. Wu, B. Li, C. Luo, and W. Nejdl, “Hashing-accelerated graph neural networks for link prediction,” in Proceedings of the Web Conference 2021, 2021, pp. 2910–2920
2021
-
[19]
Net: Degree-specific graph neural networks for node and graph classification,
J. Wu, J. He, and J. Xu, “Net: Degree-specific graph neural networks for node and graph classification,” in Proceedings of the 25th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, 2019, pp. 406–415
2019
-
[20]
Multi-scale graph classification with shared graph neural network,
P. Zhou, Z. Wu, G. Wen, K. Tang, and J. Ma, “Multi-scale graph classification with shared graph neural network,” World Wide Web, vol. 26, no. 3, pp. 949–966, 2023, Springer
2023
-
[21]
On size-oriented long- tailed graph classification of graph neural networks,
Z. Liu, Q. Mao, C. Liu, Y . Fang, and J. Sun, “On size-oriented long- tailed graph classification of graph neural networks,” in Proceedings of the ACM Web Conference 2022 , 2022, pp. 1506–1516
2022
-
[22]
Cusparse library,
M. Naumov, L. Chien, P. Vandermersch, and U. Kapasi, “Cusparse library,” in Proceedings of the GPU Technology Conference , vol. 12, 2010
2010
-
[23]
Algorithm 1000: SuiteSparse: GraphBLAS: Graph algo- rithms in the language of sparse linear algebra,
T. A. Davis, “Algorithm 1000: SuiteSparse: GraphBLAS: Graph algo- rithms in the language of sparse linear algebra,” ACM Transactions on Mathematical Software (TOMS) , vol. 45, no. 4, pp. 1–25, 2019, ACM, New York, NY , USA
2019
-
[24]
High-performance computing on the Intel Xeon Phi,
E. Wang, Q. Zhang, B. Shen, G. Zhang, X. Lu, Q. Wu, and Y . Wang, “High-performance computing on the Intel Xeon Phi,” Springer, vol. 5, p. 2, 2014, Springer
2014
-
[25]
Improving GPU throughput through parallel execution using tensor cores and CUDA cores,
K. Ho, H. Zhao, A. Jog, and S. Mohanty, “Improving GPU throughput through parallel execution using tensor cores and CUDA cores,” in Proceedings of the 2022 IEEE Computer Society Annual Symposium on VLSI (ISVLSI) , 2022, pp. 223–228, IEEE
2022
-
[26]
Community Structure and Connectivity Analysis in So- cial Networks Using Community Detection Methods
Pei-Hsuan Sung. Community Structure and Connectivity Analysis in So- cial Networks Using Community Detection Methods. TechRxiv. January 21, 2025. DOI: 10.36227/techrxiv.173750116.69554018/v1
2025
-
[27]
Inductive representation learning on large graphs,
W. Hamilton, Z. Ying, and J. Leskovec, “Inductive representation learning on large graphs,” Advances in Neural Information Processing Systems, vol. 30, 2017
2017
-
[28]
Fast batched matrix multiplication for small sizes using half-precision arithmetic on GPUs,
A. Abdelfattah, S. Tomov, and J. Dongarra, “Fast batched matrix multiplication for small sizes using half-precision arithmetic on GPUs,” in Proceedings of the 2019 IEEE International Parallel and Distributed Processing Symposium (IPDPS) , 2019, pp. 111–122, IEEE
2019
-
[29]
Tacker: Tensor-CUDA core kernel fusion for improving the GPU utilization while ensuring QoS,
H. Zhao, W. Cui, Q. Chen, Y . Zhang, Y . Lu, C. Li, J. Leng, and M. Guo, “Tacker: Tensor-CUDA core kernel fusion for improving the GPU utilization while ensuring QoS,” in Proceedings of the 2022 IEEE International Symposium on High-Performance Computer Architecture (HPCA), 202...
2022
- [30]
-
[31]
Ge-spmm: General-purpose sparse matrix-matrix multiplication on GPUs for graph neural networks,
G. Huang, G. Dai, Y . Wang, and H. Yang, “Ge-spmm: General-purpose sparse matrix-matrix multiplication on GPUs for graph neural networks,” in Proceedings of SC20: International Conference for High Performance Computing, Networking, Storage and Analysis , 2020, pp. 1–12, IEEE
2020
-
[32]
PyTorch: An imperative style, high-performance deep learning library,
A. Paszke, S. Gross, F. Massa, A. Lerer, J. Bradbury, G. Chanan, T. Killeen, Z. Lin, N. Gimelshein, L. Antiga, et al. , “PyTorch: An imperative style, high-performance deep learning library,” Advances in Neural Information Processing Systems , vol. 32, 2019
2019
-
[33]
Deep graph library: To- wards efficient and scalable deep learning on graphs,
M. Wang, L. Yu, D. Zheng, Q. Gan, Y . Gai, Z. Ye, M. Li, J. Zhou, Q. Huang, C. Ma, Z. Huang, et al. , “Deep graph library: To- wards efficient and scalable deep learning on graphs,” arXiv preprint arXiv:1909.01315, 2019
1909 arXiv
-
[34]
Exploring Universities with NLP: Topic Modeling and Sentiment Analysis Using Wikipedia Data
Pei-Hsuan Sung. Exploring Universities with NLP: Topic Modeling and Sentiment Analysis Using Wikipedia Data. TechRxiv. February 07, 2025. DOI: 10.36227/techrxiv.173896964.47108397/v1
2025
-
[35]
Mitigating Challenges in Ethereum’s Proof-of-Stake Consen- sus: Evaluating the Impact of EigenLayer and Lido,
L. Li, “Mitigating Challenges in Ethereum’s Proof-of-Stake Consen- sus: Evaluating the Impact of EigenLayer and Lido,” *arXiv preprint arXiv:2410.23422*, 2024
2024 arXiv
-
[36]
Spectral graph attention network with fast eigen-approximation,
H. Chang, Y . Rong, T. Xu, W. Huang, S. Sojoudi, J. Huang, and W. Zhu, “Spectral graph attention network with fast eigen-approximation,” in Proceedings of the 30th ACM International Conference on Information & Knowledge Management , 2021, pp. 2905–2909
2021
-
[37]
S. Li, S. Shi, Y . Xiao, C. Zhang, Y . T. Hou, and W. Lou, ”Bijack: Break- ing bitcoin network with tcp vulnerabilities,” in European Symposium on Research in Computer Security , Springer, 2023, pp. 306–326
2023
-
[38]
UCBlocker: Unwanted call blocking using anonymous authentication,
C. Du, H. Yu, Y . Xiao, Y . T. Hou, A. D. Keromytis, and W. Lou, “UCBlocker: Unwanted call blocking using anonymous authentication,” in 32nd USENIX Security Symposium (USENIX Security 23) , 2023, pp. 445–462
2023
-
[39]
Aaka: An anti-tracking cellular authentication scheme leveraging anonymous credentials,
H. Yu, C. Du, Y . Xiao, A. Keromytis, C. Wang, R. Gazda, Y . T. Hou, and W. Lou, “Aaka: An anti-tracking cellular authentication scheme leveraging anonymous credentials,” in Proceedings 2024 Network and Distributed System Security Symposium , 2023
2024
-
[40]
Comprehensive survey on adversarial examples in cyberse- curity: Impacts, challenges, and mitigation strategies,
L. Li, “Comprehensive survey on adversarial examples in cyberse- curity: Impacts, challenges, and mitigation strategies,” arXiv preprint arXiv:2412.12217, 2024
2024 arXiv
-
[41]
State-of-the-art approaches to enhancing privacy preservation in machine learning datasets: A survey,
C. Zhang and S. Li, “State-of-the-art approaches to enhancing privacy preservation in machine learning datasets: A survey,” arXiv preprint , arXiv:2404.16847, 2024
2024 arXiv
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.