Skip to main content

qubit_batch/execute/impls/
mod.rs

1/*******************************************************************************
2 *
3 *    Copyright (c) 2025 - 2026 Haixing Hu.
4 *
5 *    SPDX-License-Identifier: Apache-2.0
6 *
7 *    Licensed under the Apache License, Version 2.0.
8 *
9 ******************************************************************************/
10//! Standard-library implementations of batch execution traits.
11
12mod indexed_task;
13mod parallel_batch_executor;
14mod parallel_batch_executor_build_error;
15mod parallel_batch_executor_builder;
16mod sequential_batch_executor;
17mod sequential_batch_executor_builder;
18
19pub use parallel_batch_executor::ParallelBatchExecutor;
20pub use parallel_batch_executor_build_error::ParallelBatchExecutorBuildError;
21pub use parallel_batch_executor_builder::ParallelBatchExecutorBuilder;
22pub use sequential_batch_executor::SequentialBatchExecutor;
23pub use sequential_batch_executor_builder::SequentialBatchExecutorBuilder;