>>> graph.repeat(y, [2, 3], axis=0, name="d")
<Tensor: name="d", operation_name="repeat", shape=(5, 3)>
>>> result = qctrl.functions.calculate_graph(graph=graph, output_node_names=["d"])
>>> result.output["d"]["value"]
array([[1, 2, 3],
[1, 2, 3],
[4, 5, 6],
[4, 5, 6],
[4, 5, 6]])