pub struct ScientificPerformanceOptimizer {
pub config: PerformanceOptimizationConfig,
pub memory_manager: Arc<Mutex<HierarchicalMemoryManager>>,
pub parallel_processor: Arc<Mutex<AdvancedParallelProcessor>>,
pub algorithm_optimizer: Arc<Mutex<AlgorithmOptimizer>>,
pub distributed_coordinator: Arc<Mutex<DistributedCoordinator>>,
pub profiler: Arc<Mutex<PerformanceProfiler>>,
pub gpu_accelerator: Arc<Mutex<GPUAccelerator>>,
}Expand description
Main scientific performance optimization system
Fields§
§config: PerformanceOptimizationConfigConfiguration
memory_manager: Arc<Mutex<HierarchicalMemoryManager>>Memory manager
parallel_processor: Arc<Mutex<AdvancedParallelProcessor>>Parallel processor
algorithm_optimizer: Arc<Mutex<AlgorithmOptimizer>>Algorithm optimizer
distributed_coordinator: Arc<Mutex<DistributedCoordinator>>Distributed coordinator
profiler: Arc<Mutex<PerformanceProfiler>>Performance profiler
gpu_accelerator: Arc<Mutex<GPUAccelerator>>GPU accelerator
Implementations§
Source§impl ScientificPerformanceOptimizer
impl ScientificPerformanceOptimizer
Sourcepub fn new(config: PerformanceOptimizationConfig) -> Self
pub fn new(config: PerformanceOptimizationConfig) -> Self
Create new performance optimizer
Sourcepub fn initialize(&self) -> ApplicationResult<()>
pub fn initialize(&self) -> ApplicationResult<()>
Initialize the performance optimization system
Sourcepub fn optimize_protein_folding(
&self,
problem: &ProteinFoldingProblem,
) -> ApplicationResult<OptimizedProteinFoldingResult>
pub fn optimize_protein_folding( &self, problem: &ProteinFoldingProblem, ) -> ApplicationResult<OptimizedProteinFoldingResult>
Optimize protein folding problem performance
Sourcepub fn optimize_materials_science(
&self,
problem: &MaterialsOptimizationProblem,
) -> ApplicationResult<OptimizedMaterialsScienceResult>
pub fn optimize_materials_science( &self, problem: &MaterialsOptimizationProblem, ) -> ApplicationResult<OptimizedMaterialsScienceResult>
Optimize materials science problem performance
Sourcepub fn optimize_drug_discovery(
&self,
problem: &DrugDiscoveryProblem,
) -> ApplicationResult<OptimizedDrugDiscoveryResult>
pub fn optimize_drug_discovery( &self, problem: &DrugDiscoveryProblem, ) -> ApplicationResult<OptimizedDrugDiscoveryResult>
Optimize drug discovery problem performance
Sourcepub fn get_performance_report(
&self,
) -> ApplicationResult<ComprehensivePerformanceReport>
pub fn get_performance_report( &self, ) -> ApplicationResult<ComprehensivePerformanceReport>
Get comprehensive performance report
Sourcepub fn generate_optimization_recommendations() -> ApplicationResult<Vec<OptimizationRecommendation>>
pub fn generate_optimization_recommendations() -> ApplicationResult<Vec<OptimizationRecommendation>>
Generate optimization recommendations
Auto Trait Implementations§
impl Freeze for ScientificPerformanceOptimizer
impl RefUnwindSafe for ScientificPerformanceOptimizer
impl !Send for ScientificPerformanceOptimizer
impl !Sync for ScientificPerformanceOptimizer
impl Unpin for ScientificPerformanceOptimizer
impl UnwindSafe for ScientificPerformanceOptimizer
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> 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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.