Skip to content

Commit

Permalink
Update parse_bytes imports to resolve deprecation warnings (#756)
Browse files Browse the repository at this point in the history
  • Loading branch information
pentschev authored Jun 29, 2021
1 parent c9b4f94 commit 27f39c7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion benchmarks/send-recv-core.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
from threading import Lock
from time import perf_counter as clock

from distributed.utils import format_bytes, parse_bytes
from dask.utils import format_bytes, parse_bytes

import ucp
from ucp._libs import ucx_api
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/send-recv.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
import os
from time import perf_counter as clock

from distributed.utils import format_bytes, parse_bytes
from dask.utils import format_bytes, parse_bytes

import ucp

Expand Down
2 changes: 1 addition & 1 deletion debug-tests/debug_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import cupy
from utils import get_num_gpus

from distributed.utils import parse_bytes
from dask.utils import parse_bytes

import rmm

Expand Down

0 comments on commit 27f39c7

Please sign in to comment.