|
| 1 | +""" |
| 2 | +This is an example for rendering on multiple GPUs in parallel, |
| 3 | +using the multiprocessing module. |
| 4 | +""" |
| 5 | +import ctypes |
| 6 | +from multiprocessing import ( |
| 7 | + Process, set_start_method, freeze_support, Condition, |
| 8 | + Value, Array) |
| 9 | +from time import perf_counter |
| 10 | +import numpy as np |
| 11 | +from mujoco_py import load_model_from_path, MjSim |
| 12 | + |
| 13 | + |
| 14 | +# |
| 15 | +# Experiment parameters |
| 16 | +# |
| 17 | + |
| 18 | +# Image size for rendering |
| 19 | +IMAGE_WIDTH = 255 |
| 20 | +IMAGE_HEIGHT = 255 |
| 21 | +# Number of frames to render per sim |
| 22 | +N_FRAMES = 2000 |
| 23 | +# Number of sims to run in parallel (assumes one per GPU), |
| 24 | +# so N_SIMS=2 assumes there are 2 GPUs available. |
| 25 | +N_SIMS = 2 |
| 26 | + |
| 27 | + |
| 28 | +class RenderProcess: |
| 29 | + """ |
| 30 | + Wraps a multiprocessing.Process for rendering. Assumes there |
| 31 | + is one MjSim per process. |
| 32 | + """ |
| 33 | + |
| 34 | + def __init__(self, device_id, setup_sim, update_sim, output_var_shape): |
| 35 | + """ |
| 36 | + Args: |
| 37 | + - device_id (int): GPU device to use for rendering (0-indexed) |
| 38 | + - setup_sim (callback): callback that is given a device_id and |
| 39 | + returns a MjSim. It is responsible for making MjSim render |
| 40 | + to given device. |
| 41 | + - update_sim (callback): callback given a sim and device_id, and |
| 42 | + should return a numpy array of shape `output_var_shape`. |
| 43 | + - output_var_shape (tuple): shape of the synchronized output |
| 44 | + array from `update_sim`. |
| 45 | + """ |
| 46 | + self.device_id = device_id |
| 47 | + self.setup_sim = setup_sim |
| 48 | + self.update_sim = update_sim |
| 49 | + |
| 50 | + # Create a synchronized output variable (numpy array) |
| 51 | + self._shared_output_var = Array( |
| 52 | + ctypes.c_double, int(np.prod(output_var_shape))) |
| 53 | + self._output_var = np.frombuffer( |
| 54 | + self._shared_output_var.get_obj()) |
| 55 | + |
| 56 | + # Number of variables used to communicate with process |
| 57 | + self._cv = Condition() |
| 58 | + self._ready = Value('b', 0) |
| 59 | + self._start = Value('b', 0) |
| 60 | + self._terminate = Value('b', 0) |
| 61 | + |
| 62 | + # Start the actual process |
| 63 | + self._process = Process(target=self._run) |
| 64 | + self._process.start() |
| 65 | + |
| 66 | + def wait(self): |
| 67 | + """ Wait for process to be ready for another update call. """ |
| 68 | + with self._cv: |
| 69 | + if self._start.value: |
| 70 | + self._cv.wait() |
| 71 | + if self._ready.value: |
| 72 | + return |
| 73 | + self._cv.wait() |
| 74 | + |
| 75 | + def read(self, copy=False): |
| 76 | + """ Reads the output variable. Returns a copy if copy=True. """ |
| 77 | + if copy: |
| 78 | + with self._shared_output_var.get_lock(): |
| 79 | + return np.copy(self._output_var) |
| 80 | + else: |
| 81 | + return self._output_var |
| 82 | + |
| 83 | + def update(self): |
| 84 | + """ Calls update_sim asynchronously. """ |
| 85 | + with self._cv: |
| 86 | + self._start.value = 1 |
| 87 | + self._cv.notify() |
| 88 | + |
| 89 | + def stop(self): |
| 90 | + """ Tells process to stop and waits for it to terminate. """ |
| 91 | + with self._cv: |
| 92 | + self._terminate.value = 1 |
| 93 | + self._cv.notify() |
| 94 | + self._process.join() |
| 95 | + |
| 96 | + def _run(self): |
| 97 | + sim = self.setup_sim(self.device_id) |
| 98 | + |
| 99 | + while True: |
| 100 | + with self._cv: |
| 101 | + self._ready.value = 1 |
| 102 | + self._cv.notify_all() |
| 103 | + |
| 104 | + with self._cv: |
| 105 | + if not self._start.value and not self._terminate.value: |
| 106 | + self._cv.wait() |
| 107 | + if self._terminate.value: |
| 108 | + break |
| 109 | + assert self._start.value |
| 110 | + self._start.value = 0 |
| 111 | + |
| 112 | + # Run the update and assign output variable |
| 113 | + with self._shared_output_var.get_lock(): |
| 114 | + self._output_var[:] = self.update_sim( |
| 115 | + sim, self.device_id).ravel() |
| 116 | + |
| 117 | + |
| 118 | +def setup_sim(device_id): |
| 119 | + model = load_model_from_path("xmls/fetch/main.xml") |
| 120 | + sim = MjSim(model) |
| 121 | + |
| 122 | + image = sim.render( |
| 123 | + IMAGE_WIDTH, IMAGE_HEIGHT, device_id=device_id) |
| 124 | + assert image.shape == (IMAGE_HEIGHT, IMAGE_WIDTH, 3) |
| 125 | + |
| 126 | + return sim |
| 127 | + |
| 128 | + |
| 129 | +def update_sim(sim, device_id): |
| 130 | + sim.step() |
| 131 | + return sim.render(IMAGE_WIDTH, IMAGE_HEIGHT, device_id=device_id) |
| 132 | + |
| 133 | + |
| 134 | +def main(): |
| 135 | + print("main(): create processes", flush=True) |
| 136 | + processes = [] |
| 137 | + for device_id in range(N_SIMS): |
| 138 | + p = RenderProcess( |
| 139 | + device_id, setup_sim, update_sim, |
| 140 | + (IMAGE_HEIGHT, IMAGE_WIDTH, 3)) |
| 141 | + processes.append(p) |
| 142 | + |
| 143 | + for p in processes: |
| 144 | + p.wait() |
| 145 | + |
| 146 | + print("main(): start benchmarking", flush=True) |
| 147 | + start_t = perf_counter() |
| 148 | + |
| 149 | + for _ in range(N_FRAMES): |
| 150 | + for p in processes: |
| 151 | + p.update() |
| 152 | + |
| 153 | + for p in processes: |
| 154 | + p.wait() |
| 155 | + |
| 156 | + for p in processes: |
| 157 | + p.read() |
| 158 | + |
| 159 | + t = perf_counter() - start_t |
| 160 | + print("Completed in %.1fs: %.3fms, %.1f FPS" % ( |
| 161 | + t, t / (N_FRAMES * N_SIMS) * 1000, (N_FRAMES * N_SIMS) / t), |
| 162 | + flush=True) |
| 163 | + |
| 164 | + print("main(): stopping processes", flush=True) |
| 165 | + for p in processes: |
| 166 | + p.stop() |
| 167 | + |
| 168 | + print("main(): finished", flush=True) |
| 169 | + |
| 170 | + |
| 171 | +if __name__ == "__main__": |
| 172 | + # freeze_support() |
| 173 | + set_start_method('spawn') |
| 174 | + main() |
0 commit comments