File size: 15,791 Bytes
712dbf0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 |
// Copyright © 2024 Apple Inc.
#include <nanobind/stl/complex.h>
#include "python/src/convert.h"
#include "python/src/utils.h"
#include "mlx/utils.h"
enum PyScalarT {
pybool = 0,
pyint = 1,
pyfloat = 2,
pycomplex = 3,
};
namespace nanobind {
template <>
struct ndarray_traits<mx::float16_t> {
static constexpr bool is_complex = false;
static constexpr bool is_float = true;
static constexpr bool is_bool = false;
static constexpr bool is_int = false;
static constexpr bool is_signed = true;
};
}; // namespace nanobind
int check_shape_dim(int64_t dim) {
if (dim > std::numeric_limits<int>::max()) {
throw std::invalid_argument(
"Shape dimension falls outside supported `int` range.");
}
return static_cast<int>(dim);
}
template <typename T>
mx::array nd_array_to_mlx_contiguous(
nb::ndarray<nb::ro, nb::c_contig, nb::device::cpu> nd_array,
const mx::Shape& shape,
mx::Dtype dtype) {
// Make a copy of the numpy buffer
// Get buffer ptr pass to array constructor
auto data_ptr = nd_array.data();
return mx::array(static_cast<const T*>(data_ptr), shape, dtype);
}
mx::array nd_array_to_mlx(
nb::ndarray<nb::ro, nb::c_contig, nb::device::cpu> nd_array,
std::optional<mx::Dtype> dtype) {
// Compute the shape and size
mx::Shape shape;
shape.reserve(nd_array.ndim());
for (int i = 0; i < nd_array.ndim(); i++) {
shape.push_back(check_shape_dim(nd_array.shape(i)));
}
auto type = nd_array.dtype();
// Copy data and make array
if (type == nb::dtype<bool>()) {
return nd_array_to_mlx_contiguous<bool>(
nd_array, shape, dtype.value_or(mx::bool_));
} else if (type == nb::dtype<uint8_t>()) {
return nd_array_to_mlx_contiguous<uint8_t>(
nd_array, shape, dtype.value_or(mx::uint8));
} else if (type == nb::dtype<uint16_t>()) {
return nd_array_to_mlx_contiguous<uint16_t>(
nd_array, shape, dtype.value_or(mx::uint16));
} else if (type == nb::dtype<uint32_t>()) {
return nd_array_to_mlx_contiguous<uint32_t>(
nd_array, shape, dtype.value_or(mx::uint32));
} else if (type == nb::dtype<uint64_t>()) {
return nd_array_to_mlx_contiguous<uint64_t>(
nd_array, shape, dtype.value_or(mx::uint64));
} else if (type == nb::dtype<int8_t>()) {
return nd_array_to_mlx_contiguous<int8_t>(
nd_array, shape, dtype.value_or(mx::int8));
} else if (type == nb::dtype<int16_t>()) {
return nd_array_to_mlx_contiguous<int16_t>(
nd_array, shape, dtype.value_or(mx::int16));
} else if (type == nb::dtype<int32_t>()) {
return nd_array_to_mlx_contiguous<int32_t>(
nd_array, shape, dtype.value_or(mx::int32));
} else if (type == nb::dtype<int64_t>()) {
return nd_array_to_mlx_contiguous<int64_t>(
nd_array, shape, dtype.value_or(mx::int64));
} else if (type == nb::dtype<mx::float16_t>()) {
return nd_array_to_mlx_contiguous<mx::float16_t>(
nd_array, shape, dtype.value_or(mx::float16));
} else if (type == nb::bfloat16) {
return nd_array_to_mlx_contiguous<mx::bfloat16_t>(
nd_array, shape, dtype.value_or(mx::bfloat16));
} else if (type == nb::dtype<float>()) {
return nd_array_to_mlx_contiguous<float>(
nd_array, shape, dtype.value_or(mx::float32));
} else if (type == nb::dtype<double>()) {
return nd_array_to_mlx_contiguous<double>(
nd_array, shape, dtype.value_or(mx::float32));
} else if (type == nb::dtype<std::complex<float>>()) {
return nd_array_to_mlx_contiguous<mx::complex64_t>(
nd_array, shape, dtype.value_or(mx::complex64));
} else if (type == nb::dtype<std::complex<double>>()) {
return nd_array_to_mlx_contiguous<mx::complex128_t>(
nd_array, shape, dtype.value_or(mx::complex64));
} else {
throw std::invalid_argument("Cannot convert numpy array to mlx array.");
}
}
template <typename T, typename... NDParams>
nb::ndarray<NDParams...> mlx_to_nd_array_impl(
mx::array a,
std::optional<nb::dlpack::dtype> t = {}) {
{
nb::gil_scoped_release nogil;
a.eval();
}
std::vector<size_t> shape(a.shape().begin(), a.shape().end());
return nb::ndarray<NDParams...>(
a.data<T>(),
a.ndim(),
shape.data(),
/* owner= */ nb::none(),
a.strides().data(),
t.value_or(nb::dtype<T>()));
}
template <typename... NDParams>
nb::ndarray<NDParams...> mlx_to_nd_array(const mx::array& a) {
switch (a.dtype()) {
case mx::bool_:
return mlx_to_nd_array_impl<bool, NDParams...>(a);
case mx::uint8:
return mlx_to_nd_array_impl<uint8_t, NDParams...>(a);
case mx::uint16:
return mlx_to_nd_array_impl<uint16_t, NDParams...>(a);
case mx::uint32:
return mlx_to_nd_array_impl<uint32_t, NDParams...>(a);
case mx::uint64:
return mlx_to_nd_array_impl<uint64_t, NDParams...>(a);
case mx::int8:
return mlx_to_nd_array_impl<int8_t, NDParams...>(a);
case mx::int16:
return mlx_to_nd_array_impl<int16_t, NDParams...>(a);
case mx::int32:
return mlx_to_nd_array_impl<int32_t, NDParams...>(a);
case mx::int64:
return mlx_to_nd_array_impl<int64_t, NDParams...>(a);
case mx::float16:
return mlx_to_nd_array_impl<mx::float16_t, NDParams...>(a);
case mx::bfloat16:
throw nb::type_error("bfloat16 arrays cannot be converted to NumPy.");
case mx::float32:
return mlx_to_nd_array_impl<float, NDParams...>(a);
case mx::float64:
return mlx_to_nd_array_impl<double, NDParams...>(a);
case mx::complex64:
return mlx_to_nd_array_impl<std::complex<float>, NDParams...>(a);
default:
throw nb::type_error("type cannot be converted to NumPy.");
}
}
nb::ndarray<nb::numpy> mlx_to_np_array(const mx::array& a) {
return mlx_to_nd_array<nb::numpy>(a);
}
nb::ndarray<> mlx_to_dlpack(const mx::array& a) {
return mlx_to_nd_array<>(a);
}
nb::object to_scalar(mx::array& a) {
if (a.size() != 1) {
throw std::invalid_argument(
"[convert] Only length-1 arrays can be converted to Python scalars.");
}
{
nb::gil_scoped_release nogil;
a.eval();
}
switch (a.dtype()) {
case mx::bool_:
return nb::cast(a.item<bool>());
case mx::uint8:
return nb::cast(a.item<uint8_t>());
case mx::uint16:
return nb::cast(a.item<uint16_t>());
case mx::uint32:
return nb::cast(a.item<uint32_t>());
case mx::uint64:
return nb::cast(a.item<uint64_t>());
case mx::int8:
return nb::cast(a.item<int8_t>());
case mx::int16:
return nb::cast(a.item<int16_t>());
case mx::int32:
return nb::cast(a.item<int32_t>());
case mx::int64:
return nb::cast(a.item<int64_t>());
case mx::float16:
return nb::cast(static_cast<float>(a.item<mx::float16_t>()));
case mx::float32:
return nb::cast(a.item<float>());
case mx::bfloat16:
return nb::cast(static_cast<float>(a.item<mx::bfloat16_t>()));
case mx::complex64:
return nb::cast(a.item<std::complex<float>>());
case mx::float64:
return nb::cast(a.item<double>());
default:
throw nb::type_error("type cannot be converted to Python scalar.");
}
}
template <typename T, typename U = T>
nb::list to_list(mx::array& a, size_t index, int dim) {
nb::list pl;
auto stride = a.strides()[dim];
for (int i = 0; i < a.shape(dim); ++i) {
if (dim == a.ndim() - 1) {
pl.append(static_cast<U>(a.data<T>()[index]));
} else {
pl.append(to_list<T, U>(a, index, dim + 1));
}
index += stride;
}
return pl;
}
nb::object tolist(mx::array& a) {
if (a.ndim() == 0) {
return to_scalar(a);
}
{
nb::gil_scoped_release nogil;
a.eval();
}
switch (a.dtype()) {
case mx::bool_:
return to_list<bool>(a, 0, 0);
case mx::uint8:
return to_list<uint8_t>(a, 0, 0);
case mx::uint16:
return to_list<uint16_t>(a, 0, 0);
case mx::uint32:
return to_list<uint32_t>(a, 0, 0);
case mx::uint64:
return to_list<uint64_t>(a, 0, 0);
case mx::int8:
return to_list<int8_t>(a, 0, 0);
case mx::int16:
return to_list<int16_t>(a, 0, 0);
case mx::int32:
return to_list<int32_t>(a, 0, 0);
case mx::int64:
return to_list<int64_t>(a, 0, 0);
case mx::float16:
return to_list<mx::float16_t, float>(a, 0, 0);
case mx::float32:
return to_list<float>(a, 0, 0);
case mx::bfloat16:
return to_list<mx::bfloat16_t, float>(a, 0, 0);
case mx::complex64:
return to_list<std::complex<float>>(a, 0, 0);
default:
throw nb::type_error("data type cannot be converted to Python list.");
}
}
template <typename T, typename U>
void fill_vector(T list, std::vector<U>& vals) {
for (auto l : list) {
if (nb::isinstance<nb::list>(l)) {
fill_vector(nb::cast<nb::list>(l), vals);
} else if (nb::isinstance<nb::tuple>(*list.begin())) {
fill_vector(nb::cast<nb::tuple>(l), vals);
} else {
vals.push_back(nb::cast<U>(l));
}
}
}
template <typename T>
PyScalarT validate_shape(
T list,
const mx::Shape& shape,
int idx,
bool& all_python_primitive_elements) {
if (idx >= shape.size()) {
throw std::invalid_argument("Initialization encountered extra dimension.");
}
auto s = shape[idx];
if (nb::len(list) != s) {
throw std::invalid_argument(
"Initialization encountered non-uniform length.");
}
if (s == 0) {
return pyfloat;
}
PyScalarT type = pybool;
for (auto l : list) {
PyScalarT t;
if (nb::isinstance<nb::list>(l)) {
t = validate_shape(
nb::cast<nb::list>(l), shape, idx + 1, all_python_primitive_elements);
} else if (nb::isinstance<nb::tuple>(*list.begin())) {
t = validate_shape(
nb::cast<nb::tuple>(l),
shape,
idx + 1,
all_python_primitive_elements);
} else if (nb::isinstance<mx::array>(l)) {
all_python_primitive_elements = false;
auto arr = nb::cast<mx::array>(l);
if (arr.ndim() + idx + 1 == shape.size() &&
std::equal(
arr.shape().cbegin(),
arr.shape().cend(),
shape.cbegin() + idx + 1)) {
t = pybool;
} else {
throw std::invalid_argument(
"Initialization encountered non-uniform length.");
}
} else {
if (nb::isinstance<nb::bool_>(l)) {
t = pybool;
} else if (nb::isinstance<nb::int_>(l)) {
t = pyint;
} else if (nb::isinstance<nb::float_>(l)) {
t = pyfloat;
} else if (PyComplex_Check(l.ptr())) {
t = pycomplex;
} else {
std::ostringstream msg;
msg << "Invalid type " << nb::type_name(l.type()).c_str()
<< " received in array initialization.";
throw std::invalid_argument(msg.str());
}
if (idx + 1 != shape.size()) {
throw std::invalid_argument(
"Initialization encountered non-uniform length.");
}
}
type = std::max(type, t);
}
return type;
}
template <typename T>
void get_shape(T list, mx::Shape& shape) {
shape.push_back(check_shape_dim(nb::len(list)));
if (shape.back() > 0) {
auto l = list.begin();
if (nb::isinstance<nb::list>(*l)) {
return get_shape(nb::cast<nb::list>(*l), shape);
} else if (nb::isinstance<nb::tuple>(*l)) {
return get_shape(nb::cast<nb::tuple>(*l), shape);
} else if (nb::isinstance<mx::array>(*l)) {
auto arr = nb::cast<mx::array>(*l);
for (int i = 0; i < arr.ndim(); i++) {
shape.push_back(arr.shape(i));
}
return;
}
}
}
template <typename T>
mx::array array_from_list_impl(
T pl,
const PyScalarT& inferred_type,
std::optional<mx::Dtype> specified_type,
const mx::Shape& shape) {
// Make the array
switch (inferred_type) {
case pybool: {
std::vector<bool> vals;
fill_vector(pl, vals);
return mx::array(vals.begin(), shape, specified_type.value_or(mx::bool_));
}
case pyint: {
auto dtype = specified_type.value_or(mx::int32);
if (dtype == mx::int64) {
std::vector<int64_t> vals;
fill_vector(pl, vals);
return mx::array(vals.begin(), shape, dtype);
} else if (dtype == mx::uint64) {
std::vector<uint64_t> vals;
fill_vector(pl, vals);
return mx::array(vals.begin(), shape, dtype);
} else if (dtype == mx::uint32) {
std::vector<uint32_t> vals;
fill_vector(pl, vals);
return mx::array(vals.begin(), shape, dtype);
} else if (mx::issubdtype(dtype, mx::inexact)) {
std::vector<float> vals;
fill_vector(pl, vals);
return mx::array(vals.begin(), shape, dtype);
} else {
std::vector<int> vals;
fill_vector(pl, vals);
return mx::array(vals.begin(), shape, dtype);
}
}
case pyfloat: {
std::vector<float> vals;
fill_vector(pl, vals);
return mx::array(
vals.begin(), shape, specified_type.value_or(mx::float32));
}
case pycomplex: {
std::vector<std::complex<float>> vals;
fill_vector(pl, vals);
return mx::array(
reinterpret_cast<mx::complex64_t*>(vals.data()),
shape,
specified_type.value_or(mx::complex64));
}
default: {
std::ostringstream msg;
msg << "Should not happen, inferred: " << inferred_type
<< " on subarray made of only python primitive types.";
throw std::runtime_error(msg.str());
}
}
}
template <typename T>
mx::array array_from_list_impl(T pl, std::optional<mx::Dtype> dtype) {
// Compute the shape
mx::Shape shape;
get_shape(pl, shape);
// Validate the shape and type
bool all_python_primitive_elements = true;
auto type = validate_shape(pl, shape, 0, all_python_primitive_elements);
if (all_python_primitive_elements) {
// `pl` does not contain mlx arrays
return array_from_list_impl(pl, type, dtype, shape);
}
// `pl` contains mlx arrays
std::vector<mx::array> arrays;
for (auto l : pl) {
arrays.push_back(create_array(nb::cast<ArrayInitType>(l), dtype));
}
return mx::stack(arrays);
}
mx::array array_from_list(nb::list pl, std::optional<mx::Dtype> dtype) {
return array_from_list_impl(pl, dtype);
}
mx::array array_from_list(nb::tuple pl, std::optional<mx::Dtype> dtype) {
return array_from_list_impl(pl, dtype);
}
mx::array create_array(ArrayInitType v, std::optional<mx::Dtype> t) {
if (auto pv = std::get_if<nb::bool_>(&v); pv) {
return mx::array(nb::cast<bool>(*pv), t.value_or(mx::bool_));
} else if (auto pv = std::get_if<nb::int_>(&v); pv) {
auto val = nb::cast<long>(*pv);
auto default_type = (val > std::numeric_limits<int>::max() ||
val < std::numeric_limits<int>::min())
? mx::int64
: mx::int32;
return mx::array(val, t.value_or(default_type));
} else if (auto pv = std::get_if<nb::float_>(&v); pv) {
return mx::array(nb::cast<float>(*pv), t.value_or(mx::float32));
} else if (auto pv = std::get_if<std::complex<float>>(&v); pv) {
return mx::array(
static_cast<mx::complex64_t>(*pv), t.value_or(mx::complex64));
} else if (auto pv = std::get_if<nb::list>(&v); pv) {
return array_from_list(*pv, t);
} else if (auto pv = std::get_if<nb::tuple>(&v); pv) {
return array_from_list(*pv, t);
} else if (auto pv = std::get_if<
nb::ndarray<nb::ro, nb::c_contig, nb::device::cpu>>(&v);
pv) {
return nd_array_to_mlx(*pv, t);
} else if (auto pv = std::get_if<mx::array>(&v); pv) {
return mx::astype(*pv, t.value_or((*pv).dtype()));
} else {
auto arr = to_array_with_accessor(std::get<ArrayLike>(v).obj);
return mx::astype(arr, t.value_or(arr.dtype()));
}
}
|