>>> x = graph.pwc(durations=np.array([0.1, 0.5, 0.3]), values=np.array([1, 2, 3]))
>>> graph.time_reverse_pwc(x, name="reverse")
<Pwc: name="reverse", operation_name="time_reverse_pwc", value_shape=(), batch_shape=()>
>>> result = qctrl.functions.calculate_graph(graph=graph, output_node_names=["reverse"])
>>> result.output["reverse"]
[{'duration': 0.3, 'value': 3.0},
{'duration': 0.5, 'value': 2.0},
{'duration': 0.1, 'value': 1.0}]