Lines Matching defs:nb_elements
949 uint64_t nb_elements;
1038 * Input buffer containing float32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1040 * Output buffer to store INT8 numbers. Size of buffer is equal to (nb_elements * 1) bytes.
1041 * @param[in] nb_elements
1054 rte_ml_io_float32_to_int8(const void *fp32, void *i8, uint64_t nb_elements, float scale,
1062 * Input buffer containing INT8 numbers. Size of buffer is equal to (nb_elements * 1) bytes.
1064 * Output buffer to store float32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1065 * @param[in] nb_elements
1078 rte_ml_io_int8_to_float32(const void *i8, void *fp32, uint64_t nb_elements, float scale,
1086 * Input buffer containing float32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1088 * Output buffer to store UINT8 numbers. Size of buffer is equal to (nb_elements * 1) bytes.
1089 * @param[in] nb_elements
1102 rte_ml_io_float32_to_uint8(const void *fp32, void *ui8, uint64_t nb_elements, float scale,
1110 * Input buffer containing UINT8 numbers. Size of buffer is equal to (nb_elements * 1) bytes.
1112 * Output buffer to store float32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1113 * @param[in] nb_elements
1126 rte_ml_io_uint8_to_float32(const void *ui8, void *fp32, uint64_t nb_elements, float scale,
1134 * Input buffer containing float32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1136 * Output buffer to store INT16 numbers. Size of buffer is equal to (nb_elements * 2) bytes.
1137 * @param[in] nb_elements
1150 rte_ml_io_float32_to_int16(const void *fp32, void *i16, uint64_t nb_elements, float scale,
1158 * Input buffer containing INT16 numbers. Size of buffer is equal to (nb_elements * 2) bytes.
1160 * Output buffer to store float32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1161 * @param[in] nb_elements
1174 rte_ml_io_int16_to_float32(const void *i16, void *fp32, uint64_t nb_elements, float scale,
1182 * Input buffer containing float32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1184 * Output buffer to store UINT16 numbers. Size of buffer is equal to (nb_elements * 2) bytes.
1185 * @param[in] nb_elements
1198 rte_ml_io_float32_to_uint16(const void *fp32, void *ui16, uint64_t nb_elements, float scale,
1206 * Input buffer containing UINT16 numbers. Size of buffer is equal to (nb_elements * 2) bytes.
1208 * Output buffer to store float32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1209 * @param[in] nb_elements
1222 rte_ml_io_uint16_to_float32(const void *ui16, void *fp32, uint64_t nb_elements, float scale,
1230 * Input buffer containing float32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1232 * Output buffer to store INT32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1233 * @param[in] nb_elements
1246 rte_ml_io_float32_to_int32(const void *fp32, void *i32, uint64_t nb_elements, float scale,
1254 * Input buffer containing INT32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1256 * Output buffer to store float32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1257 * @param[in] nb_elements
1271 rte_ml_io_int32_to_float32(const void *i32, void *fp32, uint64_t nb_elements, float scale,
1279 * Input buffer containing float32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1281 * Output buffer to store UINT32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1282 * @param[in] nb_elements
1295 rte_ml_io_float32_to_uint32(const void *fp32, void *ui32, uint64_t nb_elements, float scale,
1303 * Input buffer containing UINT32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1305 * Output buffer to store float32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1306 * @param[in] nb_elements
1319 rte_ml_io_uint32_to_float32(const void *ui32, void *fp32, uint64_t nb_elements, float scale,
1327 * Input buffer containing float32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1329 * Output buffer to store INT64 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1330 * @param[in] nb_elements
1343 rte_ml_io_float32_to_int64(const void *fp32, void *i64, uint64_t nb_elements, float scale,
1351 * Input buffer containing INT64 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1353 * Output buffer to store float32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1354 * @param[in] nb_elements
1367 rte_ml_io_int64_to_float32(const void *i64, void *fp32, uint64_t nb_elements, float scale,
1375 * Input buffer containing float32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1377 * Output buffer to store UINT64 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1378 * @param[in] nb_elements
1391 rte_ml_io_float32_to_uint64(const void *fp32, void *ui64, uint64_t nb_elements, float scale,
1399 * Input buffer containing UINT64 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1401 * Output buffer to store float32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1402 * @param[in] nb_elements
1415 rte_ml_io_uint64_to_float32(const void *ui64, void *fp32, uint64_t nb_elements, float scale,
1423 * Input buffer containing float32 numbers. Size of buffer is equal to (nb_elements *4) bytes.
1425 * Output buffer to store float16 numbers. Size of buffer is equal to (nb_elements * 2) bytes.
1426 * @param[in] nb_elements
1435 rte_ml_io_float32_to_float16(const void *fp32, void *fp16, uint64_t nb_elements);
1442 * Input buffer containing float16 numbers. Size of buffer is equal to (nb_elements * 2) bytes.
1444 * Output buffer to store float32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1445 * @param[in] nb_elements
1454 rte_ml_io_float16_to_float32(const void *fp16, void *fp32, uint64_t nb_elements);
1461 * Input buffer containing float32 numbers. Size of buffer is equal to (nb_elements *4) bytes.
1463 * Output buffer to store bfloat16 numbers. Size of buffer is equal to (nb_elements * 2) bytes.
1464 * @param[in] nb_elements
1473 rte_ml_io_float32_to_bfloat16(const void *fp32, void *bf16, uint64_t nb_elements);
1480 * Input buffer containing bfloat16 numbers. Size of buffer is equal to (nb_elements * 2)
1483 * Output buffer to store float32 numbers. Size of buffer is equal to (nb_elements * 4) bytes.
1484 * @param[in] nb_elements
1493 rte_ml_io_bfloat16_to_float32(const void *bf16, void *fp32, uint64_t nb_elements);