api.yaml 4.5 KB
Newer Older
1 2 3 4 5 6 7
- api : add
  args : (const Tensor& x, const Tensor& y)
  output : Tensor
  infer_meta : 
    func : ElementwiseInferMeta
    param : [x, y, -1]
  kernel :
Y
YuanRisheng 已提交
8
    func : add
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
    param : [x, y, -1]

- api : cast
  args : (const Tensor& x, DataType out_dtype)
  output : Tensor
  infer_meta : 
    func : CastInferMeta
  kernel :
    func : cast
    param : [x, out_dtype, x.dtype()]
    data_type : x

- api : divide
  args : (const Tensor& x, const Tensor& y)
  output : Tensor
  infer_meta : 
    func : ElementwiseInferMeta
    param : [x, y, -1]
  kernel :
Y
YuanRisheng 已提交
28
    func : divide
29 30 31 32 33 34 35 36 37 38
    param : [x, y, -1]

- api : dot
  args : (const Tensor& x, const Tensor& y)
  output : Tensor
  infer_meta : 
    func : DotInferMeta
  kernel : 
    func : dot

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
- api : empty
  args : (const ScalarArray& shape, DataType dtype=DataType::FLOAT32, Backend place=Backend::CPU, DataLayout layout=DataLayout::NCHW)
  output: Tensor
  infer_meta : 
    func : CreateInferMeta
    param : [shape, dtype, layout]
  kernel : 
    func : empty
    param : [shape]
    data_type : dtype
    backend : place
    layout : layout
  
- api : empty_like
  args : (const Tensor& x, DataType dtype = DataType::UNDEFINED, Backend place = Backend::UNDEFINED, DataLayout layout = DataLayout::UNDEFINED)
  output: Tensor
  infer_meta : 
    func : CreateLikeInferMeta
    param : [x, dtype, layout]
  kernel : 
    func : empty_like
    param : []
    data_type : dtype > x
    backend : place > x
    layout : layout > x

65 66 67 68 69 70
- api : flatten
  args : (const Tensor& x, int start_axis, int stop_axis)
  output : Tensor
  infer_meta : 
    func : FlattenInferMeta
  kernel : 
Y
YuanRisheng 已提交
71
    func : flatten
72 73 74 75 76

- api : full
  args : (const ScalarArray& shape, const Scalar& value, DataType dtype=DataType::FLOAT32, Backend place=Backend::CPU, DataLayout layout=DataLayout::NCHW)
  output: Tensor
  infer_meta : 
Z
zyfncg 已提交
77
    func : CreateInferMeta
78 79
    param : [shape, dtype, layout]
  kernel : 
Y
YuanRisheng 已提交
80
    func : full
81 82 83 84 85 86 87 88 89
    param : [shape, value]
    data_type : dtype
    backend : place
    layout : layout
  
- api : full_like
  args : (const Tensor& x, const Scalar& value, DataType dtype = DataType::UNDEFINED, Backend place = Backend::UNDEFINED, DataLayout layout = DataLayout::UNDEFINED)
  output: Tensor
  infer_meta : 
Z
zyfncg 已提交
90
    func : CreateLikeInferMeta
91 92
    param : [x, dtype, layout]
  kernel : 
Y
YuanRisheng 已提交
93
    func : full_like
94
    param : [value]
95 96 97 98 99 100 101 102 103 104
    data_type : dtype > x
    backend : place > x
    layout : layout > x

- api : matmul
  args : (const Tensor& x, const Tensor& y, bool transpose_x = false, bool transpose_y = false)
  output : Tensor
  infer_meta : 
    func : MatmulInferMeta
  kernel : 
105
    func : matmul
106 107

- api : mean
108
  args : (const Tensor& x, const std::vector<int64_t>& axis={}, bool keep_dim=false)
109 110 111
  output : Tensor
  infer_meta : 
    func : ReduceInferMeta
112
    param: [x, axis, keep_dim]
113
  kernel : 
Y
YuanRisheng 已提交
114
    func : mean
115
    param : [x, axis, keep_dim, false]
116 117 118 119 120 121 122 123

- api : multiply
  args : (const Tensor& x, const Tensor& y)
  output : Tensor
  infer_meta : 
    func : ElementwiseInferMeta
    param : [x, y, -1]
  kernel :
Y
YuanRisheng 已提交
124
    func : multiply
125 126 127 128 129 130 131 132
    param : [x, y, -1]

- api : ones_like
  args : (const Tensor& x, DataType dtype=DataType::UNDEFINED, Backend place=Backend::UNDEFINED, DataLayout layout=DataLayout::UNDEFINED)
  output : Tensor
  invoke : full_like(x, 1, dtype, place, layout)

- api : reshape
133
  args : (const Tensor& x, const ScalarArray& shape)
134 135
  output : Tensor
  infer_meta : 
136
    func : ReshapeInferMeta
137
  kernel : 
Y
YuanRisheng 已提交
138
    func : reshape
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155

- api : scale
  args : (const Tensor& x, const Scalar& scale, float bias, bool bias_after_scale)
  output : Tensor
  infer_meta : 
    func : UnchangedInferMeta
    param : [x]
  kernel :
    func : scale

- api : subtract
  args : (const Tensor& x, const Tensor& y)
  output : Tensor
  infer_meta : 
    func : ElementwiseInferMeta
    param : [x, y, -1]
  kernel :
Y
YuanRisheng 已提交
156
    func : subtract
157 158 159
    param : [x, y, -1]

- api : sum
160
  args : (const Tensor& x, const std::vector<int64_t>& axis={}, DataType dtype=DataType::UNDEFINED, bool keep_dim=false)
161 162 163
  output : Tensor
  infer_meta : 
    func : ReduceInferMeta
164
    param: [x, axis, keep_dim, dtype]
165
  kernel : 
Y
YuanRisheng 已提交
166
    func : sum
167 168
    param : [x, axis, keep_dim, false, DataType::UNDEFINED]
    data_type : x
169 170 171 172 173 174

- api : zeros_like
  args : (const Tensor& x, DataType dtype=DataType::UNDEFINED, Backend place=Backend::UNDEFINED, DataLayout layout=DataLayout::UNDEFINED)
  output : Tensor
  invoke : full_like(x, 0, dtype, place, layout)

C
chentianyu03 已提交
175 176 177 178 179 180 181
- api : conj
  args : (const Tensor& x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : conj