paddle_ops.mlir 214 字节
Newer Older
Y
Yan Chunwei 已提交
1
func @ops() {
2 3
  %a = pd.feed() : tensor<?xf32>
  %b = pd.feed() : 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
}