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 D | FunctionDispatcher.cpp | 35 …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 D | CPULRN.cpp | 56 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 D | CommonOptFunction.h | 63 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 D | CommonOptFunction.cpp | 1350 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 D | FunctionSummary.hpp | 76 void _SSE_MNNExpC8(float* dest, const float* source, const float* parameters, size_t countC8);
|
H A D | CommonOptFunction.cpp | 244 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 D | FunctionSummary.hpp | 61 void _AVX_MNNExpC8(float* dest, const float* source, const float* parameters, size_t countC8);
|
H A D | CommonOptFunction.cpp | 377 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()
|