mirror of
https://github.com/vale981/ray
synced 2025-03-05 10:01:43 -05:00
8 lines
252 B
Python
8 lines
252 B
Python
from ray.rllib.utils.deprecation import deprecation_warning
|
|
from ray.rllib.utils.numpy import aligned_array, concat_aligned # noqa
|
|
|
|
deprecation_warning(
|
|
old="ray.rllib.utils.memory.[...]",
|
|
new="ray.rllib.utils.numpy.[...]",
|
|
error=False,
|
|
)
|