modeci_mdf.functions.onnx.tile

modeci_mdf.functions.onnx.tile(*args, **kwargs)

Constructs a tensor by tiling a given tensor. This is the same as function tile in Numpy, but no broadcast. For example A = [[1, 2], [3, 4]], B = [1, 2], tile(A, B) = [[1, 2, 1, 2], [3, 4, 3, 4]]