5.x core: rename cv::bfloat16_t to cv::bfloat (#25232)

* rename cv::bfloat16_t to cv::bfloat

* clean class bfloat
This commit is contained in:
Yuantao Feng
2024-03-22 08:45:59 +08:00
committed by GitHub
parent aa9e80b07b
commit 8e342f8857
24 changed files with 139 additions and 151 deletions

View File

@@ -23,7 +23,7 @@ void cvt32f16f(const float* src, float16_t* dst, int len)
CV_CPU_DISPATCH(cvt32f16f, (src, dst, len),
CV_CPU_DISPATCH_MODES_ALL);
}
void cvt32f16bf(const float* src, bfloat16_t* dst, int len)
void cvt32f16bf(const float* src, bfloat* dst, int len)
{
CV_INSTRUMENT_REGION();
CV_CPU_DISPATCH(cvt32f16bf, (src, dst, len),