本文介绍了SSE2中的运算符%和/的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

sse2是否使用二进制运算符%和/?

我怎么写:

Does sse2 use binary operators % and /?

How would i write:

int x=k%p; // eg 9/4 is equal to 1 and not 2.25(modulus operator) 
int y=a/b; // eg 9/4 is equal to 2 and not 2.25 ?

推荐答案



这篇关于SSE2中的运算符%和/的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-15 23:55