pub struct Results {
pub schema: String,
pub kernel: String,
pub entry: String,
pub plan_cc: String,
pub device_name: String,
pub device_cc: String,
pub driver_version: String,
pub candidates: Vec<CandidateResult>,
pub total_gpu_seconds: f64,
pub strategy: Option<String>,
pub budget_exhausted: bool,
}Fields§
§schema: String§kernel: String§entry: String§plan_cc: String§device_name: String§device_cc: String§driver_version: String§candidates: Vec<CandidateResult>§total_gpu_seconds: f64§strategy: Option<String>Strategy that produced the visiting order (exhaustive | random:<seed>).
budget_exhausted: boolTrue when the sweep stopped because the wall budget ran out.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Results
impl<'de> Deserialize<'de> for Results
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Results
impl RefUnwindSafe for Results
impl Send for Results
impl Sync for Results
impl Unpin for Results
impl UnsafeUnpin for Results
impl UnwindSafe for Results
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