Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/unit/ops/aio/test_aio.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
from deepspeed.ops.aio import AsyncIOBuilder
from unit.common import DistributedTest

MEGA_BYTE = 1024**2
BLOCK_SIZE = MEGA_BYTE
KILO_BYTE = 1024
BLOCK_SIZE = KILO_BYTE
QUEUE_DEPTH = 2
IO_SIZE = 4 * 1024
IO_SIZE = 4 * BLOCK_SIZE
IO_PARALLEL = 2

if not deepspeed.ops.__compatible_ops__[AsyncIOBuilder.NAME]:
Expand Down