LazyBuffer

Struct LazyBuffer 

Source
pub struct LazyBuffer<D>(/* private fields */)
where
    D: Device;

Implementations§

Source§

impl<D> LazyBuffer<D>
where D: Device,

Source

pub unsafe fn maybe_allocate_uninit(&self) -> Result<(), Error>

Source

pub fn op(&self) -> &Op<D>

Source

pub fn in_place_op(&self) -> bool

Source

pub fn realized(&self) -> Result<bool, Error>

Source

pub fn realize(&self) -> Result<(), Error>

Source

pub fn data(&self) -> &RefCell<Option<<D as Device>::Slice>>

Source

pub fn data_vec<DT>(&self) -> Result<Vec<DT>, Error>
where DT: WithDType,

Source

pub fn device(&self) -> &D

Source

pub fn dtype(&self) -> DType

Source

pub fn shape(&self) -> &Shape

Source

pub fn elem_count(&self) -> usize

Source

pub fn dims(&self) -> &[usize]

Source

pub fn dims0(&self) -> Result<(), Error>

Source

pub fn dims1(&self) -> Result<usize, Error>

Source

pub fn dims2(&self) -> Result<(usize, usize), Error>

Source

pub fn dims3(&self) -> Result<(usize, usize, usize), Error>

Source

pub fn dims4(&self) -> Result<(usize, usize, usize, usize), Error>

Source

pub fn rank(&self) -> usize

Source

pub fn unary(&self, op: UnaryOp) -> Result<LazyBuffer<D>, Error>

Source

pub fn cast(&self, dtype: DType) -> Result<LazyBuffer<D>, Error>

Source

pub fn binary( &self, op: BinaryOp, rhs: LazyBuffer<D>, ) -> Result<LazyBuffer<D>, Error>

Source

pub fn alloc_uninit<S>( dtype: DType, s: S, device: &D, ) -> Result<LazyBuffer<D>, Error>
where S: Into<Shape>,

Source

pub fn custom<F, S>( f: F, args: Vec<LazyBuffer<D>>, s: S, dtype: DType, device: &D, ) -> Result<LazyBuffer<D>, Error>
where F: 'static + Fn(Vec<&mut <D as Device>::Slice>) -> Result<(), Error>, S: Into<Shape>,

Source

pub fn custom_ip<F>( &self, f: F, args: Vec<LazyBuffer<D>>, ) -> Result<LazyBuffer<D>, Error>
where F: 'static + Fn(Vec<&mut <D as Device>::Slice>) -> Result<(), Error>,

Applies a custom in-place operation.

Source

pub fn set(&self, values: LazyBuffer<D>) -> Result<LazyBuffer<D>, Error>

Sets self using data from values.

Source

pub fn set_l( &self, values: LazyBuffer<D>, dst_layout: Layout, ) -> Result<LazyBuffer<D>, Error>

Source

pub fn ssa<S>( ssa: Kernel, args: Vec<LazyBuffer<D>>, s: S, dtype: DType, device: &D, ) -> Result<LazyBuffer<D>, Error>
where S: Into<Shape>,

Source

pub fn matmul(&self, rhs: LazyBuffer<D>) -> Result<LazyBuffer<D>, Error>

Source

pub fn matmul_t(&self, rhs: LazyBuffer<D>) -> Result<LazyBuffer<D>, Error>

Source

pub fn matmul_( &self, rhs: LazyBuffer<D>, transpose: bool, ) -> Result<LazyBuffer<D>, Error>

Source

pub fn reduce<I>(&self, op: ReduceOp, dim: I) -> Result<LazyBuffer<D>, Error>
where I: Dim,

Source

pub fn id(&self) -> Id

Source

pub fn split_dim<I>( &self, dim: I, size1: usize, size2: usize, ) -> Result<LazyBuffer<D>, Error>
where I: Dim,

Source

pub fn merge_dims<I>(&self, dim: I) -> Result<LazyBuffer<D>, Error>
where I: Dim,

Merge the dims dim and dim + 1 together.

Source

pub fn squeeze<D1>(&self, dim: D1) -> Result<LazyBuffer<D>, Error>
where D1: Dim,

Source

pub fn get_on_dim<D1>( &self, dim: D1, index: usize, ) -> Result<LazyBuffer<D>, Error>
where D1: Dim,

Source

pub fn get(&self, index: usize) -> Result<LazyBuffer<D>, Error>

Source

pub fn unsqueeze<D1>(&self, dim: D1) -> Result<LazyBuffer<D>, Error>
where D1: Dim,

Source

pub fn reshape<S>(&self, s: S) -> Result<LazyBuffer<D>, Error>
where S: Into<Shape>,

Source

pub fn narrow<D1>( &self, dim: D1, offset: usize, length: usize, ) -> Result<LazyBuffer<D>, Error>
where D1: Dim,

Source

pub fn broadcast<S>(&self, s: S) -> Result<LazyBuffer<D>, Error>
where S: Into<Shape>,

Source

pub fn transpose<D1, D2>( &self, dim1: D1, dim2: D2, ) -> Result<LazyBuffer<D>, Error>
where D1: Dim, D2: Dim,

Source

pub fn cst<C, S>(c: C, s: S, device: &D) -> Result<LazyBuffer<D>, Error>
where C: TryInto<Const> + Debug + Copy, S: Into<Shape>,

Source

pub fn from_slice<S>( data: <D as Device>::Slice, s: S, ) -> Result<LazyBuffer<D>, Error>
where S: Into<Shape>,

Source

pub fn copy<'a, R, S>(data: R, s: S, device: &D) -> Result<LazyBuffer<D>, Error>
where R: Into<CpuStorageRef<'a>>, S: Into<Shape>,

Source

pub fn cat<D1>(args: &[&LazyBuffer<D>], dim: D1) -> Result<LazyBuffer<D>, Error>
where D1: Dim,

Trait Implementations§

Source§

impl<D> Clone for LazyBuffer<D>
where D: Device,

Source§

fn clone(&self) -> LazyBuffer<D>

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

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

Performs copy-assignment from source. Read more
Source§

impl<D> Debug for LazyBuffer<D>
where D: Device,

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<D> Deref for LazyBuffer<D>
where D: Device,

Source§

type Target = LazyBufferInner<D>

The resulting type after dereferencing.
Source§

fn deref(&self) -> &<LazyBuffer<D> as Deref>::Target

Dereferences the value.
Source§

impl<D> Display for LazyBuffer<D>
where D: Device,

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<D> Freeze for LazyBuffer<D>

§

impl<D> !RefUnwindSafe for LazyBuffer<D>

§

impl<D> !Send for LazyBuffer<D>

§

impl<D> !Sync for LazyBuffer<D>

§

impl<D> Unpin for LazyBuffer<D>

§

impl<D> !UnwindSafe for LazyBuffer<D>

Blanket Implementations§

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, dest: *mut u8)

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

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

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

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

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

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

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

Initializes a with the given initializer. Read more
Source§

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

Dereferences the given pointer. Read more
Source§

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

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

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

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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.
Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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

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