Home
last modified time | relevance | path

Searched refs:countC8 (Results 1 – 8 of 8) sorted by relevance

/dports/misc/mnn/MNN-1.2.0/source/backend/cpu/x86_x64/
H A DFunctionDispatcher.cpp35 …void (*MNNExpC8)(float* dest, const float* source, const float* parameters, size_t countC8) = _SSE…
130 void MNNExpC8(float* dest, const float* source, const float* parameters, size_t countC8) { in MNNExpC8() argument
131 gFunc.MNNExpC8(dest, source, parameters, countC8); in MNNExpC8()
/dports/misc/mnn/MNN-1.2.0/backupcode/cpubackend/
H A DCPULRN.cpp56 int countC8 = dataSize / 8; in powfWithContext() local
58 if (countC8 > 0) { in powfWithContext()
59 MNNPowC8(dst, src, powfParam, betaInt, countC8); in powfWithContext()
61 int remain = countC8 * 8; in powfWithContext()
/dports/misc/mnn/MNN-1.2.0/source/backend/cpu/compute/
H A DCommonOptFunction.h63 void MNNExpC8(float* dest, const float* source, const float* parameters, size_t countC8);
64 …MNNPowC8(float* dest, const float* source, const float* powfParam, size_t betaInt, size_t countC8);
H A DCommonOptFunction.cpp1350 void MNNExpC8(float* dest, const float* source, const float* parameters, size_t countC8) { in MNNExpC8() argument
1351 auto count = countC8 * 8; in MNNExpC8()
1441 …NNPowC8(float* dest, const float* source, const float* powfParam, size_t betaInt, size_t countC8) { in MNNPowC8() argument
1442 const int count = countC8 * 8; in MNNPowC8()
1742 int countC8 = (int)dataSize / 8; in MNNExp() local
1743 if (countC8 > 0) { in MNNExp()
1747 MNNExpC8(dst, src, parameters, countC8); in MNNExp()
1749 int remain = countC8 * 8; in MNNExp()
/dports/misc/mnn/MNN-1.2.0/source/backend/cpu/x86_x64/sse/
H A DFunctionSummary.hpp76 void _SSE_MNNExpC8(float* dest, const float* source, const float* parameters, size_t countC8);
H A DCommonOptFunction.cpp244 void _SSE_MNNExpC8(float* dest, const float* source, const float* parameters, size_t countC8) { in _SSE_MNNExpC8() argument
245 auto count = countC8 * 2; in _SSE_MNNExpC8()
/dports/misc/mnn/MNN-1.2.0/source/backend/cpu/x86_x64/avx/
H A DFunctionSummary.hpp61 void _AVX_MNNExpC8(float* dest, const float* source, const float* parameters, size_t countC8);
H A DCommonOptFunction.cpp377 void _AVX_MNNExpC8(float* dest, const float* source, const float* parameters, size_t countC8) { in _AVX_MNNExpC8() argument
378 auto count = countC8; in _AVX_MNNExpC8()