Struct gpu_alloc::Config

source ·
pub struct Config {
    pub dedicated_threshold: u64,
    pub preferred_dedicated_threshold: u64,
    pub transient_dedicated_threshold: u64,
    pub starting_free_list_chunk: u64,
    pub final_free_list_chunk: u64,
    pub minimal_buddy_size: u64,
    pub initial_buddy_dedicated_size: u64,
}
Expand description

Configuration for GpuAllocator

Fields§

§dedicated_threshold: u64

Size in bytes of request that will be served by dedicated memory object. This value should be large enough to not exhaust memory object limit and not use slow memory object allocation when it is not necessary.

§preferred_dedicated_threshold: u64

Size in bytes of request that will be served by dedicated memory object if preferred. This value should be large enough to not exhaust memory object limit and not use slow memory object allocation when it is not necessary.

This won’t make much sense if this value is larger than dedicated_threshold.

§transient_dedicated_threshold: u64

Size in bytes of transient memory request that will be served by dedicated memory object. This value should be large enough to not exhaust memory object limit and not use slow memory object allocation when it is not necessary.

This won’t make much sense if this value is lesser than dedicated_threshold.

§starting_free_list_chunk: u64

Size in bytes of first chunk in free-list allocator.

§final_free_list_chunk: u64

Upper limit for size in bytes of chunks in free-list allocator.

§minimal_buddy_size: u64

Minimal size for buddy allocator.

§initial_buddy_dedicated_size: u64

Initial memory object size for buddy allocator. If less than minimal_buddy_size then minimal_buddy_size is used instead.

Implementations§

source§

impl Config

source

pub fn i_am_prototyping() -> Self

Returns default configuration.

This is not Default implementation to discourage usage outside of prototyping.

Proper configuration should depend on hardware and intended usage.
But those values can be used as starting point.
Note that they can simply not work for some platforms with lesser memory capacity than today’s “modern” GPU (year 2020).

source

pub fn i_am_potato() -> Self

Returns default configuration for average sized potato.

Trait Implementations§

source§

impl Clone for Config

source§

fn clone(&self) -> Config

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

impl Debug for Config

source§

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

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

impl PartialEq<Config> for Config

source§

fn eq(&self, other: &Config) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for Config

source§

impl Eq for Config

source§

impl StructuralEq for Config

source§

impl StructuralPartialEq for Config

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere 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> ToOwned for Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.