mirror of
https://github.com/ml-explore/mlx.git
synced 2025-08-21 12:06:42 +08:00

* metadata support for safetensors * aliases making it alittle more readable * addressing comments * python binding tests
45 lines
1023 B
C++
45 lines
1023 B
C++
// Copyright © 2023 Apple Inc.
|
|
|
|
#pragma once
|
|
|
|
#include <pybind11/pybind11.h>
|
|
#include <optional>
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <variant>
|
|
#include "mlx/io.h"
|
|
|
|
namespace py = pybind11;
|
|
using namespace mlx::core;
|
|
|
|
using LoadOutputTypes = std::variant<
|
|
array,
|
|
std::unordered_map<std::string, array>,
|
|
SafetensorsLoad,
|
|
GGUFLoad>;
|
|
|
|
SafetensorsLoad mlx_load_safetensor_helper(py::object file, StreamOrDevice s);
|
|
void mlx_save_safetensor_helper(
|
|
py::object file,
|
|
py::dict d,
|
|
std::optional<py::dict> m);
|
|
|
|
GGUFLoad mlx_load_gguf_helper(py::object file, StreamOrDevice s);
|
|
|
|
void mlx_save_gguf_helper(
|
|
py::object file,
|
|
py::dict d,
|
|
std::optional<py::dict> m);
|
|
|
|
LoadOutputTypes mlx_load_helper(
|
|
py::object file,
|
|
std::optional<std::string> format,
|
|
bool return_metadata,
|
|
StreamOrDevice s);
|
|
void mlx_save_helper(py::object file, array a);
|
|
void mlx_savez_helper(
|
|
py::object file,
|
|
py::args args,
|
|
const py::kwargs& kwargs,
|
|
bool compressed = false);
|