pub struct BatchProcessor { /* private fields */ }Expand description
Batch processor for efficient inference
Implementations§
Source§impl BatchProcessor
impl BatchProcessor
Sourcepub fn new(config: PerformanceConfig) -> Self
pub fn new(config: PerformanceConfig) -> Self
Create a new batch processor
Sourcepub fn add_to_batch(&mut self, tensor: Tensor) -> Result<Option<Vec<Tensor>>>
pub fn add_to_batch(&mut self, tensor: Tensor) -> Result<Option<Vec<Tensor>>>
Add a tensor to the current batch
Sourcepub fn flush_batch(&mut self) -> Result<Vec<Tensor>>
pub fn flush_batch(&mut self) -> Result<Vec<Tensor>>
Flush the current batch and return it
Sourcepub fn cache_tensor(&mut self, key: String, tensor: Tensor) -> Result<()>
pub fn cache_tensor(&mut self, key: String, tensor: Tensor) -> Result<()>
Cache a tensor with a given key
Sourcepub fn cache_stats(&self) -> CacheStatistics
pub fn cache_stats(&self) -> CacheStatistics
Cache statistics
Sourcepub fn get_cached_tensor(&mut self, key: &str) -> Option<&Tensor>
pub fn get_cached_tensor(&mut self, key: &str) -> Option<&Tensor>
Retrieve a cached tensor
Sourcepub fn clear_cache(&mut self)
pub fn clear_cache(&mut self)
Clear the cache
Sourcepub fn current_batch_size(&self) -> usize
pub fn current_batch_size(&self) -> usize
Get current batch size
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BatchProcessor
impl RefUnwindSafe for BatchProcessor
impl Send for BatchProcessor
impl Sync for BatchProcessor
impl Unpin for BatchProcessor
impl UnsafeUnpin for BatchProcessor
impl UnwindSafe for BatchProcessor
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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