burn::backend::wgpu

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,

pub fn new( client: ComputeClient<<R as Runtime>::Server, <R as Runtime>::Channel>, handle: Handle, shape: Shape, device: <R as Runtime>::Device, strides: Vec<usize>, dtype: DType, ) -> JitTensor<R>

Constructs a new JitTensor.

§

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>

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>

Change the context of the current tensor and return the newly transferred tensor.

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,

Return the reference to a tensor argument.

pub fn as_array_arg<E>(&self, vectorisation: u8) -> ArrayArg<'_, R>
where E: JitElement,

Return the reference to an array argument.

pub fn copy(&self) -> JitTensor<R>

Copy the current tensor.

pub fn can_mut(&self) -> bool

Check if the tensor is safe to mutate.

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

Check if the current tensor is contiguous.

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> Clone for JitTensor<R>
where R: JitRuntime,

§

fn clone(&self) -> JitTensor<R>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<R> Debug for JitTensor<R>
where R: JitRuntime,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<R> From<JitTensor<R>> for JitFusionHandle<R>
where R: JitRuntime,

§

fn from(value: JitTensor<R>) -> JitFusionHandle<R>

Converts to this type from the input type.
§

impl<R, E> From<JitTensor<R>> for TensorHandle<R, E>
where R: JitRuntime, E: JitElement,

§

fn from(val: JitTensor<R>) -> TensorHandle<R, E>

Converts to this type from the input type.
§

impl<R> QTensorPrimitive for JitTensor<R>
where R: JitRuntime,

§

fn scheme(&self) -> &QuantizationScheme

Returns the quantization scheme for the given tensor.
§

impl<R> TensorMetadata for JitTensor<R>
where R: JitRuntime,

§

fn dtype(&self) -> DType

The dtype of the tensor.
§

fn shape(&self) -> Shape

The shape of the tensor.

Auto Trait Implementations§

§

impl<R> Freeze for JitTensor<R>
where <R as JitRuntime>::JitDevice: Freeze, <R as Runtime>::Channel: Freeze,

§

impl<R> !RefUnwindSafe for JitTensor<R>

§

impl<R> Send for JitTensor<R>

§

impl<R> Sync for JitTensor<R>

§

impl<R> Unpin for JitTensor<R>
where <R as JitRuntime>::JitDevice: Unpin, <R as Runtime>::Channel: Unpin,

§

impl<R> !UnwindSafe for JitTensor<R>

Blanket Implementations§

§

impl<T> Adaptor<()> for T

§

fn adapt(&self)

Adapt the type to be passed to a metric.
Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromRef<T> for T
where T: Clone,

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T

§

impl<T> WasmNotSend for T
where T: Send,

§

impl<T> WasmNotSendSync for T
where T: WasmNotSend + WasmNotSync,

§

impl<T> WasmNotSync for T
where T: Sync,