Home
last modified time | relevance | path

Searched refs:poly_array (Results 1 – 2 of 2) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/base/
Dminimal_filtering_generator.c61 int LT(const float *poly_array, float *matrix_lt, int n) { in LT() argument
68 Polynomial(poly_array, poly, n); in LT()
76 float poly_coe = poly_array[j] == 0 ? 0 : -poly_array[j]; in LT()
94 void T(const float *poly_array, float *matrix_t, int n) { in T() argument
100 if (poly_array[i] == 0) { in T()
103 matrix_t[i * (n + 1) + j] = -pow(poly_array[i], n); in T()
110 int B(const float *poly_array, float *matrix_b, int in_unit) { in B() argument
120 T(poly_array, matrix_t, n); in B()
121 if (LT(poly_array, matrix_lt, n) != NNACL_OK) { in B()
Dminimal_filtering_generator.h35 int LT(const float *poly_array, float *matrix_lt, int n);
37 void T(const float *poly_array, float *matrix_t, int n);
39 int B(const float *poly_array, float *matrix_b, int in_unit);