diff --git a/master/doctrees/environment.pickle b/master/doctrees/environment.pickle index 9d87c74d..b6a8b6d3 100644 Binary files a/master/doctrees/environment.pickle and b/master/doctrees/environment.pickle differ diff --git a/master/doctrees/functionlib/dsplib/dsplib_index.doctree b/master/doctrees/functionlib/dsplib/dsplib_index.doctree index 9e96ab4d..763cf769 100644 Binary files a/master/doctrees/functionlib/dsplib/dsplib_index.doctree and b/master/doctrees/functionlib/dsplib/dsplib_index.doctree differ diff --git a/master/doctrees/functionlib/dsplib/greaterequal.doctree b/master/doctrees/functionlib/dsplib/greater_equal.doctree similarity index 72% rename from master/doctrees/functionlib/dsplib/greaterequal.doctree rename to master/doctrees/functionlib/dsplib/greater_equal.doctree index d5920363..bbeba3fb 100644 Binary files a/master/doctrees/functionlib/dsplib/greaterequal.doctree and b/master/doctrees/functionlib/dsplib/greater_equal.doctree differ diff --git a/master/doctrees/functionlib/dsplib/lessequal.doctree b/master/doctrees/functionlib/dsplib/less_equal.doctree similarity index 98% rename from master/doctrees/functionlib/dsplib/lessequal.doctree rename to master/doctrees/functionlib/dsplib/less_equal.doctree index 27c3ee29..80c31862 100644 Binary files a/master/doctrees/functionlib/dsplib/lessequal.doctree and b/master/doctrees/functionlib/dsplib/less_equal.doctree differ diff --git a/master/doctrees/functionlib/dsplib/square_difference.doctree b/master/doctrees/functionlib/dsplib/square_difference.doctree index 0ef42f9c..2ce70519 100644 Binary files a/master/doctrees/functionlib/dsplib/square_difference.doctree and b/master/doctrees/functionlib/dsplib/square_difference.doctree differ diff --git a/master/doctrees/functionlib/dsplib/topkfusion.doctree b/master/doctrees/functionlib/dsplib/topkfusion.doctree index fededb3f..28863186 100644 Binary files a/master/doctrees/functionlib/dsplib/topkfusion.doctree and b/master/doctrees/functionlib/dsplib/topkfusion.doctree differ diff --git a/master/html/_sources/functionlib/dsplib/dsplib_index.rst.txt b/master/html/_sources/functionlib/dsplib/dsplib_index.rst.txt index e88b1dcf..019fe229 100644 --- a/master/html/_sources/functionlib/dsplib/dsplib_index.rst.txt +++ b/master/html/_sources/functionlib/dsplib/dsplib_index.rst.txt @@ -88,7 +88,7 @@ DSP Library C API Reference gather_nd glu greater - greaterequal + greater_equal groupnormfusion gru hashtablelookup @@ -100,7 +100,7 @@ DSP Library C API Reference layernormgrad leaky_relu less - lessequal + less_equal linspace log log1p diff --git a/master/html/_sources/functionlib/dsplib/greaterequal.rst.txt b/master/html/_sources/functionlib/dsplib/greater_equal.rst.txt similarity index 97% rename from master/html/_sources/functionlib/dsplib/greaterequal.rst.txt rename to master/html/_sources/functionlib/dsplib/greater_equal.rst.txt index 0137fbdb..f0ba2434 100644 --- a/master/html/_sources/functionlib/dsplib/greaterequal.rst.txt +++ b/master/html/_sources/functionlib/dsplib/greater_equal.rst.txt @@ -48,7 +48,7 @@ GreaterEqual .. code-block:: c :linenos: - :emphasize-lines: 15 + :emphasize-lines: 50 //FT78NE示例 #include @@ -108,6 +108,7 @@ GreaterEqual .. c:function:: void fp_greater_equal_p(float *input1, float *input2, bool *output, long long *params) .. c:function:: void hp_greater_equal_p(half *input1, half *input2, bool *output, long long *params) +.. c:function:: void dp_greater_equal_p(double *input1, double *input2, bool *output, long long *params) .. c:function:: void i32_greater_equal_p(int32_t *input1, int32_t *input2, bool *output, long long *params) .. c:function:: void i16_greater_equal_p(int16_t *input1, int16_t *input2, bool *output, long long *params) .. c:function:: void i8_greater_equal_p(int8_t *input1, int8_t *input2, bool *output, long long *params) @@ -117,9 +118,9 @@ GreaterEqual .. code-block:: c :linenos: - :emphasize-lines: 14 + :emphasize-lines: 47 - //FT78NE示例 + //FT04示例 #include #include int main(int argc, char* argv[]) { diff --git a/master/html/_sources/functionlib/dsplib/lessequal.rst.txt b/master/html/_sources/functionlib/dsplib/less_equal.rst.txt similarity index 98% rename from master/html/_sources/functionlib/dsplib/lessequal.rst.txt rename to master/html/_sources/functionlib/dsplib/less_equal.rst.txt index e9be8be7..caa984c6 100644 --- a/master/html/_sources/functionlib/dsplib/lessequal.rst.txt +++ b/master/html/_sources/functionlib/dsplib/less_equal.rst.txt @@ -49,7 +49,7 @@ LessEqual .. code-block:: c :linenos: - :emphasize-lines: 11 + :emphasize-lines: 46 //FT78NE示例 #include @@ -114,9 +114,9 @@ LessEqual .. code-block:: c :linenos: - :emphasize-lines: 11 + :emphasize-lines: 46 - //FT78NE示例 + //FT04示例 #include #include // 假设头文件名为 less.h int main(int argc, char* argv[]) { diff --git a/master/html/_sources/functionlib/dsplib/topkfusion.rst.txt b/master/html/_sources/functionlib/dsplib/topkfusion.rst.txt index cce5a815..1a590883 100644 --- a/master/html/_sources/functionlib/dsplib/topkfusion.rst.txt +++ b/master/html/_sources/functionlib/dsplib/topkfusion.rst.txt @@ -42,6 +42,7 @@ TopkFusion params[6] = (long long)out_value;是否返回数值的标志。若为非0,则 `output_value` 必须提供有效地址。 params[7] = (long long)in_shape_size;输入张量的维度数 (即 `in_shape` 数组的长度)。 params[8] = (long long)axis;执行查找操作的轴。 + params[9] = (long long)largest; 是否查找最大值的标志。若为0,则查找最小值。 **共享存储版本:** @@ -98,6 +99,7 @@ TopkFusion params[6] = (long long)out_value; params[7] = (long long)in_shape_size; params[8] = (long long)axis; + params[9] = (long long)1; // largest fp_top_k_fusion_s(input, output, output_value, params, core_mask); return 0; @@ -158,6 +160,7 @@ TopkFusion params[6] = (long long)out_value; params[7] = (long long)in_shape_size; params[8] = (long long)axis; + params[9] = (long long)1; // largest fp_top_k_fusion_p(input, output, output_value, params); return 0; diff --git a/master/html/functionlib/dsplib/abs.html b/master/html/functionlib/dsplib/abs.html index 98b94a9d..199d9d5f 100644 --- a/master/html/functionlib/dsplib/abs.html +++ b/master/html/functionlib/dsplib/abs.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/abs_grad.html b/master/html/functionlib/dsplib/abs_grad.html index ee5f0bf3..3c5fb8a4 100644 --- a/master/html/functionlib/dsplib/abs_grad.html +++ b/master/html/functionlib/dsplib/abs_grad.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/activation.html b/master/html/functionlib/dsplib/activation.html index 1abe78dd..4ee0d791 100644 --- a/master/html/functionlib/dsplib/activation.html +++ b/master/html/functionlib/dsplib/activation.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/activation_grad.html b/master/html/functionlib/dsplib/activation_grad.html index b84c092a..2e726b9a 100644 --- a/master/html/functionlib/dsplib/activation_grad.html +++ b/master/html/functionlib/dsplib/activation_grad.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/adam.html b/master/html/functionlib/dsplib/adam.html index 3eaf7fb9..7add7af9 100644 --- a/master/html/functionlib/dsplib/adam.html +++ b/master/html/functionlib/dsplib/adam.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/adamweightdecay.html b/master/html/functionlib/dsplib/adamweightdecay.html index bbf2aa0f..98f8e29f 100644 --- a/master/html/functionlib/dsplib/adamweightdecay.html +++ b/master/html/functionlib/dsplib/adamweightdecay.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/add.html b/master/html/functionlib/dsplib/add.html index 4e429ed0..4c47df7b 100644 --- a/master/html/functionlib/dsplib/add.html +++ b/master/html/functionlib/dsplib/add.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/add_grad.html b/master/html/functionlib/dsplib/add_grad.html index 36edbb10..dc88daf7 100644 --- a/master/html/functionlib/dsplib/add_grad.html +++ b/master/html/functionlib/dsplib/add_grad.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/adder.html b/master/html/functionlib/dsplib/adder.html index 50c9800a..524f813d 100644 --- a/master/html/functionlib/dsplib/adder.html +++ b/master/html/functionlib/dsplib/adder.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/addn.html b/master/html/functionlib/dsplib/addn.html index f053dac8..c42263e5 100644 --- a/master/html/functionlib/dsplib/addn.html +++ b/master/html/functionlib/dsplib/addn.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/affine.html b/master/html/functionlib/dsplib/affine.html index dd318a08..d83631c7 100644 --- a/master/html/functionlib/dsplib/affine.html +++ b/master/html/functionlib/dsplib/affine.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/all.html b/master/html/functionlib/dsplib/all.html index 747b3660..f53aabf8 100644 --- a/master/html/functionlib/dsplib/all.html +++ b/master/html/functionlib/dsplib/all.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/allgather.html b/master/html/functionlib/dsplib/allgather.html index de9208ed..ea1cb49c 100644 --- a/master/html/functionlib/dsplib/allgather.html +++ b/master/html/functionlib/dsplib/allgather.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/apply_momentum.html b/master/html/functionlib/dsplib/apply_momentum.html index 70d39f0a..62f4912e 100644 --- a/master/html/functionlib/dsplib/apply_momentum.html +++ b/master/html/functionlib/dsplib/apply_momentum.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/argmax.html b/master/html/functionlib/dsplib/argmax.html index 89bd0634..5356dd6c 100644 --- a/master/html/functionlib/dsplib/argmax.html +++ b/master/html/functionlib/dsplib/argmax.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/argmin.html b/master/html/functionlib/dsplib/argmin.html index ddf695c1..2e70674f 100644 --- a/master/html/functionlib/dsplib/argmin.html +++ b/master/html/functionlib/dsplib/argmin.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/assert.html b/master/html/functionlib/dsplib/assert.html index ef3be18d..7e67d976 100644 --- a/master/html/functionlib/dsplib/assert.html +++ b/master/html/functionlib/dsplib/assert.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/assign.html b/master/html/functionlib/dsplib/assign.html index 86d0b39e..c5e51c87 100644 --- a/master/html/functionlib/dsplib/assign.html +++ b/master/html/functionlib/dsplib/assign.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/assignadd.html b/master/html/functionlib/dsplib/assignadd.html index a33315f9..70c8661f 100644 --- a/master/html/functionlib/dsplib/assignadd.html +++ b/master/html/functionlib/dsplib/assignadd.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/attention.html b/master/html/functionlib/dsplib/attention.html index 177d4669..c261a943 100644 --- a/master/html/functionlib/dsplib/attention.html +++ b/master/html/functionlib/dsplib/attention.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/audio_spectrogram.html b/master/html/functionlib/dsplib/audio_spectrogram.html index 57332379..90fc6062 100644 --- a/master/html/functionlib/dsplib/audio_spectrogram.html +++ b/master/html/functionlib/dsplib/audio_spectrogram.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/avg_pool_grad.html b/master/html/functionlib/dsplib/avg_pool_grad.html index 8b0be350..de3e8d8c 100644 --- a/master/html/functionlib/dsplib/avg_pool_grad.html +++ b/master/html/functionlib/dsplib/avg_pool_grad.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/avgpooling.html b/master/html/functionlib/dsplib/avgpooling.html index 2f0a9c47..13382072 100644 --- a/master/html/functionlib/dsplib/avgpooling.html +++ b/master/html/functionlib/dsplib/avgpooling.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/batch_to_space.html b/master/html/functionlib/dsplib/batch_to_space.html index e8cd017e..b8dee7e7 100644 --- a/master/html/functionlib/dsplib/batch_to_space.html +++ b/master/html/functionlib/dsplib/batch_to_space.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/batchnorm.html b/master/html/functionlib/dsplib/batchnorm.html index d76cc8f6..b414f29b 100644 --- a/master/html/functionlib/dsplib/batchnorm.html +++ b/master/html/functionlib/dsplib/batchnorm.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/batchnormgrad.html b/master/html/functionlib/dsplib/batchnormgrad.html index 9d4efe49..04f97892 100644 --- a/master/html/functionlib/dsplib/batchnormgrad.html +++ b/master/html/functionlib/dsplib/batchnormgrad.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/batchtospacend.html b/master/html/functionlib/dsplib/batchtospacend.html index ed89324b..6759fc07 100644 --- a/master/html/functionlib/dsplib/batchtospacend.html +++ b/master/html/functionlib/dsplib/batchtospacend.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/biasadd.html b/master/html/functionlib/dsplib/biasadd.html index d3814add..608f0534 100644 --- a/master/html/functionlib/dsplib/biasadd.html +++ b/master/html/functionlib/dsplib/biasadd.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/biasaddgrad.html b/master/html/functionlib/dsplib/biasaddgrad.html index 4db89732..b98de80b 100644 --- a/master/html/functionlib/dsplib/biasaddgrad.html +++ b/master/html/functionlib/dsplib/biasaddgrad.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/binary_cross_entropy_grad.html b/master/html/functionlib/dsplib/binary_cross_entropy_grad.html index c20a0515..0a495f3d 100644 --- a/master/html/functionlib/dsplib/binary_cross_entropy_grad.html +++ b/master/html/functionlib/dsplib/binary_cross_entropy_grad.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/binarycrossentropy.html b/master/html/functionlib/dsplib/binarycrossentropy.html index 992a7e18..0a29e651 100644 --- a/master/html/functionlib/dsplib/binarycrossentropy.html +++ b/master/html/functionlib/dsplib/binarycrossentropy.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/broadcastto.html b/master/html/functionlib/dsplib/broadcastto.html index 8796630c..de4a3bb9 100644 --- a/master/html/functionlib/dsplib/broadcastto.html +++ b/master/html/functionlib/dsplib/broadcastto.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/call.html b/master/html/functionlib/dsplib/call.html index af84a598..46f94fa0 100644 --- a/master/html/functionlib/dsplib/call.html +++ b/master/html/functionlib/dsplib/call.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/cast.html b/master/html/functionlib/dsplib/cast.html index d2dd0add..194c7cd1 100644 --- a/master/html/functionlib/dsplib/cast.html +++ b/master/html/functionlib/dsplib/cast.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/ceil.html b/master/html/functionlib/dsplib/ceil.html index 7645c782..94372246 100644 --- a/master/html/functionlib/dsplib/ceil.html +++ b/master/html/functionlib/dsplib/ceil.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/clip.html b/master/html/functionlib/dsplib/clip.html index 731e7123..b300f1ef 100644 --- a/master/html/functionlib/dsplib/clip.html +++ b/master/html/functionlib/dsplib/clip.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/concat.html b/master/html/functionlib/dsplib/concat.html index 8bba0b46..670fafb8 100644 --- a/master/html/functionlib/dsplib/concat.html +++ b/master/html/functionlib/dsplib/concat.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/constant_of_shape.html b/master/html/functionlib/dsplib/constant_of_shape.html index 7c99d27c..a6054f41 100644 --- a/master/html/functionlib/dsplib/constant_of_shape.html +++ b/master/html/functionlib/dsplib/constant_of_shape.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/conv2d.html b/master/html/functionlib/dsplib/conv2d.html index 0c1bf4a4..4f76ac6b 100644 --- a/master/html/functionlib/dsplib/conv2d.html +++ b/master/html/functionlib/dsplib/conv2d.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/conv2d_transpose.html b/master/html/functionlib/dsplib/conv2d_transpose.html index 6f72894a..9bb878d7 100644 --- a/master/html/functionlib/dsplib/conv2d_transpose.html +++ b/master/html/functionlib/dsplib/conv2d_transpose.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/conv2dbackpropfilterfusion.html b/master/html/functionlib/dsplib/conv2dbackpropfilterfusion.html index 7f82ca9b..12fb4e4c 100644 --- a/master/html/functionlib/dsplib/conv2dbackpropfilterfusion.html +++ b/master/html/functionlib/dsplib/conv2dbackpropfilterfusion.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/conv2dbackpropinputfusion.html b/master/html/functionlib/dsplib/conv2dbackpropinputfusion.html index 30f863aa..6417c1f9 100644 --- a/master/html/functionlib/dsplib/conv2dbackpropinputfusion.html +++ b/master/html/functionlib/dsplib/conv2dbackpropinputfusion.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/cos.html b/master/html/functionlib/dsplib/cos.html index 62a24cdb..16507617 100644 --- a/master/html/functionlib/dsplib/cos.html +++ b/master/html/functionlib/dsplib/cos.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/crop.html b/master/html/functionlib/dsplib/crop.html index a774d31b..3183e9da 100644 --- a/master/html/functionlib/dsplib/crop.html +++ b/master/html/functionlib/dsplib/crop.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/crop_and_resize.html b/master/html/functionlib/dsplib/crop_and_resize.html index 6aa00a65..5cd9f47b 100644 --- a/master/html/functionlib/dsplib/crop_and_resize.html +++ b/master/html/functionlib/dsplib/crop_and_resize.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/cumsum.html b/master/html/functionlib/dsplib/cumsum.html index 2ca80c1a..5b21cc3e 100644 --- a/master/html/functionlib/dsplib/cumsum.html +++ b/master/html/functionlib/dsplib/cumsum.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/custom.html b/master/html/functionlib/dsplib/custom.html index d1726bf2..f4b8351e 100644 --- a/master/html/functionlib/dsplib/custom.html +++ b/master/html/functionlib/dsplib/custom.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/customextractfeatures.html b/master/html/functionlib/dsplib/customextractfeatures.html index 63fe5926..a919388c 100644 --- a/master/html/functionlib/dsplib/customextractfeatures.html +++ b/master/html/functionlib/dsplib/customextractfeatures.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/customnormalize.html b/master/html/functionlib/dsplib/customnormalize.html index ac21d833..45bb7153 100644 --- a/master/html/functionlib/dsplib/customnormalize.html +++ b/master/html/functionlib/dsplib/customnormalize.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/custompredict.html b/master/html/functionlib/dsplib/custompredict.html index e02111f1..4399f1aa 100644 --- a/master/html/functionlib/dsplib/custompredict.html +++ b/master/html/functionlib/dsplib/custompredict.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/deconvgradfilter.html b/master/html/functionlib/dsplib/deconvgradfilter.html index 071712de..fd62c118 100644 --- a/master/html/functionlib/dsplib/deconvgradfilter.html +++ b/master/html/functionlib/dsplib/deconvgradfilter.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/depend.html b/master/html/functionlib/dsplib/depend.html index f3564ed1..42f7adc2 100644 --- a/master/html/functionlib/dsplib/depend.html +++ b/master/html/functionlib/dsplib/depend.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/depthtospace.html b/master/html/functionlib/dsplib/depthtospace.html index 2518a302..c44acdb7 100644 --- a/master/html/functionlib/dsplib/depthtospace.html +++ b/master/html/functionlib/dsplib/depthtospace.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/detection_post_process.html b/master/html/functionlib/dsplib/detection_post_process.html index 978b075e..f63b0664 100644 --- a/master/html/functionlib/dsplib/detection_post_process.html +++ b/master/html/functionlib/dsplib/detection_post_process.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/div.html b/master/html/functionlib/dsplib/div.html index 7c6a8aaf..2ade414c 100644 --- a/master/html/functionlib/dsplib/div.html +++ b/master/html/functionlib/dsplib/div.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/divgrad.html b/master/html/functionlib/dsplib/divgrad.html index f692724c..f325106a 100644 --- a/master/html/functionlib/dsplib/divgrad.html +++ b/master/html/functionlib/dsplib/divgrad.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/dropout.html b/master/html/functionlib/dsplib/dropout.html index ff50650c..25445f61 100644 --- a/master/html/functionlib/dsplib/dropout.html +++ b/master/html/functionlib/dsplib/dropout.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/dropoutgrad.html b/master/html/functionlib/dsplib/dropoutgrad.html index 3ec8811b..29fb3ea5 100644 --- a/master/html/functionlib/dsplib/dropoutgrad.html +++ b/master/html/functionlib/dsplib/dropoutgrad.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/dsplib_index.html b/master/html/functionlib/dsplib/dsplib_index.html index 8e0aecfd..3ad84ba8 100644 --- a/master/html/functionlib/dsplib/dsplib_index.html +++ b/master/html/functionlib/dsplib/dsplib_index.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • @@ -394,7 +394,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -406,7 +406,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/dynamic_quant.html b/master/html/functionlib/dsplib/dynamic_quant.html index 527ac5dd..cb2b86c5 100644 --- a/master/html/functionlib/dsplib/dynamic_quant.html +++ b/master/html/functionlib/dsplib/dynamic_quant.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/eltwise.html b/master/html/functionlib/dsplib/eltwise.html index 7dbbc6e7..2f80a7d8 100644 --- a/master/html/functionlib/dsplib/eltwise.html +++ b/master/html/functionlib/dsplib/eltwise.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/elu.html b/master/html/functionlib/dsplib/elu.html index 7cc3d472..247fa9e7 100644 --- a/master/html/functionlib/dsplib/elu.html +++ b/master/html/functionlib/dsplib/elu.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/embeddinglookup.html b/master/html/functionlib/dsplib/embeddinglookup.html index 23d19223..b5086e39 100644 --- a/master/html/functionlib/dsplib/embeddinglookup.html +++ b/master/html/functionlib/dsplib/embeddinglookup.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/equal.html b/master/html/functionlib/dsplib/equal.html index 7cd3e472..80e0e621 100644 --- a/master/html/functionlib/dsplib/equal.html +++ b/master/html/functionlib/dsplib/equal.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/erf.html b/master/html/functionlib/dsplib/erf.html index 83b2920c..54e11827 100644 --- a/master/html/functionlib/dsplib/erf.html +++ b/master/html/functionlib/dsplib/erf.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/expand_dims.html b/master/html/functionlib/dsplib/expand_dims.html index e23c5fb9..86e9951a 100644 --- a/master/html/functionlib/dsplib/expand_dims.html +++ b/master/html/functionlib/dsplib/expand_dims.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/expfusion.html b/master/html/functionlib/dsplib/expfusion.html index 3365b016..a65b32c2 100644 --- a/master/html/functionlib/dsplib/expfusion.html +++ b/master/html/functionlib/dsplib/expfusion.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/fake_quant_with_min_max_vars.html b/master/html/functionlib/dsplib/fake_quant_with_min_max_vars.html index 2fe1a82b..33e3e23a 100644 --- a/master/html/functionlib/dsplib/fake_quant_with_min_max_vars.html +++ b/master/html/functionlib/dsplib/fake_quant_with_min_max_vars.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/fake_quant_with_min_max_vars_per_channel.html b/master/html/functionlib/dsplib/fake_quant_with_min_max_vars_per_channel.html index d315d364..219e011d 100644 --- a/master/html/functionlib/dsplib/fake_quant_with_min_max_vars_per_channel.html +++ b/master/html/functionlib/dsplib/fake_quant_with_min_max_vars_per_channel.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/fftimag.html b/master/html/functionlib/dsplib/fftimag.html index 9223aaa2..ed000110 100644 --- a/master/html/functionlib/dsplib/fftimag.html +++ b/master/html/functionlib/dsplib/fftimag.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/fftreal.html b/master/html/functionlib/dsplib/fftreal.html index 4f674215..d772e7fc 100644 --- a/master/html/functionlib/dsplib/fftreal.html +++ b/master/html/functionlib/dsplib/fftreal.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/fill.html b/master/html/functionlib/dsplib/fill.html index b819d09b..acaaa5c6 100644 --- a/master/html/functionlib/dsplib/fill.html +++ b/master/html/functionlib/dsplib/fill.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/fillv2.html b/master/html/functionlib/dsplib/fillv2.html index 0dea123e..aba9e560 100644 --- a/master/html/functionlib/dsplib/fillv2.html +++ b/master/html/functionlib/dsplib/fillv2.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/flatten.html b/master/html/functionlib/dsplib/flatten.html index 4e501855..85ec1655 100644 --- a/master/html/functionlib/dsplib/flatten.html +++ b/master/html/functionlib/dsplib/flatten.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/flattengrad.html b/master/html/functionlib/dsplib/flattengrad.html index a7767c13..3d5ebc2a 100644 --- a/master/html/functionlib/dsplib/flattengrad.html +++ b/master/html/functionlib/dsplib/flattengrad.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/floor.html b/master/html/functionlib/dsplib/floor.html index f344ee4f..ebbf5c86 100644 --- a/master/html/functionlib/dsplib/floor.html +++ b/master/html/functionlib/dsplib/floor.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/floor_mod.html b/master/html/functionlib/dsplib/floor_mod.html index 0c0b90a3..7e9e527f 100644 --- a/master/html/functionlib/dsplib/floor_mod.html +++ b/master/html/functionlib/dsplib/floor_mod.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/floordiv.html b/master/html/functionlib/dsplib/floordiv.html index db6fb2ec..100581b1 100644 --- a/master/html/functionlib/dsplib/floordiv.html +++ b/master/html/functionlib/dsplib/floordiv.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/formattranspose.html b/master/html/functionlib/dsplib/formattranspose.html index eb1c89bf..c8787e9e 100644 --- a/master/html/functionlib/dsplib/formattranspose.html +++ b/master/html/functionlib/dsplib/formattranspose.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/fullconnection.html b/master/html/functionlib/dsplib/fullconnection.html index a5cf69dc..6cb86e70 100644 --- a/master/html/functionlib/dsplib/fullconnection.html +++ b/master/html/functionlib/dsplib/fullconnection.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/fusedbatchnorm.html b/master/html/functionlib/dsplib/fusedbatchnorm.html index 84a47df2..12c4a9b3 100644 --- a/master/html/functionlib/dsplib/fusedbatchnorm.html +++ b/master/html/functionlib/dsplib/fusedbatchnorm.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/gather.html b/master/html/functionlib/dsplib/gather.html index 78dde615..b9c5aef6 100644 --- a/master/html/functionlib/dsplib/gather.html +++ b/master/html/functionlib/dsplib/gather.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/gather_nd.html b/master/html/functionlib/dsplib/gather_nd.html index 3f0cb4a5..85a2a45e 100644 --- a/master/html/functionlib/dsplib/gather_nd.html +++ b/master/html/functionlib/dsplib/gather_nd.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/gatherd.html b/master/html/functionlib/dsplib/gatherd.html index 696f051e..e2b5836c 100644 --- a/master/html/functionlib/dsplib/gatherd.html +++ b/master/html/functionlib/dsplib/gatherd.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/genop.html b/master/html/functionlib/dsplib/genop.html index 417694b9..5d062691 100644 --- a/master/html/functionlib/dsplib/genop.html +++ b/master/html/functionlib/dsplib/genop.html @@ -135,7 +135,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -147,7 +147,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/glu.html b/master/html/functionlib/dsplib/glu.html index cacc58d6..968e88d7 100644 --- a/master/html/functionlib/dsplib/glu.html +++ b/master/html/functionlib/dsplib/glu.html @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • diff --git a/master/html/functionlib/dsplib/greater.html b/master/html/functionlib/dsplib/greater.html index 7b769b63..9bb84337 100644 --- a/master/html/functionlib/dsplib/greater.html +++ b/master/html/functionlib/dsplib/greater.html @@ -24,7 +24,7 @@ - + @@ -136,7 +136,7 @@
  • GatherNd
  • GLU
  • Greater
  • -
  • GreaterEqual
  • +
  • GreaterEqual
  • GroupNormFusion
  • GRU
  • HashtableLookup
  • @@ -148,7 +148,7 @@
  • Layernormgrad
  • LeakyReLu
  • Less
  • -
  • LessEqual
  • +
  • LessEqual
  • LinSpace
  • Log
  • Log1p
  • @@ -531,7 +531,7 @@