Files
mlx/python/src/indexing.h

15 lines
325 B
C
Raw Normal View History

2023-11-30 11:12:53 -08:00
// Copyright © 2023 Apple Inc.
2023-11-29 10:30:41 -08:00
#pragma once
#include <pybind11/pybind11.h>
#include "mlx/array.h"
#include "python/src/utils.h"
namespace py = pybind11;
using namespace mlx::core;
array mlx_get_item(const array& src, const py::object& obj);
void mlx_set_item(array& src, const py::object& obj, const ScalarOrArray& v);