REVIEW 3 major objections 4 minor 42 references
FPQVAR: Floating Point Quantization for Visual Autoregressive Model with FPGA Hardware Co-design
T0 review · 3 major / 4 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read FPQVAR claims that low-bit floating-point quantization, with dual-format and Hadamard-based outlier suppression, brings 4-bit and 6-bit visual autoregressive image generation close to full-precision quality while running efficiently on…
desk verdict A well-executed PTQ + FPGA co-design paper that delivers a big FP4 gain on VAR (FID 3.58 vs 10.83) but with a calibration-set caveat that keeps me from fully trusting the headline number. 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 objects are three algorithmic components and one hardware component. Dual Format Quantization (DFQ) splits an activation tensor into negative and positive parts and quantizes each with its own FP grid and scale, with the grid pair chosen offline by a coarse grid search that minimizes layer-wise MSE. Group-wise Hadamard Transformation (GHT) multiplies activations by a block-diagonal $128\times128$ Hadamard matrix to reduce time-varying outlier channels while keeping the rotation cheap enough to run online in groups. GHT-Aware Learnable Transformation (GALT) learns one scalar-per-channel vector $\lambda$ for each QKV/FC1 layer by minimizing the sum of per-step quantization errors over a calibration set, using a straight-through estimator, and then absorbs $\lambda^{-1}$ into the following weight offline. On hardware, the mechanism is a LUT-based FP4 quantizer and multiplier that converts the low-bit FP multiply into table lookups, plus a two-level pipeline that overlaps the condition-MLP of the next block with the FC2 matrix multiplication of the current block.
What would settle it
Re-run the FP4 recipe after replacing the 100-image calibration set with 100 images from a single ImageNet class, then evaluate FID on the full validation set; if FID degrades by more than about 1 point, the calibration assumption is the load-bearing part of the method.
Extended reading notes
Core claim
FPQVAR claims that a post-training floating-point quantization pipeline can compress a visual autoregressive transformer to 4-bit weights and activations with only a modest quality drop, and to 6-bit with essentially none. The paper isolates three distributional problems that break integer quantization: low-bit integer grids are uniform while network values are roughly Gaussian; the FC2 layer's input is strongly imbalanced, with 97.6% of values in $[-0.17,0]$; and the QKV/FC1 input activations contain outlier channels whose positions and magnitudes drift across the ten autoregressive steps. The proposed remedies are Dual Format Quantization (separate FP grids and scales for negative and positive activations), Group-wise Hadamard Transformation (a block-diagonal Hadamard matrix applied within 128-element groups to spread outliers), and GHT-Aware Learnable Transformation (a per-layer vector $\lambda$ optimized by straight-through gradient descent to minimize per-step quantization error, then fused into the preceding MLP weights so inference cost is unchanged). On hardware, the paper replaces DSP-heavy low-bit FP multiply-accumulate with LUT-based quantizers and multipliers, and pipelines rotation, quantization, and matrix multiplication so the group-wise transform adds no serial latency. The reported results are a 4-bit model at FID 3.58 (down from 10.83 for the previous baseline), a 6-bit model at FID 2.03 (versus 1.98 for FP16), and an FPGA accelerator reaching 1.1 images/s at 3.1x the speed of an integer-based accelerator.
Load-bearing premise
The 100-image calibration set used to choose the dual-format grids and the per-layer smoothing factors, together with the layer-wise mean-squared-error loss, must represent the true generation distribution; otherwise the reported FID/IS gains will not transfer outside that calibration set.
Editorial extensions
If this is right
- At 6-bit weights and activations (W6A6), FPQVAR matches the FP16 teacher on ImageNet 256 (FID 2.03 vs 1.98), so full-precision quality is available at a fraction of the memory and compute.
- At 4-bit (W4A4), FPQVAR reduces FID from 10.83 (previous baseline) to 3.58, making 4-bit VAR image generation practical rather than degenerate.
- The KV cache can be quantized to FP6-E2M3 with negligible quality loss, further reducing memory during generation.
- The FPGA accelerator reaches 1.1 images/s on VCK190, 3.1x faster than the integer baseline and 2.8x more energy-efficient than an A6000 GPU running FP16.
- Because GALT's smoothing factor is absorbed into the preceding MLP weights offline, the algorithmic quality gains add zero inference-time cost.
Reading between the lines
- The step-dependent outlier-channel finding implies that any static per-tensor or per-channel smoothing scheme will be fundamentally limited for multi-step autoregressive generation; transform-based methods that are step-invariant (like GHT) or explicitly optimize across steps (like GALT) are likely to be needed in other sequential generative models, including next-token AR image models and diffusi
- The DFQ idea of independent negative and positive FP grids could transfer to any layer with a GeLU-like asymmetric activation (e.g., SwiGLU or SiLU) in LLMs or diffusion transformers, offering a cheap alternative to full asymmetric quantization.
- The LUT-based FP multiplier design suggests a general recipe for low-bit FP inference on FPGAs without DSP-heavy MACs; a natural test is applying it to 4-bit FP quantization of a diffusion transformer or LLM decoder, where the same outlier phenomena appear.
- A testable extension: run the same DFQ+GHT+GALT pipeline on a larger or different VAR backbone (e.g., VAR-d30 versus a smaller variant) to see whether the FID gains scale with model capacity, and whether the learned smoothing factors transfer across random seeds.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes FPQVAR, a post-training floating-point quantization framework for visual autoregressive (VAR) image generation, with a co-designed FPGA implementation. The algorithm part makes three contributions: Dual Format Quantization (DFQ) for the imbalanced FC2 activations, Group-wise Hadamard Transformation (GHT) to reduce time-varying outlier channels at lower hardware cost than full Hadamard rotation, and GHT-Aware Learnable Transformation (GALT), which learns per-channel smoothing factors on a small calibration set. On ImageNet 256x256 with W4A4, FPQVAR reports FID 3.58/IS 241.5 versus FID 10.83/IS 175.9 for LiteVAR, and with W6A6 it reports FID 2.03 versus 1.98 for FP16. The hardware section describes LUT-based FP4 quantizers/multipliers and a two-level pipeline on AMD-Xilinx VCK190, achieving 1.1 image/s and 3.1x speedup over an integer baseline accelerator.
Significance. If the results hold, this is a strong contribution. The paper identifies concrete, well-motivated failure modes of VAR quantization and shows internally consistent ablations (DFQ improves IS from 167.0 to 189.5; adding GHT and GALT reaches 241.5 IS and 3.58 FID). The hardware is implemented and measured on FPGA rather than simulated, and the code is released. The main risk is the calibration dependence of GALT and the absence of uncertainty estimates; both are addressable with additional experiments.
major comments (3)
- [Section IV-C, Algorithm 3, Table VII] The headline FP4 result depends on a calibration-set fit whose robustness is not demonstrated. GALT optimizes a per-channel vector λ∈R^{1×C} (C=1920 for VAR-d30) for each QKV and FC1 layer by minimizing layer-wise quantization MSE on 100 randomly selected images, and the best λ is selected by the lowest calibration loss over 50 epochs. Table VII shows that GALT is load-bearing: it moves FID from 5.18 (DFQ+GHT) to 3.58. The paper reports a single FID/IS evaluation (50k generated images, one seed) with no error bars and no sensitivity analysis to the choice of the 100 calibration images. Because tokens from the same image are not independent and the early time steps contain very few tokens, the effective number of independent calibration points is small relative to the number of fitted parameters. I ask the authors to add calibration-set sensitivity experiments (e.g., several independent draws of the 100 images, reporting mean and standard deviation of FID/IS) and/or to select λ on a validation split that is not used for reporting final metrics. Without this, the 3.58 FID could reflect overfitting to one calibration draw.
- [Equation (5)] The optimization objective for GALT is not dimensionally consistent as written. λ∈R^{1×C}, so the second quantized term Q(H_B^T λ^{-1} W^T) is the product of a C×C matrix with a 1×C vector, which is undefined; the first term Q(X_i λ H_B) is also ambiguous if λ is a row vector. Presumably the intended operation is channel-wise scaling, i.e., Q(X_i diag(λ) H_B) Q(H_B^T diag(λ^{-1}) W^T) (or an equivalent element-wise formulation). Please correct Eq. (5) and the absorption argument in Eq. (6), since this equation defines GALT.
- [Section V-B, Table III] The claim that FP6 FPQVAR is 'on par' with FP16 rests on a FID difference of 0.05 (2.03 vs 1.98) and an IS difference of 7.0 (295.0 vs 302.0). With a single evaluation seed and no confidence intervals, it is not possible to judge whether these differences are within noise. Please report at least two or three seeds (or bootstrapped FID confidence intervals) for the main configurations; this also bears on the FP4 comparison, although the gap there is much larger.
minor comments (4)
- [Section IV-C] The text refers to Fig. 11b for the calibration dataset construction, but Fig. 11 shows the GALT loss curves; the construction appears to be in Fig. 5b.
- [Table VII] The header 'Nomalized Throughput' should be 'Normalized Throughput'.
- [Footnote on code release] The GitHub URL reads 'FPQV AR' with a space; please ensure the link points to 'FPQVAR'.
- [Section V-A] The text states that all methods are evaluated under the same random seed; for completeness, state how many images are used for the calibration set and whether the 100 images are drawn from the training set.
Circularity Check
No significant circularity: headline FID/IS results are evaluated on independently generated 50k images, not on the calibration objective used to fit DFQ formats and GALT smoothing factors.
full rationale
The paper's central claims (FID/IS improvements and accelerator throughput) are measured against quantities independent of any fitted input: IS/FID are evaluated over 50,000 freshly generated images, while the DFQ format choice and per-layer GALT smoothing factors λ are optimized to minimize layer-wise output quantization MSE on a calibration set of 100 images (Alg. 2 and Alg. 3, Sec. IV-C). The GALT objective in Eq. 5 is a quantization-error proxy, not the reported generation-quality metric, so the reported FID 3.58 vs 10.83 does not reduce by construction to the calibration loss. DFQ format search selects among a small set of FP4 grids by MSE, and GALT fits high-dimensional λ, but these are post-training optimization procedures whose final evaluation is external to the fitted objective. The only citations to overlapping-author prior work are [22] for SFU-inspired design and [37] for a 128-point Fast Hadamard transformation unit; these are hardware implementation inspirations and are not load-bearing premises for the quantization claims, nor do they import an unverified uniqueness theorem. Potential sensitivity of the 100-image calibration set is a robustness or overfitting concern, not circularity, because the test distribution is independent of the calibration distribution. No step in the derivation chain is equivalent by definition to its own inputs; the modest score reflects only the presence of minor overlapping-author citations that do not support the main results.
Assumptions & free parameters
free parameters (5)
- GALT smoothing factor λ =
per-layer vectors, values not reported
- DFQ format pair for FC2 =
FP4: negative grid from E1M2, positive grid from E2M1
- FP format selection (W/A) =
FP6: W-E2M3/A-E3M2; FP4: W-E2M1/A-E2M1
- GHT group size =
128
- GALT optimization hyperparameters =
100 samples, 50 epochs, LR 0.01, AdamW
assumptions (5)
- standard math Hadamard matrix orthogonality (H H^T = I) preserves the linear layer output when applied to both activation and weight.
- domain assumption FP quantization rules from OCP MX Specification are a valid low-bit arithmetic model.
- domain assumption Straight-Through Estimator gives a usable gradient through the nondifferentiable quantizer in GALT.
- domain assumption Minimizing per-layer output MSE on calibration activations is a sufficient proxy for preserving end-to-end FID/IS.
- domain assumption Classifier-free guidance and the pretrained VAR-d30 weights are fixed and representative of the ImageNet conditional generation task.
Cite this review
Pith. "Pith review of FPQVAR: Floating Point Quantization for Visual Autoregressive Model with FPGA Hardware Co-design." pith.science (2026). https://pith.science/paper/NDDQLT2K
@misc{pith2026250516335,
author = {Pith},
title = {Pith review of: FPQVAR: Floating Point Quantization for Visual Autoregressive Model with FPGA Hardware Co-design},
year = {2026},
howpublished = {\url{https://pith.science/paper/NDDQLT2K}},
note = {Machine review of arXiv:2505.16335}
}
read the original abstract
Visual autoregressive (VAR) modeling has marked a paradigm shift in image generation from next-token prediction to next-scale prediction. VAR predicts a set of tokens at each step from coarse to fine scale, leading to better image quality and faster inference speed compared to existing diffusion models. However, the large parameter size and computation cost hinder its deployment on edge devices. To reduce the memory and computation cost, we propose FPQVAR, an efficient post-training floating-point (FP) quantization framework for VAR featuring algorithm and hardware co-design. At the algorithm level, we first identify the challenges of quantizing VAR. To address them, we propose Dual Format Quantization for the highly imbalanced input activation. We further propose Group-wise Hadamard Transformation and GHT-Aware Learnable Transformation to address the time-varying outlier channels. At the hardware level, we design the first low-bit FP quantizer and multiplier with lookup tables on FPGA and propose the first FPGA-based VAR accelerator featuring low-bit FP computation and an elaborate two-level pipeline. Extensive experiments show that compared to the state-of-the-art quantization method, our proposed FPQVAR significantly improves Fr\'echet Inception Distance (FID) from 10.83 to 3.58, Inception Score (IS) from 175.9 to 241.5 under 4-bit quantization. FPQVAR also significantly improves the performance of 6-bit quantized VAR, bringing it on par with the FP16 model. Our accelerator on AMD-Xilinx VCK190 FPGA achieves a throughput of 1.1 image/s, which is 3.1x higher than the integer-based accelerator. It also demonstrates 3.6x and 2.8x higher energy efficiency compared to the integer-based accelerator and GPU baseline, respectively.
Figures
Figures from the paper (8 more)
Reference graph
Works this paper leans on
-
[1]
Denoising diffusion probabilistic models,
J. Ho, A. Jain, and P. Abbeel, “Denoising diffusion probabilistic models,” Advances in neural information processing systems, vol. 33, pp. 6840– 6851, 2020
2020
-
[2]
Denoising diffusion implicit models,
J. Song, C. Meng, and S. Ermon, “Denoising diffusion implicit models,” arXiv preprint arXiv:2010.02502, 2020
arXiv 2010
-
[3]
Diffusion models beat gans on image synthesis,
P. Dhariwal and A. Nichol, “Diffusion models beat gans on image synthesis,”Advances in neural information processing systems, vol. 34, pp. 8780–8794, 2021
2021
-
[4]
Scalable diffusion models with transformers,
W. Peebles and S. Xie, “Scalable diffusion models with transformers,” inProceedings of the IEEE/CVF international conference on computer vision, 2023, pp. 4195–4205
2023
-
[5]
Generative pretraining from pixels,
M. Chen, A. Radford, R. Child, J. Wu, H. Jun, D. Luan, and I. Sutskever, “Generative pretraining from pixels,” inInternational conference on machine learning. PMLR, 2020, pp. 1691–1703
2020
-
[6]
Taming transformers for high- resolution image synthesis,
P. Esser, R. Rombach, and B. Ommer, “Taming transformers for high- resolution image synthesis,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2021, pp. 12 873–12 883
2021
-
[7]
Janus: Decoupling visual encoding for unified multimodal understanding and generation,
C. Wu, X. Chen, Z. Wu, Y . Ma, X. Liu, Z. Pan, W. Liu, Z. Xie, X. Yu, C. Ruanet al., “Janus: Decoupling visual encoding for unified multimodal understanding and generation,”arXiv preprint arXiv:2410.13848, 2024
arXiv 2024
-
[8]
Janus-pro: Unified multimodal understanding and generation with data and model scaling,
X. Chen, Z. Wu, X. Liu, Z. Pan, W. Liu, Z. Xie, X. Yu, and C. Ruan, “Janus-pro: Unified multimodal understanding and generation with data and model scaling,”arXiv preprint arXiv:2501.17811, 2025
arXiv 2025
Show all 42 references
-
[9]
Visual autoregressive modeling: Scalable image generation via next-scale prediction,
K. Tian, Y . Jiang, Z. Yuan, B. Peng, and L. Wang, “Visual autoregressive modeling: Scalable image generation via next-scale prediction,”Advances in neural information processing systems, vol. 37, pp. 84 839–84 865, 2024
2024
-
[10]
Smoothquant: Accurate and efficient post-training quantization for large language models,
G. Xiao, J. Lin, M. Seznec, H. Wu, J. Demouth, and S. Han, “Smoothquant: Accurate and efficient post-training quantization for large language models,” inInternational Conference on Machine Learning. PMLR, 2023, pp. 38 087–38 099
2023
-
[11]
Outlier suppression: Pushing the limit of low-bit transformer language models,
X. Wei, Y . Zhang, X. Zhang, R. Gong, S. Zhang, Q. Zhang, F. Yu, and X. Liu, “Outlier suppression: Pushing the limit of low-bit transformer language models,”Advances in Neural Information Processing Systems, vol. 35, pp. 17 402–17 414, 2022
2022
-
[12]
Quarot: Outlier-free 4-bit inference in rotated llms,
S. Ashkboos, A. Mohtashami, M. Croci, B. Li, P. Cameron, M. Jaggi, D. Alistarh, T. Hoefler, and J. Hensman, “Quarot: Outlier-free 4-bit inference in rotated llms,”Advances in Neural Information Processing Systems, vol. 37, pp. 100 213–100 240, 2024
2024
-
[13]
Spinquant: Llm quantization with learned rotations,
Z. Liu, C. Zhao, I. Fedorov, B. Soran, D. Choudhary, R. Krishnamoorthi, V . Chandra, Y . Tian, and T. Blankevoort, “Spinquant: Llm quantization with learned rotations,”arXiv preprint arXiv:2405.16406, 2024
2024 arXiv
-
[14]
Q-diffusion: Quantizing diffusion models,
X. Li, Y . Liu, L. Lian, H. Yang, Z. Dong, D. Kang, S. Zhang, and K. Keutzer, “Q-diffusion: Quantizing diffusion models,” inProceedings of the IEEE/CVF International Conference on Computer Vision, 2023, pp. 17 535–17 545
2023
-
[15]
Temporal dynamic quanti- zation for diffusion models,
J. So, J. Lee, D. Ahn, H. Kim, and E. Park, “Temporal dynamic quanti- zation for diffusion models,”Advances in neural information processing systems, vol. 36, pp. 48 686–48 698, 2023
2023
-
[16]
Q-dit: Accurate post-training quantization for diffusion transformers,
L. Chen, Y . Meng, C. Tang, X. Ma, J. Jiang, X. Wang, Z. Wang, and W. Zhu, “Q-dit: Accurate post-training quantization for diffusion transformers,”arXiv preprint arXiv:2406.17343, 2024
2024 arXiv
-
[17]
Ptq4dit: Post-training quantization for diffusion transformers,
J. Wu, H. Wang, Y . Shang, M. Shah, and Y . Yan, “Ptq4dit: Post-training quantization for diffusion transformers,”arXiv preprint arXiv:2405.16005, 2024
2024 arXiv
-
[18]
Litevar: Compressing visual autoregressive modelling with efficient attention and quantization,
R. Xie, T. Zhao, Z. Yuan, R. Wan, W. Gao, Z. Zhu, X. Ning, and Y . Wang, “Litevar: Compressing visual autoregressive modelling with efficient attention and quantization,”arXiv preprint arXiv:2411.17178, 2024
2024 arXiv
-
[19]
Fp8 quantization: The power of the exponent,
A. Kuzmin, M. Van Baalen, Y . Ren, M. Nagel, J. Peters, and T. Blankevoort, “Fp8 quantization: The power of the exponent,”Advances in Neural Information Processing Systems, vol. 35, pp. 14 651–14 662, 2022
2022
-
[20]
Llm-fp4: 4-bit floating-point quantized transformers,
S.-y. Liu, Z. Liu, X. Huang, P. Dong, and K.-T. Cheng, “Llm-fp4: 4-bit floating-point quantized transformers,”arXiv preprint arXiv:2310.16836, 2023
2023 arXiv
-
[21]
Flightllm: Efficient large language model inference with a complete mapping flow on fpgas,
S. Zeng, J. Liu, G. Dai, X. Yang, T. Fu, H. Wang, W. Ma, H. Sun, S. Li, Z. Huanget al., “Flightllm: Efficient large language model inference with a complete mapping flow on fpgas,” inProceedings of the 2024 ACM/SIGDA International Symposium on Field Programmable Gate Arrays, 2...
2024
-
[22]
Hg-pipe: Vision transformer acceleration with hybrid-grained pipeline,
Q. Guo, J. Wan, S. Xu, M. Li, and Y . Wang, “Hg-pipe: Vision transformer acceleration with hybrid-grained pipeline,” inProceedings of the 43rd IEEE/ACM International Conference on Computer-Aided Design, 2024, pp. 1–9
2024
-
[23]
Flightvgm: Efficient video generation model inference with online sparsification and hybrid precision on fpgas,
J. Liu, S. Zeng, L. Ding, W. Soedarmadji, H. Zhou, Z. Wang, J. Li, J. Li, Y . Dai, K. Wenet al., “Flightvgm: Efficient video generation model inference with online sparsification and hybrid precision on fpgas,” in Proceedings of the 2025 ACM/SIGDA International Symposium on Fi...
2025
-
[24]
Pushing up to the limit of memory bandwidth and capacity utilization for efficient llm decoding on embedded fpga,
J. Li, T. Li, G. Shen, D. Zhao, Q. Zhang, and Y . Zeng, “Pushing up to the limit of memory bandwidth and capacity utilization for efficient llm decoding on embedded fpga,”arXiv preprint arXiv:2502.10659, 2025
2025 arXiv
-
[25]
Generating diverse high- fidelity images with vq-vae-2,
A. Razavi, A. Van den Oord, and O. Vinyals, “Generating diverse high- fidelity images with vq-vae-2,”Advances in neural information processing systems, vol. 32, 2019
2019
-
[26]
Autoregressive image generation using residual quantization,
D. Lee, C. Kim, S. Kim, M. Cho, and W.-S. Han, “Autoregressive image generation using residual quantization,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2022, pp. 11 523–11 532
2022
-
[27]
Movq: Modulating quantized vectors for high-fidelity image generation,
C. Zheng, T.-L. Vuong, J. Cai, and D. Phung, “Movq: Modulating quantized vectors for high-fidelity image generation,”Advances in Neural Information Processing Systems, vol. 35, pp. 23 412–23 425, 2022
2022
-
[28]
Neural discrete representation learning,
A. Van Den Oord, O. Vinyalset al., “Neural discrete representation learning,”Advances in neural information processing systems, vol. 30, 2017
2017
-
[29]
Hart: Efficient visual generation with hybrid autore- gressive transformer,
H. Tang, Y . Wu, S. Yang, E. Xie, J. Chen, J. Chen, Z. Zhang, H. Cai, Y . Lu, and S. Han, “Hart: Efficient visual generation with hybrid autore- gressive transformer,”arXiv preprint arXiv:2410.10812, 2024
2024 arXiv
-
[30]
Infinity: Scaling bitwise autoregressive modeling for high-resolution image synthesis,
J. Han, J. Liu, Y . Jiang, B. Yan, Y . Zhang, Z. Yuan, B. Peng, and X. Liu, “Infinity: Scaling bitwise autoregressive modeling for high-resolution image synthesis,”arXiv preprint arXiv:2412.04431, 2024
2024 arXiv
-
[31]
Integer or floating point? new outlooks for low- bit quantization on large language models,
Y . Zhang, L. Zhao, S. Cao, S. Zhang, W. Wang, T. Cao, F. Yang, M. Yang, S. Zhang, and N. Xu, “Integer or floating point? new outlooks for low- bit quantization on large language models,” in2024 IEEE International Conference on Multimedia and Expo (ICME). IEEE, 2024, pp. 1–6
2024
-
[32]
Afpq: Asymmetric floating point quantization for llms,
Y . Zhang, S. Zhang, S. Cao, D. Du, J. Wei, T. Cao, and N. Xu, “Afpq: Asymmetric floating point quantization for llms,”arXiv preprint arXiv:2311.01792, 2023
2023 arXiv
-
[33]
Optimizing large language model training using fp4 quantiza- tion,
R. Wang, Y . Gong, X. Liu, G. Zhao, Z. Yang, B. Guo, Z. Zha, and P. Cheng, “Optimizing large language model training using fp4 quantiza- tion,”arXiv preprint arXiv:2501.17116, 2025
2025 arXiv
-
[34]
Microscaling data formats for deep learning,
B. D. Rouhani, R. Zhao, A. More, M. Hall, A. Khodamoradi, S. Deng, D. Choudhary, M. Cornea, E. Dellinger, K. Denolfet al., “Microscaling data formats for deep learning,”arXiv preprint arXiv:2310.10537, 2023
2023 arXiv
-
[35]
Classifier-free diffusion guidance,
J. Ho and T. Salimans, “Classifier-free diffusion guidance,”arXiv preprint arXiv:2207.12598, 2022
2022 arXiv
-
[36]
Sda: Low-bit stable diffusion acceleration on edge fpgas,
G. Yang, Y . Xie, Z. J. Xue, S.-E. Chang, Y . Li, P. Dong, J. Lei, W. Xie, Y . Wang, X. Linet al., “Sda: Low-bit stable diffusion acceleration on edge fpgas,” in2024 34th International Conference on Field-Programmable Logic and Applications (FPL). IEEE, 2024, pp. 264–273
2024
-
[37]
Lightmamba: Efficient mamba acceleration on fpga with quantization and hardware co-design,
R. Wei, S. Xu, L. Zhong, Z. Yang, Q. Guo, Y . Wang, R. Wang, and M. Li, “Lightmamba: Efficient mamba acceleration on fpga with quantization and hardware co-design,”arXiv preprint arXiv:2502.15260, 2025
2025
-
[38]
Estimating or propagating gradients through stochastic neurons for conditional computation,
Y . Bengio, N. L ´eonard, and A. Courville, “Estimating or propagating gradients through stochastic neurons for conditional computation,”arXiv preprint arXiv:1308.3432, 2013
2013 arXiv
-
[39]
Improved techniques for training gans,
T. Salimans, I. Goodfellow, W. Zaremba, V . Cheung, A. Radford, and X. Chen, “Improved techniques for training gans,”Advances in neural information processing systems, vol. 29, 2016
2016
-
[40]
Gans trained by a two time-scale update rule converge to a local nash equilibrium,
M. Heusel, H. Ramsauer, T. Unterthiner, B. Nessler, and S. Hochreiter, “Gans trained by a two time-scale update rule converge to a local nash equilibrium,”Advances in neural information processing systems, vol. 30, 2017
2017
-
[41]
Decoupled weight decay regularization,
I. Loshchilov and F. Hutter, “Decoupled weight decay regularization,” arXiv preprint arXiv:1711.05101, 2017
2017 arXiv
-
[42]
Flashattention-2: Faster attention with better parallelism and work partitioning,
T. Dao, “Flashattention-2: Faster attention with better parallelism and work partitioning,”arXiv preprint arXiv:2307.08691, 2023
2023 arXiv
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.