提交 9255119f 编写于 作者: T tensor-tang

refine jit vmul with all size

上级 a9c18241
...@@ -27,11 +27,7 @@ using namespace platform::jit; // NOLINT ...@@ -27,11 +27,7 @@ using namespace platform::jit; // NOLINT
bool VMulJitCode::init(int d) { bool VMulJitCode::init(int d) {
// It's not necessary to use avx512 since it would slow down the frequency // It's not necessary to use avx512 since it would slow down the frequency
// and this kernel is not compute bound. // and this kernel is not compute bound.
if (MayIUse(avx)) { return MayIUse(avx);
return d % 2 == 0;
} else {
return false;
}
} }
void VMulJitCode::generate() { void VMulJitCode::generate() {
...@@ -54,16 +50,19 @@ void VMulJitCode::generate() { ...@@ -54,16 +50,19 @@ void VMulJitCode::generate() {
rest -= 4; rest -= 4;
} }
if (rest >= 2) { if (rest >= 2) {
mov(tmp, qword[param1 + offset]); vmovq(xmm_src1, ptr[param1 + offset]);
vmovq(xmm_src1, tmp); vmovq(xmm_src2, ptr[param2 + offset]);
mov(tmp, qword[param2 + offset]);
vmovq(xmm_src2, tmp);
vmulps(xmm_dst, xmm_src1, xmm_src2); vmulps(xmm_dst, xmm_src1, xmm_src2);
vmovq(tmp, xmm_dst); vmovq(ptr[param3 + offset], xmm_dst);
mov(ptr[param3 + offset], tmp);
offset += sizeof(float) * 2; offset += sizeof(float) * 2;
rest -= 2; rest -= 2;
} }
if (rest > 0) {
vmovss(xmm_src1, ptr[param1 + offset]);
vmovss(xmm_src2, ptr[param2 + offset]);
vmulss(xmm_dst, xmm_src1, xmm_src2);
vmovss(ptr[param3 + offset], xmm_dst);
}
ret(); ret();
} }
......
...@@ -43,7 +43,6 @@ class VMulJitCode : public JitCode { ...@@ -43,7 +43,6 @@ class VMulJitCode : public JitCode {
reg64_t param1{abi_param1}; reg64_t param1{abi_param1};
reg64_t param2{abi_param2}; reg64_t param2{abi_param2};
reg64_t param3{abi_param3}; reg64_t param3{abi_param3};
reg64_t tmp = rax;
xmm_t xmm_src1 = xmm_t(0); xmm_t xmm_src1 = xmm_t(0);
xmm_t xmm_src2 = xmm_t(1); xmm_t xmm_src2 = xmm_t(1);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册