Struct JitTensor
pub struct JitTensor<R>where
R: JitRuntime,{
pub client: ComputeClient<<R as Runtime>::Server, <R as Runtime>::Channel>,
pub handle: Handle,
pub shape: Shape,
pub device: <R as Runtime>::Device,
pub strides: Vec<usize>,
/* private fields */
}
Expand description
The basic tensor primitive struct.
Fields§
§client: ComputeClient<<R as Runtime>::Server, <R as Runtime>::Channel>
Compute client for the runtime.
handle: Handle
The buffer where the data are stored.
shape: Shape
The shape of the tensor.
device: <R as Runtime>::Device
The device of the tensor.
strides: Vec<usize>
The strides of the tensor.
Implementations§
§impl<R> JitTensor<R>where
R: JitRuntime,
impl<R> JitTensor<R>where
R: JitRuntime,
pub fn new_contiguous(
client: ComputeClient<<R as Runtime>::Server, <R as Runtime>::Channel>,
device: <R as Runtime>::Device,
shape: Shape,
handle: Handle,
dtype: DType,
) -> JitTensor<R>
pub fn new_contiguous( client: ComputeClient<<R as Runtime>::Server, <R as Runtime>::Channel>, device: <R as Runtime>::Device, shape: Shape, handle: Handle, dtype: DType, ) -> JitTensor<R>
Create a new tensor with a contiguous memory layout.
pub fn to_client(
&self,
client: ComputeClient<<R as Runtime>::Server, <R as Runtime>::Channel>,
device: <R as Runtime>::Device,
) -> JitTensor<R>
pub fn to_client( &self, client: ComputeClient<<R as Runtime>::Server, <R as Runtime>::Channel>, device: <R as Runtime>::Device, ) -> JitTensor<R>
Change the context of the current tensor and return the newly transferred tensor.
pub fn as_handle_ref(&self) -> TensorHandleRef<'_, R>
pub fn as_handle_ref(&self) -> TensorHandleRef<'_, R>
Return the reference to a tensor handle.
pub fn as_tensor_arg<'a, E>(&'a self, vectorisation: u8) -> TensorArg<'a, R>where
E: JitElement,
pub fn as_tensor_arg<'a, E>(&'a self, vectorisation: u8) -> TensorArg<'a, R>where
E: JitElement,
Return the reference to a tensor argument.
pub fn as_array_arg<E>(&self, vectorisation: u8) -> ArrayArg<'_, R>where
E: JitElement,
pub fn as_array_arg<E>(&self, vectorisation: u8) -> ArrayArg<'_, R>where
E: JitElement,
Return the reference to an array argument.
pub fn assert_is_on_same_device(&self, other: &JitTensor<R>)
pub fn assert_is_on_same_device(&self, other: &JitTensor<R>)
Assert that both tensors are on the same device.
pub fn is_contiguous(&self) -> bool
pub fn is_contiguous(&self) -> bool
Check if the current tensor is contiguous.
pub fn is_contiguous_buffer(&self) -> bool
pub fn is_contiguous_buffer(&self) -> bool
Check if the current tensor has a contiguous backing buffer (no overlap and no empty memory regions within the shape).
Trait Implementations§
§impl<R> QTensorPrimitive for JitTensor<R>where
R: JitRuntime,
impl<R> QTensorPrimitive for JitTensor<R>where
R: JitRuntime,
§fn scheme(&self) -> &QuantizationScheme
fn scheme(&self) -> &QuantizationScheme
Returns the quantization scheme for the given tensor.
Auto Trait Implementations§
impl<R> Freeze for JitTensor<R>
impl<R> !RefUnwindSafe for JitTensor<R>
impl<R> Send for JitTensor<R>
impl<R> Sync for JitTensor<R>
impl<R> Unpin for JitTensor<R>
impl<R> !UnwindSafe for JitTensor<R>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more