| 32 | from env.tasks.vec_task import VecTaskCPU, VecTaskGPU, VecTaskPython |
| 33 | |
| 34 | class VecTaskCPUWrapper(VecTaskCPU): |
| 35 | def __init__(self, task, rl_device, sync_frame_time=False, clip_observations=5.0, clip_actions=1.0): |
| 36 | super().__init__(task, rl_device, sync_frame_time, clip_observations, clip_actions) |
| 37 | return |
| 38 | |
| 39 | class VecTaskGPUWrapper(VecTaskGPU): |
| 40 | def __init__(self, task, rl_device, clip_observations=5.0, clip_actions=1.0): |
nothing calls this directly
no outgoing calls
no test coverage detected