inlining failed in call to always_inline #39;__m256d _mm256_broadcast_sd(const double*)#39;(内联调用 always_inline __m256d _mm256_broadcast_sd(const double*) 失败)
问题描述
我正在尝试运行一个由我的朋友创建的 Visual Studio cpp 项目.我正在尝试在没有 VS 的情况下运行该文件.但是我得到了一个错误列表,格式都一样:
I'm trying to run a Visual Studio cpp project created by a friend of mine. I'm trying to run the file without VS. But I'm getting a list of errors, all in the same format:
inlining failed in call to always_inline '__m256d _mm256_broadcast_sd(const double*)': target specific option mismatch|
它在具有发布模式的 VS 中正确运行,并在调试模式下运行时中断.
It runs correctly in VS with release mode and breaks when run in debug mode.
include
如下:
#include "stdafx.h"
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <vector>
# include <omp.h>
#include <chrono>
#include <fstream>
#include <algorithm>
#include <immintrin.h>
using namespace std::chrono;
using namespace std;
从这里调用错误:
double zero = 0;
__m256d acc = _mm256_broadcast_sd(&zero);
更新:
我正在使用这个命令来运行它:g++ -std=c++0x multip.cpp -o multip
,是否有额外的参数可以将 -mavx 添加到编译器调用中?
I'm using the this command to run it: g++ -std=c++0x multip.cpp -o multip
, is there an additional parameter to add -mavx to the compiler invocation?
推荐答案
目标特定选项不匹配" 意味着您缺少 GCC 调用中的功能标志.您可能需要将 -mavx
添加到编译器调用中.
"Target specific option mismatch" means that you're missing a feature flag from your GCC invocation. You probably need to add -mavx
to your compiler invocation.
如果您只打算在您的计算机上运行它,-march=native
将打开您自己的机器支持的所有功能标志.
If you're intending to run this on your computer only, -march=native
will turn on all the feature flags that your own machine supports.
这篇关于内联调用 always_inline '__m256d _mm256_broadcast_sd(const double*)' 失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:内联调用 always_inline '__m256d _mm256_broadcast_sd(const double*)' 失败
基础教程推荐
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01