api_compat.yaml 2.6 KB
Newer Older
1 2
- api : atan2
  inputs :
3
    {x : X1, y : X2}
4 5 6
  outputs :
    out : Out

7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
- api : bernoulli
  inputs :
    x : X
  outputs :
    out : Out

- api : cholesky
  inputs :
    x : X
  outputs :
    out : Out

- api : cholesky_solve
  inputs :
    {x : X, y : Y}
  outputs :
    out : Out

- api : conv2d
  extra :
    attrs : [bool use_cudnn = false, bool fuse_relu_before_depthwise_conv = false, bool use_mkldnn = false,
             bool use_quantizer = false, str mkldnn_data_type = "float32", bool fuse_relu = false,
             str fuse_activation = "", bool fuse_alpha = false, bool fuse_beta = false, bool use_addto = false,
             bool fuse_residual_connection = false, float Scale_in = 1.0f, float Scale_out = 1.0f,
             float Scale_in_eltwise = 1.0f, 'float[] Scale_weights = {1.0f}', bool force_fp32_output = false,
             int workspace_size_MB = 512, bool exhaustive_search = false]

F
Feiyu Chan 已提交
34 35 36 37 38 39 40 41 42
- api : conv2d
  extra :
    attrs : [bool use_cudnn = false, bool fuse_relu_before_depthwise_conv = false, bool use_mkldnn = false,
             bool use_quantizer = false, str mkldnn_data_type = "float32", bool fuse_relu = false,
             str fuse_activation = "", bool fuse_alpha = false, bool fuse_beta = false, bool use_addto = false,
             bool fuse_residual_connection = false, float Scale_in = 1.0f, float Scale_out = 1.0f,
             float Scale_in_eltwise = 1.0f, 'float[] Scale_weights = {1.0f}', bool force_fp32_output = false,
             int workspace_size_MB = 512, bool exhaustive_search = false]

43
- api : cross
44 45
  inputs :
    {x : X, y : Y}
46 47 48 49 50
  attrs :
    axis : dim
  outputs :
    out : Out

51 52 53 54 55 56 57 58
- api : diag
  op_name : diag_v2
  grad_op_name : diag_v2_grad
  inputs :
    x : X
  outputs :
    out : Out

59 60 61 62 63 64
- api : diagonal
  inputs :
    x : Input
  outputs :
    out : Out

65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
- api : digamma
  inputs :
    x : X
  outputs :
    out : Out

- api : dist
  inputs :
    {x : X, y : Y}
  outputs :
    out : Out

- api : dot
  inputs :
    {x : X, y : Y}
  outputs :
    out : Out

- api : erf
  inputs :
    x : X
  outputs :
    out : Out

89 90 91 92 93 94
- api : erfinv
  inputs :
    x : X
  outputs :
    out : Out

95 96 97 98 99 100
- api : lgamma
  inputs :
    x : X
  outputs :
    out : Out

101 102 103 104 105 106 107 108 109 110 111 112
- api : mv
  inputs :
    {x : X, vec : Vec}
  outputs :
    out : Out

- api : poisson
  inputs :
    x : X
  outputs :
    out : Out

113 114 115 116 117 118
- api : solve
  inputs :
    {x : X, y : Y}
  outputs :
    out : Out

119 120 121 122 123
- api : trace
  inputs :
    x : Input
  outputs :
    out : Out
124

125 126 127 128 129
- api : trunc
  inputs :
    x : X
  outputs :
    out : Out
F
Feiyu Chan 已提交
130 131 132 133 134 135 136 137 138 139 140 141

- api: fft_c2c
  inputs: {x: X}
  outputs: {out: Out}

- api: fft_c2r
  inputs: {x: X}
  outputs: {out: Out}

- api: fft_r2c
  inputs: {x: X}
  outputs: {out: Out}