spelling: bounds

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2024-01-01 22:50:30 -05:00
parent c8c2d6c4de
commit 94f71e5832

View File

@ -232,7 +232,7 @@ array truncated_normal(
auto u = uniform(a, b, shape, dtype, key, s); auto u = uniform(a, b, shape, dtype, key, s);
auto out = multiply(sqrt2, erfinv(u, s), s); auto out = multiply(sqrt2, erfinv(u, s), s);
// Clip in bouds // Clip in bounds
return maximum(minimum(upper_t, out, s), lower_t, s); return maximum(minimum(upper_t, out, s), lower_t, s);
} }