Searched refs:norm (Results 1 – 12 of 12) sorted by relevance
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/cmsis/CMSIS/DSP/Include/dsp/ |
A D | utils.h | 156 __STATIC_INLINE void arm_norm_64_to_32u(uint64_t in, int32_t * normalized, int32_t *norm) in arm_norm_64_to_32u() argument 174 *norm = -1; in arm_norm_64_to_32u() 183 *norm = 0; in arm_norm_64_to_32u() 190 *norm = n1 - 1; in arm_norm_64_to_32u() 191 *normalized = lo << *norm; in arm_norm_64_to_32u() 200 *norm = -n1; in arm_norm_64_to_32u() 213 int32_t norm; in arm_div_q63_to_q31() local 220 arm_norm_64_to_32u(absNum, &normalized, &norm); in arm_div_q63_to_q31() 221 if (norm > 0) in arm_div_q63_to_q31()
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/tools/make/downloads/cmsis/CMSIS/DSP/Include/dsp/ |
A D | utils.h | 156 __STATIC_INLINE void arm_norm_64_to_32u(uint64_t in, int32_t * normalized, int32_t *norm) in arm_norm_64_to_32u() argument 174 *norm = -1; in arm_norm_64_to_32u() 183 *norm = 0; in arm_norm_64_to_32u() 190 *norm = n1 - 1; in arm_norm_64_to_32u() 191 *normalized = lo << *norm; in arm_norm_64_to_32u() 200 *norm = -n1; in arm_norm_64_to_32u() 213 int32_t norm; in arm_div_q63_to_q31() local 220 arm_norm_64_to_32u(absNum, &normalized, &norm); in arm_div_q63_to_q31() 221 if (norm > 0) in arm_div_q63_to_q31()
|
/AliOS-Things-master/components/py_engine/tests/perf_bench/ |
A D | bm_float.py | 24 norm = sqrt(x * x + y * y + z * z) 25 self.x /= norm 26 self.y /= norm 27 self.z /= norm
|
A D | benchrun.py | 26 norm, out = result() 27 print(ticks_diff(t1, t0), norm, out)
|
A D | bm_chaos.py | 274 norm = params[4] 279 return norm, pix
|
A D | bm_hexiom.py | 656 norm = params[0] * params[1] 658 return norm, ((out == expected), out)
|
/AliOS-Things-master/components/py_engine/tests/ |
A D | run-perfbench.py | 77 time, norm, result = output.split(None, 2) 79 return int(time), int(norm), result 122 time, norm, result = run_benchmark_on_target(target, test_script) 123 if time < 0 or norm < 0: 132 scores.append(1e6 * norm / time)
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/examples/ |
A D | test_point.js | 32 assert(pt.norm() == 5);
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/enc/ |
A D | picture_csp_enc.c | 94 const double norm = 1. / 255.; in InitGammaTables() local 97 (uint16_t)(pow(norm * v, kGamma) * kGammaScale + .5); in InitGammaTables() 185 const double norm = 1. / MAX_Y_T; in InitGammaTablesS() local 191 const double g = norm * v; in InitGammaTablesS()
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/platform/cmsis/inc/ |
A D | arm_math.h | 1337 __STATIC_INLINE void arm_norm_64_to_32u(uint64_t in, int32_t * normalized, int32_t *norm) in arm_norm_64_to_32u() argument 1355 *norm = -1; in arm_norm_64_to_32u() 1364 *norm = 0; in arm_norm_64_to_32u() 1371 *norm = n1 - 1; in arm_norm_64_to_32u() 1372 *normalized = lo << *norm; in arm_norm_64_to_32u() 1381 *norm = -n1; in arm_norm_64_to_32u() 1394 int32_t norm; in arm_div_q63_to_q31() local 1401 arm_norm_64_to_32u(absNum, &normalized, &norm); in arm_div_q63_to_q31() 1402 if (norm > 0) in arm_div_q63_to_q31()
|
/AliOS-Things-master/components/mbedtls/library/ |
A D | ecp.c | 2523 goto norm; 2553 norm:
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | libbf.c | 2507 goto norm; in bf_set_float64() 2511 norm: in bf_set_float64() 7784 limb_t i, norm, norm_inv, a, n, m, m_inv; in ntt_vec_mul() local 7788 norm = s->ntt_len_inv[m_idx][k_tot][0]; in ntt_vec_mul() 7798 a = mul_mod_fast3(a, norm, m, norm_inv); in ntt_vec_mul()
|
Completed in 50 milliseconds