summaryrefslogtreecommitdiffstats
path: root/tests/autodiff/float-cast.slang
Commit message (Collapse)AuthorAge
* Fix 7723 - Add autodiff tests (#7919)Harsh Aggarwal (NVIDIA)2025-08-06
| | | | | | | * Fix 7723 - Add autodiff tests * Update bug-1.slang Adding Vulkan
* Update Slang-RHI/slang (#5701)Anders Leino2024-11-28
| | | | | | | | | | | | | | | | | | | | | | * Update Slang-RHI/slang This brings in new fixes for WebGPU. In particular, the "use_dxc" toggle is now used, which should enable these tests to run on WebGPU, if f16 is otherwise supported: - `tests/language-feature/generics/variadic-0.slang` - `tests/language-feature/generics/tuple.slang` This closes #5605. * Disable tests/autodiff/float-cast.slang for wgpu This test was previously not running for WebGPU because it required the 'half' render feature, and Slang-RHI was previously not reporting it. With the Slang-RHI update, the test now runs on WebGPU. It now fails because the test is using 'double' which is just not supported on WebGPU. Thus this commit disables the test.
* Add support for `kIROp_FloatCast` (#2824)Sai Praveen Bangaru2023-04-21
* Add support for `kIROp_FloatCast` * Update float-cast.slang * Added flag to d3d options