[][src]Struct bellperson::gpu::MultiexpKernel

pub struct MultiexpKernel<E>(_)
where
    E: ScalarEngine
;

Implementations

impl<E> MultiexpKernel<E> where
    E: ScalarEngine
[src]

pub fn create(_: bool) -> GPUResult<MultiexpKernel<E>>[src]

pub fn multiexp<G>(
    &mut self,
    _: &Worker,
    _: Arc<Vec<G>>,
    _: Arc<Vec<<<G::Engine as ScalarEngine>::Fr as PrimeField>::Repr>>,
    _: usize,
    _: usize
) -> GPUResult<<G as CurveAffine>::Projective> where
    G: CurveAffine
[src]

Auto Trait Implementations

impl<E> RefUnwindSafe for MultiexpKernel<E> where
    E: RefUnwindSafe

impl<E> Send for MultiexpKernel<E> where
    E: Send

impl<E> Sync for MultiexpKernel<E> where
    E: Sync

impl<E> Unpin for MultiexpKernel<E> where
    E: Unpin

impl<E> UnwindSafe for MultiexpKernel<E> where
    E: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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