mirror of
https://github.com/vale981/ray
synced 2025-03-09 21:06:39 -04: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,
|
|
)
|