mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2026-09-03 15:00:42 +02:00
- Reading files from nfs shares tops out at ~1GB/s for single threaded reads. - MultiThreadedFileReader uses our File wrapper to read a generic file in parallel - Placed in aare::experimental to show that it's not production ready
7 lines
187 B
Python
7 lines
187 B
Python
# SPDX-License-Identifier: MPL-2.0
|
|
"""Experimental APIs that may change without notice."""
|
|
|
|
from ._aare.experimental import MultiThreadedFileReader
|
|
|
|
__all__ = ["MultiThreadedFileReader"]
|