mlx/python/src/metal.cpp

13 lines
272 B
C++
Raw Normal View History

2023-11-30 02:42:59 +08:00
#include <pybind11/pybind11.h>
#include "mlx/backend/metal/metal.h"
namespace py = pybind11;
using namespace mlx::core;
void init_metal(py::module_& m) {
py::module_ metal = m.def_submodule("metal", "mlx.metal");
metal.def("is_available", &metal::is_available);
}