Home
last modified time | relevance | path

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

/third_party/mindspore/test/utils/
Dmodel_utils.cpp118 auto imageBufNhwc = new char[size1]; in FillInputsData() local
119 PackNCHWToNHWCFp32(imageBuf, imageBufNhwc, shape[0], shape[1] * shape[2], shape[3]); in FillInputsData()
120 errno_t ret = memcpy_s(inputData, size1, imageBufNhwc, size1); in FillInputsData()
124 delete[] imageBufNhwc; in FillInputsData()
/third_party/mindspore/test/unittest/
Dmindspore_unit_test.cpp375 auto imageBufNhwc = new char[size1]; variable
376 PackNCHWToNHWCFp32(imageBuf, imageBufNhwc, shape[0], shape[1] * shape[2], shape[3]);
377 errno_t mRet = memcpy_s(inputData, size1, imageBufNhwc, size1);