paddle_ops.mlir 245 字节
Newer Older
Y
Yan Chunwei 已提交
1
func @ops() {
2 3
  %a = pd.feed() {name="input0"} : tensor<?xf32>
  %b = pd.feed() {name="input1"}: tensor<?xf32>
Y
Yan Chunwei 已提交
4

5
  %c = "pd.matmul"(%a, %b) {transpose_x=true, transpose_y=false} : (tensor<?xf32>, tensor<?xf32>) -> tensor<?xf32>
Y
Yan Chunwei 已提交
6 7 8

  infrt.return
}