chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:30:25 +08:00
commit f19b2512d7
562 changed files with 38082 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
from prml.nn.array.broadcast import broadcast_to
from prml.nn.array.flatten import flatten
from prml.nn.array.reshape import reshape, reshape_method
from prml.nn.array.split import split
from prml.nn.array.transpose import transpose, transpose_method
from prml.nn.tensor.tensor import Tensor
Tensor.flatten = flatten
Tensor.reshape = reshape_method
Tensor.transpose = transpose_method
__all__ = [
"broadcast_to",
"flatten",
"reshape",
"split",
"transpose"
]