如何包含 vDSP 框架 (iOS)?

发布于 2024-11-09 23:25:13 字数 304 浏览 0 评论 0原文

我在包含 vDSP 框架时遇到问题。 我认为这只是待办事项的步骤:

#include <Accelerate/Accelerate.h>

void test()
{
  float a[1024], b[1024], c[1024];
  vDSP_vmul( a, 1, b, 1, c, 1, 1024 );
}

但如果我尝试构建,我会收到错误:

 "_vmul", referenced from:

我认为我没有链接框架。但我该怎么做呢?

I have problems to include the vDSP-Framework.
I thought it is just that steps todo:

#include <Accelerate/Accelerate.h>

void test()
{
  float a[1024], b[1024], c[1024];
  vDSP_vmul( a, 1, b, 1, c, 1, 1024 );
}

but if i try to build,I get an error:

 "_vmul", referenced from:

I think i didnt link the framework. but how can I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

旧人 2024-11-16 23:25:13

如果我没记错的话,vDSP 功能位于 Accelerate 框架中。

从“构建阶段”选项卡上的目标设置中,展开标题为“将二进制文件与库链接”的区域。

从那里您可以按加号按钮添加新框架。在列表中找到 Accelerate 并添加它。

然后您应该能够使用应用程序中的功能。

The vDSP functions are in the Accelerate framework, if I remember correctly.

From your target's settings on the Build Phases tab, expand the area titled "Link Binary With Libraries".

From there you can press the plus button to add a new framework. Locate Accelerate in the list and add it.

You should then be able to use the functions in your app.

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