dist/include/ contains the MLX and MLX-C headers needed for CGo compilation. Without these, go-mlx cannot be used as a module dependency (headers not found in module cache). Libraries (dylib/metallib) are still gitignored — users build those locally via cmake. Co-Authored-By: Virgil <virgil@lethean.io>
20 lines
353 B
C++
20 lines
353 B
C++
// Copyright © 2024 Apple Inc.
|
|
|
|
#pragma once
|
|
|
|
#include "mlx/array.h"
|
|
|
|
namespace mlx::core {
|
|
|
|
std::tuple<int64_t, Strides> prepare_slice(
|
|
const array& in,
|
|
const Shape& start_indices,
|
|
const Shape& strides);
|
|
|
|
void slice(
|
|
const array& in,
|
|
array& out,
|
|
const Shape& start_indices,
|
|
const Shape& strides);
|
|
|
|
} // namespace mlx::core
|