mirror of
https://github.com/deepspeedai/DeepSpeed.git
synced 2025-10-20 15:33:51 +08:00
Add performance tuning utilities: `ds_nvme_tune` and `ds_io`. Update tutorial with tuning section. --------- Co-authored-by: Ubuntu <jomayeri@microsoft.com> Co-authored-by: Joe Mayer <114769929+jomayeri@users.noreply.github.com>
14 lines
425 B
Python
14 lines
425 B
Python
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# DeepSpeed Team
|
|
|
|
SCRIPT_PREFIX = '_aio_bench'
|
|
WRITE_OP_DESC = 'write'
|
|
READ_OP_DESC = 'read'
|
|
READ_IO_DIR = f'{SCRIPT_PREFIX}_{READ_OP_DESC}_io'
|
|
WRITE_IO_DIR = f'{SCRIPT_PREFIX}_{WRITE_OP_DESC}_io'
|
|
BENCH_LOG_DIR = f'{SCRIPT_PREFIX}_logs'
|
|
READ_LOG_DIR = f'{SCRIPT_PREFIX}_{READ_OP_DESC}_logs'
|
|
WRITE_LOG_DIR = f'{SCRIPT_PREFIX}_{WRITE_OP_DESC}_logs'
|