mirror of
https://github.com/ml-explore/mlx.git
synced 2025-12-16 01:49:05 +08:00
use fp32
This commit is contained in:
@@ -82,39 +82,6 @@ array split(const array& key, int num, StreamOrDevice s /* = {} */) {
|
|||||||
return bits({num, 2}, 4, key, s);
|
return bits({num, 2}, 4, key, s);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the next representable value below 1.0 for half precision
|
|
||||||
// floating point types (fp16, bf16)
|
|
||||||
template <typename T>
|
|
||||||
T below_one() {
|
|
||||||
T f = T(1.0);
|
|
||||||
uint16_t* m = (uint16_t*)&f;
|
|
||||||
*m -= 1;
|
|
||||||
return f;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get the next representable value above -1.0 for half precision
|
|
||||||
// floating point types (fp16, bf16)
|
|
||||||
template <typename T>
|
|
||||||
T above_minus_one() {
|
|
||||||
T f = T(-1.0);
|
|
||||||
uint16_t* m = (uint16_t*)&f;
|
|
||||||
*m -= 1;
|
|
||||||
return f;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get the next representable value above -1.0 for half precision
|
|
||||||
// use std::nextafter as default case.
|
|
||||||
array above_minus_one_with_default(Dtype dtype) {
|
|
||||||
switch (dtype) {
|
|
||||||
case float16:
|
|
||||||
return array(above_minus_one<float16_t>(), dtype);
|
|
||||||
case bfloat16:
|
|
||||||
return array(above_minus_one<bfloat16_t>(), dtype);
|
|
||||||
default:
|
|
||||||
return array(std::nextafter(-1.0f, 0.0f), dtype);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
array uniform(
|
array uniform(
|
||||||
const array& low,
|
const array& low,
|
||||||
const array& high,
|
const array& high,
|
||||||
@@ -139,31 +106,11 @@ array uniform(
|
|||||||
<< " from broadcasted shape " << out_shape << ".";
|
<< " from broadcasted shape " << out_shape << ".";
|
||||||
throw std::invalid_argument(msg.str());
|
throw std::invalid_argument(msg.str());
|
||||||
}
|
}
|
||||||
// Get random values between [0, nextafter(maxval, 0.0f)] since samples must
|
auto upper = array(std::nextafter(1.0f, 0.0f), float32);
|
||||||
// be in [low, high)
|
auto maxval = array(std::numeric_limits<uint32_t>::max(), float32);
|
||||||
auto get_limits = [&dtype]() {
|
auto out = bits(shape, size_of(float32), key, stream);
|
||||||
switch (dtype) {
|
out = divide(out, maxval, stream);
|
||||||
case float32:
|
out = astype(minimum(out, upper, stream), dtype, stream);
|
||||||
return std::make_pair(
|
|
||||||
array(std::nextafter(1.0f, 0.0f), float32),
|
|
||||||
array(std::numeric_limits<uint32_t>::max(), float32));
|
|
||||||
case float16:
|
|
||||||
return std::make_pair(
|
|
||||||
array(below_one<float16_t>(), float16),
|
|
||||||
array(std::numeric_limits<uint32_t>::max(), float32));
|
|
||||||
case bfloat16:
|
|
||||||
return std::make_pair(
|
|
||||||
array(below_one<bfloat16_t>(), bfloat16),
|
|
||||||
array(std::numeric_limits<uint16_t>::max(), bfloat16));
|
|
||||||
default:
|
|
||||||
throw std::runtime_error("[uniform] Unsupported type.");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
auto [upper, maxval] = get_limits();
|
|
||||||
auto out = bits(shape, size_of(maxval.dtype()), key, stream);
|
|
||||||
out = astype(divide(out, maxval, stream), dtype, stream);
|
|
||||||
out = minimum(out, upper, stream);
|
|
||||||
return add(multiply(range, out, stream), lo, stream);
|
return add(multiply(range, out, stream), lo, stream);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -183,7 +130,7 @@ inline array complex_normal(
|
|||||||
const std::optional<array>& key,
|
const std::optional<array>& key,
|
||||||
StreamOrDevice s) {
|
StreamOrDevice s) {
|
||||||
auto stream = to_stream(s);
|
auto stream = to_stream(s);
|
||||||
auto low = above_minus_one_with_default(float32);
|
auto low = array(std::nextafter(-1.0f, 0.0f), float32);
|
||||||
auto high = array(1.0f, float32);
|
auto high = array(1.0f, float32);
|
||||||
shape.push_back(2);
|
shape.push_back(2);
|
||||||
auto samples =
|
auto samples =
|
||||||
@@ -210,15 +157,16 @@ array normal(
|
|||||||
}
|
}
|
||||||
|
|
||||||
auto stream = to_stream(s);
|
auto stream = to_stream(s);
|
||||||
auto low = above_minus_one_with_default(dtype);
|
auto low = array(std::nextafter(-1.0f, 0.0f), float32);
|
||||||
auto high = array(1.0f, dtype);
|
auto high = array(1.0f, float32);
|
||||||
auto samples = uniform(low, high, shape, dtype, key, stream);
|
auto samples = uniform(low, high, shape, float32, key, stream);
|
||||||
auto applied_scale = array(std::sqrt(2.0), dtype);
|
auto applied_scale = array(std::sqrt(2.0), dtype);
|
||||||
if (scale.has_value()) {
|
if (scale.has_value()) {
|
||||||
applied_scale =
|
applied_scale =
|
||||||
multiply(applied_scale, astype(*scale, dtype, stream), stream);
|
multiply(applied_scale, astype(*scale, dtype, stream), stream);
|
||||||
}
|
}
|
||||||
samples = multiply(applied_scale, erfinv(samples, stream), stream);
|
samples = astype(erfinv(samples, stream), dtype, stream);
|
||||||
|
samples = multiply(applied_scale, samples, stream);
|
||||||
if (loc.has_value()) {
|
if (loc.has_value()) {
|
||||||
samples = add(astype(*loc, dtype, stream), samples, stream);
|
samples = add(astype(*loc, dtype, stream), samples, stream);
|
||||||
}
|
}
|
||||||
@@ -470,15 +418,16 @@ array laplace(
|
|||||||
const std::optional<array>& key /*= nullopt */,
|
const std::optional<array>& key /*= nullopt */,
|
||||||
StreamOrDevice s /* = {} */) {
|
StreamOrDevice s /* = {} */) {
|
||||||
auto stream = to_stream(s);
|
auto stream = to_stream(s);
|
||||||
auto low = above_minus_one_with_default(dtype);
|
auto low = array(std::nextafter(-1.0f, 0.0f), float32);
|
||||||
auto high = array(1.0f, dtype);
|
auto high = array(1.0f, float32);
|
||||||
auto samples = uniform(low, high, shape, dtype, key, stream);
|
auto samples = uniform(low, high, shape, float32, key, stream);
|
||||||
// Use inverse CDF to generate Laplacian noise
|
// Use inverse CDF to generate Laplacian noise
|
||||||
samples = multiply(
|
samples = multiply(
|
||||||
sign(samples, stream),
|
sign(samples, stream),
|
||||||
log1p(
|
log1p(
|
||||||
multiply(array(-1.0f, dtype), abs(samples, stream), stream), stream),
|
multiply(array(-1.0f, dtype), abs(samples, stream), stream), stream),
|
||||||
stream);
|
stream);
|
||||||
|
samples = astype(samples, dtype, stream);
|
||||||
|
|
||||||
if (scale != 1.0) {
|
if (scale != 1.0) {
|
||||||
samples = multiply(array(scale, dtype), samples, stream);
|
samples = multiply(array(scale, dtype), samples, stream);
|
||||||
|
|||||||
Reference in New Issue
Block a user