mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
8 lines
238 B
Python
8 lines
238 B
Python
from ray.rllib.utils.deprecation import deprecation_warning
|
|
from ray.rllib.utils.torch_utils import * # noqa
|
|
|
|
deprecation_warning(
|
|
old="ray.rllib.utils.torch_ops.[...]",
|
|
new="ray.rllib.utils.torch_utils.[...]",
|
|
error=True,
|
|
)
|