feat(const_eval): impl. log2

This commit is contained in:
Erich Gubler 2024-01-26 12:14:18 -05:00 committed by Teodor Tanasoaia
parent 39cb92cf88
commit e6f6eb7036
2 changed files with 4 additions and 0 deletions

View File

@ -79,6 +79,7 @@ Bottom level categories:
- `fma`
- `inverseSqrt`
- `log`
- `log2`
- Eager release of GPU resources comes from device.trackers. By @bradwerth in [#5075](https://github.com/gfx-rs/wgpu/pull/5075)
- `wgpu-types`'s `trace` and `replay` features have been replaced by the `serde` feature. By @KirmesBude in [#5149](https://github.com/gfx-rs/wgpu/pull/5149)
- `wgpu-core`'s `serial-pass` feature has been removed. Use `serde` instead. By @KirmesBude in [#5149](https://github.com/gfx-rs/wgpu/pull/5149)

View File

@ -937,6 +937,9 @@ impl<'a> ConstantEvaluator<'a> {
crate::MathFunction::Log => {
component_wise_float!(self, span, [arg], |e| { Ok([e.ln()]) })
}
crate::MathFunction::Log2 => {
component_wise_float!(self, span, [arg], |e| { Ok([e.log2()]) })
}
crate::MathFunction::Round => {
// TODO: Use `f{32,64}.round_ties_even()` when available on stable. This polyfill
// is shamelessly [~~stolen from~~ inspired by `ndarray-image`][polyfill source],