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
    param : [x, y, -1]

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

21 22 23 24 25 26 27 28
- api : conj
  args : (const Tensor& x)
  output : Tensor
  infer_meta :
    func : UnchangedInferMeta
  kernel :
    func : conj

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

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

47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
- 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

73 74 75 76 77 78
- api : flatten
  args : (const Tensor& x, int start_axis, int stop_axis)
  output : Tensor
  infer_meta : 
    func : FlattenInferMeta
  kernel : 
Y
YuanRisheng 已提交
79
    func : flatten
80 81 82 83 84

- 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 已提交
85
    func : CreateInferMeta
86 87
    param : [shape, dtype, layout]
  kernel : 
Y
YuanRisheng 已提交
88
    func : full
89 90 91 92 93 94 95 96 97
    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 已提交
98
    func : CreateLikeInferMeta
99 100
    param : [x, dtype, layout]
  kernel : 
Y
YuanRisheng 已提交
101
    func : full_like
102
    param : [value]
103 104 105 106 107 108 109 110 111 112
    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 : 
113
    func : matmul
114 115

- api : mean
116
  args : (const Tensor& x, const std::vector<int64_t>& axis={}, bool keep_dim=false)
117 118 119
  output : Tensor
  infer_meta : 
    func : ReduceInferMeta
120
    param: [x, axis, keep_dim]
121
  kernel : 
Y
YuanRisheng 已提交
122
    func : mean
123
    param : [x, axis, keep_dim, false]
124 125 126 127 128 129 130 131

- api : multiply
  args : (const Tensor& x, const Tensor& y)
  output : Tensor
  infer_meta : 
    func : ElementwiseInferMeta
    param : [x, y, -1]
  kernel :
Y
YuanRisheng 已提交
132
    func : multiply
133 134 135 136 137 138 139 140
    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
141
  args : (const Tensor& x, const ScalarArray& shape)
142 143
  output : Tensor
  infer_meta : 
144
    func : ReshapeInferMeta
145
  kernel : 
Y
YuanRisheng 已提交
146
    func : reshape
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163

- 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 已提交
164
    func : subtract
165 166 167
    param : [x, y, -1]

- api : sum
168
  args : (const Tensor& x, const std::vector<int64_t>& axis={}, DataType dtype=DataType::UNDEFINED, bool keep_dim=false)
169 170 171
  output : Tensor
  infer_meta : 
    func : ReduceInferMeta
172
    param: [x, axis, keep_dim, dtype]
173
  kernel : 
Y
YuanRisheng 已提交
174
    func : sum
175 176
    param : [x, axis, keep_dim, false, DataType::UNDEFINED]
    data_type : x
177 178 179 180 181

- 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)