summaryrefslogtreecommitdiff
path: root/tests/compute/ieee754-mixed-type-nan-comparisons.slang
AgeCommit message (Collapse)Author
2025-08-25Fix#8084: Batch-8: Enable cuda tests (#8268)Harsh Aggarwal (NVIDIA)
2025-07-11Fix IEEE 754 NaN comparisons in constant folding (#7721)Jay Kwak
* Fix IEEE 754 NaN comparisons in constant folding Added proper NaN handling in SCCP optimization pass to follow IEEE 754 standard: - NaN \!= any value returns true - All other NaN comparisons return false - Added double precision NaN detection support - Fixed type detection to check operands instead of result type * Avoid differentiating NaN and non-NaN cases * format code (#76) --------- Co-authored-by: slangbot <ellieh+slangbot@nvidia.com>