在 C# 中使用 pragma inside(sqrt, pow)?
C++ 摘要
在代码的预处理器部分使用#pragma inside
命令将大大提高大多数数学函数调用的速度。
#pragma intrinsic(sqrt, pow)
上面的代码允许大多数数学函数调用直接发送到数学协处理器,而不是发送到函数堆栈。
问题
有没有办法在C#中做到这一点?除了重写内置函数来执行类似的操作之外。例如,做二的幂是很常见的,所以这是合适的,但这不是我想要的:
public double Pow2(double value)
{
return (value * value);
}
C++ Summary
Using the #pragma intrinsic
command in the preprocessor section of your code will greatly increase the speed of most math function calls.
#pragma intrinsic(sqrt, pow)
The above code allows most math functions calls to be sent directly to the math co-processor rather than being sent to the function stack.
Question
Is there any way to do this in C#? Other than rewriting the built in functions to do something similar. Like for example, it is common to do power of two, so this would be appropriate, but it is not what I am looking for:
public double Pow2(double value)
{
return (value * value);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
C# 不需要“#pragmatrinsic”,因为:
从 C# 访问数学协处理器
C# shouldn't need "#pragma intrinsic", because:
Accessing math coprocessor from C#