pub struct EpistemicGpuConstraintWorldViewValidationTrace {
pub constraint_count: usize,
pub constraint_literal_refs: usize,
pub candidates_checked: usize,
pub rejection_reason_slots_written: usize,
pub kernel_launches: u32,
pub host_write_ops: u32,
pub kernel_timing: EpistemicGpuKernelTimingTrace,
}Expand description
Trace proving epistemic integrity constraints were evaluated against world views on GPU.
World-view integrity constraints (:- know unsafe().) prune accepted
candidate world views on device after modal world-view validation. The
device kernel never reads accepted worlds back to the host, so accepted
execution keeps host_write_ops at zero.
Fields§
§constraint_count: usizeNumber of epistemic integrity constraints checked on device.
constraint_literal_refs: usizeNumber of constraint-body literal references checked on device.
candidates_checked: usizeNumber of candidate world views checked by the constraint kernel.
rejection_reason_slots_written: usizeRejection-reason slots written by the kernel.
kernel_launches: u32Constraint world-view validation kernel launches.
host_write_ops: u32Host writes used by constraint validation. Accepted execution requires zero.
kernel_timing: EpistemicGpuKernelTimingTraceCUDA-event timing for the launched kernel.
Trait Implementations§
Source§impl Clone for EpistemicGpuConstraintWorldViewValidationTrace
impl Clone for EpistemicGpuConstraintWorldViewValidationTrace
Source§fn clone(&self) -> EpistemicGpuConstraintWorldViewValidationTrace
fn clone(&self) -> EpistemicGpuConstraintWorldViewValidationTrace
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for EpistemicGpuConstraintWorldViewValidationTrace
impl PartialEq for EpistemicGpuConstraintWorldViewValidationTrace
Source§fn eq(&self, other: &EpistemicGpuConstraintWorldViewValidationTrace) -> bool
fn eq(&self, other: &EpistemicGpuConstraintWorldViewValidationTrace) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for EpistemicGpuConstraintWorldViewValidationTrace
impl Eq for EpistemicGpuConstraintWorldViewValidationTrace
impl StructuralPartialEq for EpistemicGpuConstraintWorldViewValidationTrace
Auto Trait Implementations§
impl Freeze for EpistemicGpuConstraintWorldViewValidationTrace
impl RefUnwindSafe for EpistemicGpuConstraintWorldViewValidationTrace
impl Send for EpistemicGpuConstraintWorldViewValidationTrace
impl Sync for EpistemicGpuConstraintWorldViewValidationTrace
impl Unpin for EpistemicGpuConstraintWorldViewValidationTrace
impl UnsafeUnpin for EpistemicGpuConstraintWorldViewValidationTrace
impl UnwindSafe for EpistemicGpuConstraintWorldViewValidationTrace
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more