quantrs2-sim 0.1.3

Quantum circuit simulators for the QuantRS2 framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Quantum Machine Learning Layers Framework - Refactored
//!
//! This module provides a comprehensive implementation of quantum machine learning layers,
//! refactored from the original quantum_machine_learning_layers.rs for better maintainability.

pub mod types;
pub mod layers;
pub mod training;
pub mod hardware;

// Re-export all public types and functions
pub use types::*;
pub use layers::*;
pub use training::*;
pub use hardware::*;

// Re-export the benchmark function
pub use crate::quantum_machine_learning_layers::benchmark_quantum_ml_layers;