mtl-rs 0.1.7

Rust bindings for Apple's Metal API
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod constants;
mod tensor;
mod tensor_data_type;
mod tensor_descriptor;
mod tensor_error;
mod tensor_extents;
mod tensor_reference_type;
mod tensor_usage;

pub use constants::TENSOR_MAX_RANK;
pub use tensor::MTLTensor;
pub use tensor_data_type::MTLTensorDataType;
pub use tensor_descriptor::MTLTensorDescriptor;
pub use tensor_error::MTLTensorError;
pub use tensor_extents::MTLTensorExtents;
pub use tensor_reference_type::MTLTensorReferenceType;
pub use tensor_usage::MTLTensorUsage;