- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I have Intel C++ Compiler 11.1.054 integrated with Visual Studio 2008.
When I compile my sample code in console with icl.exe, I can see remarks like 'LOOP WAS VECTORIZED'. But in Visual Studio output they don't appear. But the thing is that I need them. I have flag /Qvec-report:3 set. the sample code is:
The output is:
1>------ Rebuild All started: Project: CSRMultiplication, Configuration: Release Win32 ------
1>Compiling with Intel C++ 11.1.054 [IA-32]... (Intel C++ Environment)
1>test.cpp
1>
1>.\\test.cpp(1) (col. 5): remark #1418: external function definition with no prior declaration
1>
Does anybody know why don't i have vectorization remarks in VS? Thanks in advance.
When I compile my sample code in console with icl.exe, I can see remarks like 'LOOP WAS VECTORIZED'. But in Visual Studio output they don't appear. But the thing is that I need them. I have flag /Qvec-report:3 set. the sample code is:
[bash]int foo() { int a[64]; int ret=0; for(int i=0;i<64;i++) { ret=a+a[i+1]; } return ret; }[/bash]
The output is:
1>------ Rebuild All started: Project: CSRMultiplication, Configuration: Release Win32 ------
1>Compiling with Intel C++ 11.1.054 [IA-32]... (Intel C++ Environment)
1>test.cpp
1>
1>.\\test.cpp(1) (col. 5): remark #1418: external function definition with no prior declaration
1>
Does anybody know why don't i have vectorization remarks in VS? Thanks in advance.
Link Copied
0 Replies

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page