mlx/mlx/io/load.cpp
Awni Hannun c4230747a1
redesign for faster cpu/gpu synch (#1869)
* redesign for faster cpu/gpu synch

* load + more async CPU

* use command encoder API and move more ops to use it

* make fence back-end generic + CPU only fence

* faster build

* fix async eval

* fixes + handle temporaries

* fix / improve cpu conv

* remove unused status, fix siblings

* fix extensions

* fix

* fix no cpu build

* format

* comments

* fix perf regression, remove unecessary abort

* fix events, task limit cpu

* fix waiting

* fix donation / temporaries in normalization
2025-03-06 19:23:38 -08:00

390 lines
10 KiB
C++

// Copyright © 2023-2024 Apple Inc.
#include <algorithm>
#include <cstring>
#include <fstream>
#include <limits>
#include <sstream>
// Used by pread implementation.
#ifdef _WIN32
#ifdef _MSC_VER
#define NOMINMAX
#endif
#include <windows.h>
#endif // _WIN32
#include "mlx/io/load.h"
#include "mlx/ops.h"
#include "mlx/primitives.h"
#include "mlx/utils.h"
// Adapted from
// https://github.com/angeloskath/supervised-lda/blob/master/include/ldaplusplus/NumpyFormat.hpp
namespace mlx::core {
namespace {
constexpr uint8_t MAGIC[] = {
0x93,
0x4e,
0x55,
0x4d,
0x50,
0x59,
};
inline bool is_big_endian() {
union ByteOrder {
int32_t i;
uint8_t c[4];
};
ByteOrder b = {0x01234567};
return b.c[0] == 0x01;
}
// Array protocol typestring for Dtype
std::string dtype_to_array_protocol(const Dtype& t) {
std::ostringstream r;
if (size_of(t) > 1) {
r << (is_big_endian() ? ">" : "<");
} else {
r << "|";
}
r << kindof(t) << (int)size_of(t);
return r.str();
}
// Dtype from array protocol type string
Dtype dtype_from_array_protocol(std::string_view t) {
if (t.length() == 2 || t.length() == 3) {
std::string_view r = t.length() == 3 ? t.substr(1, 2) : t;
if (r == "V2") {
return bfloat16;
}
uint8_t size = r[1] - '0';
switch (r[0]) {
case 'b': {
if (size == 1)
return bool_;
}
case 'i': {
if (size == 1)
return int8;
else if (size == 2)
return int16;
else if (size == 4)
return int32;
else if (size == 8)
return int64;
}
case 'u': {
if (size == 1)
return uint8;
else if (size == 2)
return uint16;
else if (size == 4)
return uint32;
else if (size == 8)
return uint64;
}
case 'f': {
if (size == 2)
return float16;
else if (size == 4)
return float32;
}
case 'c': {
return complex64;
}
}
}
throw std::invalid_argument(
"[from_str] Invalid array protocol type-string: " + std::string(t));
}
#ifdef _WIN32
// There is no pread on Windows, emulate it with ReadFile.
int64_t pread(int fd, void* buf, uint64_t size, uint64_t offset) {
HANDLE file = reinterpret_cast<HANDLE>(_get_osfhandle(fd));
if (file == INVALID_HANDLE_VALUE) {
return -1;
}
OVERLAPPED overlapped = {0};
overlapped.Offset = offset & 0xFFFFFFFF;
overlapped.OffsetHigh = (offset >> 32) & 0xFFFFFFFF;
DWORD bytes_read;
if (!ReadFile(file, buf, size, &bytes_read, &overlapped)) {
if (GetLastError() != ERROR_HANDLE_EOF) {
return -1;
}
}
return bytes_read;
}
#endif
} // namespace
/** Save array to out stream in .npy format */
void save(std::shared_ptr<io::Writer> out_stream, array a) {
////////////////////////////////////////////////////////
// Check array
a = contiguous(a, true);
a.eval();
if (a.nbytes() == 0) {
throw std::invalid_argument("[save] cannot serialize an empty array");
}
////////////////////////////////////////////////////////
// Check file
if (!out_stream->good() || !out_stream->is_open()) {
throw std::runtime_error("[save] Failed to open " + out_stream->label());
}
////////////////////////////////////////////////////////
// Prepare header
std::ostringstream magic_ver_len;
magic_ver_len.write(reinterpret_cast<const char*>(MAGIC), 6);
std::string fortran_order = a.flags().col_contiguous ? "True" : "False";
std::ostringstream header;
header << "{'descr': '" << dtype_to_array_protocol(a.dtype()) << "',"
<< " 'fortran_order': " << fortran_order << "," << " 'shape': (";
for (auto i : a.shape()) {
header << i << ", ";
}
header << ")}";
size_t header_len = static_cast<size_t>(header.tellp());
bool is_v1 = header_len + 15 < std::numeric_limits<uint16_t>::max();
// Pad out magic + version + header_len + header + \n to be divisible by 16
size_t padding = (6 + 2 + (2 + 2 * is_v1) + header_len + 1) % 16;
header << std::string(padding, ' ') << '\n';
if (is_v1) {
magic_ver_len << (char)0x01 << (char)0x00;
uint16_t v1_header_len = header.tellp();
const char* len_bytes = reinterpret_cast<const char*>(&v1_header_len);
if (!is_big_endian()) {
magic_ver_len.write(len_bytes, 2);
} else {
magic_ver_len.write(len_bytes + 1, 1);
magic_ver_len.write(len_bytes, 1);
}
} else {
magic_ver_len << (char)0x02 << (char)0x00;
uint32_t v2_header_len = header.tellp();
const char* len_bytes = reinterpret_cast<const char*>(&v2_header_len);
if (!is_big_endian()) {
magic_ver_len.write(len_bytes, 4);
} else {
magic_ver_len.write(len_bytes + 3, 1);
magic_ver_len.write(len_bytes + 2, 1);
magic_ver_len.write(len_bytes + 1, 1);
magic_ver_len.write(len_bytes, 1);
}
}
////////////////////////////////////////////////////////
// Serialize array
out_stream->write(magic_ver_len.str().c_str(), magic_ver_len.str().length());
out_stream->write(header.str().c_str(), header.str().length());
out_stream->write(a.data<char>(), a.nbytes());
}
/** Save array to file in .npy format */
void save(std::string file, array a) {
// Add .npy to file name if it is not there
if (file.length() < 4 || file.substr(file.length() - 4, 4) != ".npy")
file += ".npy";
// Serialize array
save(std::make_shared<io::FileWriter>(std::move(file)), a);
}
/** Load array from reader in .npy format */
array load(std::shared_ptr<io::Reader> in_stream, StreamOrDevice s) {
////////////////////////////////////////////////////////
// Open and check file
if (!in_stream->good() || !in_stream->is_open()) {
throw std::runtime_error("[load] Failed to open " + in_stream->label());
}
auto stream = to_stream(s, Device::cpu);
if (stream.device != Device::cpu) {
throw std::runtime_error("[load] Must run on a CPU stream.");
}
////////////////////////////////////////////////////////
// Read header and prepare array details
// Read and check magic
char read_magic_and_ver[8];
in_stream->read(read_magic_and_ver, 8);
if (std::memcmp(read_magic_and_ver, MAGIC, 6) != 0) {
throw std::runtime_error("[load] Invalid header in " + in_stream->label());
}
// Read and check version
if (read_magic_and_ver[6] != 1 && read_magic_and_ver[6] != 2) {
throw std::runtime_error(
"[load] Unsupported npy format version in " + in_stream->label());
}
// Read header len and header
int header_len_size = read_magic_and_ver[6] == 1 ? 2 : 4;
size_t header_len;
if (header_len_size == 2) {
uint16_t v1_header_len;
in_stream->read(reinterpret_cast<char*>(&v1_header_len), header_len_size);
header_len = v1_header_len;
} else {
uint32_t v2_header_len;
in_stream->read(reinterpret_cast<char*>(&v2_header_len), header_len_size);
header_len = v2_header_len;
}
// Read the header
std::vector<char> buffer(header_len + 1);
in_stream->read(&buffer[0], header_len);
buffer[header_len] = 0;
std::string header(&buffer[0]);
// Read data type from header
std::string dtype_str = header.substr(11, 3);
bool read_is_big_endian = dtype_str[0] == '>';
Dtype dtype = dtype_from_array_protocol(dtype_str);
// Read contiguity order
bool col_contiguous = header[34] == 'T';
// Read array shape from header
Shape shape;
size_t st = header.find_last_of('(') + 1;
size_t ed = header.find_last_of(')');
std::string shape_str = header.substr(st, ed - st);
while (!shape_str.empty()) {
// Read current number and get position of comma
size_t pos;
int dim = std::stoi(shape_str, &pos);
shape.push_back(dim);
// Skip the comma and space and read the next number
if (pos + 2 <= shape_str.length())
shape_str = shape_str.substr(pos + 2);
else {
shape_str = shape_str.substr(pos);
if (!shape_str.empty() && shape_str != " " && shape_str != ",") {
throw std::runtime_error(
"[load] Unknown error while parsing header in " +
in_stream->label());
}
shape_str = "";
}
}
////////////////////////////////////////////////////////
// Build primitive
size_t offset = 8 + header_len_size + header.length();
bool swap_endianness = read_is_big_endian != is_big_endian();
if (col_contiguous) {
std::reverse(shape.begin(), shape.end());
}
auto loaded_array = array(
shape,
dtype,
std::make_shared<Load>(stream, in_stream, offset, swap_endianness),
std::vector<array>{});
if (col_contiguous) {
loaded_array = transpose(loaded_array, s);
}
return loaded_array;
}
/** Load array from file in .npy format */
array load(std::string file, StreamOrDevice s) {
return load(std::make_shared<io::ParallelFileReader>(std::move(file)), s);
}
namespace io {
ThreadPool& thread_pool() {
static ThreadPool pool_{4};
return pool_;
}
ThreadPool ParallelFileReader::thread_pool_{4};
void ParallelFileReader::read(char* data, size_t n) {
while (n != 0) {
auto m = ::read(fd_, data, std::min(n, static_cast<size_t>(INT32_MAX)));
if (m <= 0) {
std::ostringstream msg;
msg << "[read] Unable to read " << n << " bytes from file.";
throw std::runtime_error(msg.str());
}
data += m;
n -= m;
}
}
void ParallelFileReader::read(char* data, size_t n, size_t offset) {
auto readfn = [fd = fd_](size_t offset, size_t size, char* buffer) -> bool {
while (size != 0) {
auto m = pread(fd, buffer, size, offset);
if (m <= 0) {
return false;
}
buffer += m;
size -= m;
}
return true;
};
std::vector<std::future<bool>> futs;
while (n != 0) {
if (n < batch_size_) {
if (!readfn(offset, n, data)) {
throw std::runtime_error("[read] Unable to read from file.");
}
break;
} else {
size_t m = batch_size_;
futs.emplace_back(thread_pool_.enqueue(readfn, offset, m, data));
data += m;
n -= m;
offset += m;
}
}
for (auto& f : futs) {
if (!f.get()) {
throw std::runtime_error("[read] Unable to read from file.");
}
}
}
} // namespace io
} // namespace mlx::core