hello-mlir/examples/reshape_reshape.hello
jackfiled eacf20fe3c
feat: toy tutorial chapter 3.
Signed-off-by: jackfiled <xcrenchangjun@outlook.com>
2025-06-02 17:22:53 +08:00

6 lines
85 B
Plaintext

def main() {
var a<2,1> = [1, 2];
var b<2,1> = a;
var c<2,1> = b;
print(c);
}