在 C# 中使用 pragma inside(sqrt, pow)?

发布于 2024-11-18 08:44:29 字数 395 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

有木有妳兜一样 2024-11-25 08:44:29

C# 不需要“#pragmatrinsic”,因为:

从 C# 访问数学协处理器

JIT 编译器了解数学协处理器并会使用它。

C# shouldn't need "#pragma intrinsic", because:

Accessing math coprocessor from C#

The JIT compiler knows about the math coprocessor and will use it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文