For issues related to Intel semiconductor chips and assemblies.
2
votes
0answers
157 views
Fast popcount on Intel Xeon Phi
I'm implementing an ultra fast popcount on Intel Xeon® Phi®, as it's a performance hotspot of various bioinformatics software.
I've implemented five pieces of code,
#if defined(__MIC__)
#include ...
2
votes
0answers
136 views
Build Errors Intel C++ (Knights Corner) ipo: warning #11010: file format not recognized
I am trying to write a code to be build on 3 systems which mainly differentiate on the basis of their Register Lengths:
SSE (128 Bits)
AVX (256 Bits)
MIC (Intel's Knights Corner 512 Bits)
My ...
2
votes
0answers
159 views
Is the Intel Xeon Phi usable without a costly Intel Compiler?
Does the Intel Xeon Phi coprocessor, to be usable as parallel platform, require a license of the Intel Composer XE compiler, or are there alternative compilers?
2
votes
0answers
551 views
Calculating gFLOPs of Intel processor
How do I measure my computer's gFLOPs per cycle? I am using the following processor- Intel(R) Pentium(R) CPU G620. It runs @ 2.60 GHz.
2
votes
0answers
289 views
IGB Driver Massive packet loss on Debian Linux 6.0
I am running Debian Linux 6.0 (2.6.32-5-amd64).
My network NICS are Intel 82580 Gigabit running with the IGB network driver version 3.3.6 (firmware version 3.2-9).
I tested the performance and I ...
1
vote
0answers
32 views
Build a .lib with the Intel C++ compiler and use with app in VC++?
I'm using VC++ 2012 to compile a solution with 2 projects. The main library is a Class Library project which simply outputs a .lib file, and the second is an Application, which uses the compiled ...
1
vote
0answers
27 views
Create dll using Perceptual SDK
Good day!
I runned exapmles MyFirstDll and FaceAnalysis. They work fine and now i want to create dll with PSDK functionality.
PercDll.cpp:
extern "C++" CALLBACKPROC_API void Start(void)
{
...
1
vote
0answers
36 views
TBB concurrent_queue errors
Can't seem to compile program with even a mention of concurrent_queue.
code contains this
#include <tbb/concurrent_queue.h>
And second I add anywhere in the code
concurrent_queue<int> ...
1
vote
0answers
61 views
Measure CPU frequency with turboboost in code
I am profiling some code on three different computers with three different frequencies. I need the frequencies to measure GFLOPs/s. I have some code which does this but it does not account for ...
1
vote
0answers
132 views
GLSL for-loop array index
I'm having some trouble using variable indices in GLSL.
The folowing GLSL code is working fine on NVidia cards. But its not working on my Intel HD 4000:
for(int i=0;i<int(uLightCount);++i)
{
...
1
vote
0answers
62 views
SandyBridge: How does physical memory map across channels when interleaving is enabled/disabled?
I have two low-level question about how memory interleaving across channels works on Sandy Bridge processors. I've poured through technical documents from Intel, and I still cannot find the answers. ...
1
vote
0answers
60 views
What is the optimal code for this task?
#if 1
for (POS iSource = iColPos;
iSource < _iMax;
++iSource)
*static_cast<T*__restrict>(&pDataDest[m_sFactorPositions[iSource + iOffset]]) -= pDataSource[iSource]*d;
#else
...
1
vote
0answers
63 views
Intel TBB - Eclipse reports multiple build errors
I'm using Eclipse CDT. I downloaded 4.1 for windows.
I added the include folder to my project by going to my project's properties, then adding the folder in C/C++ General >> Paths and Symbols >> ...
1
vote
0answers
45 views
Is there a best practice to reduce latency for exchange between cores?
We know that in today's Intel's processors sharing between cores is via cache L3. Exchange between parts of L3 cache is on the ring bus (modified QPI), and thus latency the greater the farther the ...
1
vote
0answers
214 views
GCC optimization options for AMD Opteron 4280: benchmark
We're moving from one local computational server with 2*Xeon X5650 to another one with 2*Opteron 4280... Today I was trying to launch my wonderful C programs on the new machine (AMD one), and ...
1
vote
0answers
143 views
dma_map_single and dma_map_page
I want to do dma of multiple frames to send a big frame( jumbo ). I am able to send normal frame ( of size 1500 ). I need some doubts on dma.
What is real advantage of dma_map_single() over other ...
1
vote
0answers
368 views
compile with intel compiler 12 for windows using boost 1.51 error
i like to checkout how intel compiler performs in comparison to VS2008.
So i installed intel composer xe 12 and used intel compiler for my projects.
Also i built all boost libs with intel compiler:
...
1
vote
0answers
132 views
_mm_sfence vs __faststorefence
According to MSDN documentation, __faststorefence is faster than _mm_sfence. In my timings it's over three times slower.
Platform: Win7-64, Visual Studio 2010 with the x64 SDK.
#include ...
1
vote
0answers
228 views
How to call cpuid instruction in a Mac framework?
I want to use the cpuid instruction to identify features of an Intel CPU. I found the cpuid.h header in Kernel.framework, so I added Kernel.framework to my project and included ...
1
vote
0answers
104 views
Macosx 10.7 sdk unable to find “stdarg.h”
Hi i have a project that compile just fine with 10.6 sdk.
I'm on xcode 3 on lion.
I compile with icc.
Now i'd like to pass it to the 10.7 sdk, but i have this error :
...
1
vote
0answers
47 views
An article or book visually describing the CPU, chipset, NB, south bridge, etc. from the past decade to recent QPI, HyperTransport
Does anyone know of a document that visually explains exactly how far is L2 cache from the CPU, what is a chipset in today's world? How is main memory spoken to? Via FSB or QPI?
Is there a better ...
1
vote
0answers
167 views
Intel compiler report “library not found for lstdc++”
I'm on XCode 3.5, with the intel compiler 12.0.4
I'm having an error at the kinking stage, with this ld error message :
"library not found for -lstdc++"
When switching to gcc i have no error.
Does ...
1
vote
0answers
295 views
Context switch on Windows 7 and Intel i7 CPU
How is the context switch implemented in Windows 7?
My understanding is that the hardware context switch on Intel CPUs is much slower than other CPUs. (this is off the top of my head from 10 years ...
1
vote
0answers
103 views
Does anyone know how to programmatically determine the ME (Manageability Engine) FW Version?
For Intel AMT Management Engine supported machines, you can manually find the ME FW Version in the BIOS on the Advanced tab under ME Configuration. Does anyone know how to this programmatically ...
1
vote
0answers
476 views
C++: Thread building blocks - need help getting started
I'm trying to get started with TBB.
I want to implement a concurrent hash map (concurrent_hash_map)
It should be keyed with a long int and return a char*...
Here's the code I have sofar:
#include ...
1
vote
0answers
167 views
C++ Library to Intel Mac Driver
I'm completely new to programming. I need to "convert" a C++ library to Intel Mac driver so I can run my old PCI soundcards on my (Hackintosh) Snow Leopard.
My cards are Echoaudio's MiaMIDI and Mona. ...
0
votes
0answers
19 views
How to have console output for Intel ManyCore Lab batch jobs?
I'm currently testing an OpenMP parallel program on Intel's ManyCore Testing Lab computers, and have been using
qsub -l select=1:ncpus=30 $HOME/myjob
to add the job and run it. It puts the output ...
0
votes
0answers
40 views
Multiple framebuffers and textures not working on intel drivers
I'm writing an application using PyOpengl and PySide. My main machine is installed with ubuntu and an nvidia card (proprietary drivers), the premise is just to tell that the application is working ...
0
votes
0answers
4 views
How can I instrument (e.g. using library calls) a program to measure the bytes transferred between main memory and last-level cache?
My goal is to measure the memory traffic between main memory and last-level cache of a program. I have got the source code, so instrumentation at source code level is possible.
It runs on a GNU/Linux ...
0
votes
0answers
34 views
How do I know if I can compile with FMA instruction sets?
I have seen questions about how to use FMA instructions set but before I get to start using them, I'd first like to know if I can (does my processor support them). I found a post saying that I needed ...
0
votes
0answers
10 views
Unknown libva error
My GMA 4500MHD Intel® GM45 Express Chipset supported VAAPI
https://01.org/linuxgraphics/community/vaapi
But I get this error:
1. $ vainfo libva libva: libva version 0.31.0 libva: ...
0
votes
0answers
41 views
Intel 32bit protected mode enabling paging causes triple fault
I am working on a hobbyist OS and I am having trouble with identity mapping and enabling paging. I am working with Bochs emulator, and I have the following error message :=
00691299602e[CPU0 ] ...
0
votes
0answers
61 views
Intel Rapid Storage Technology Installing Windows 7 Disk Space 0.0 MB
I have a EVGA X58 FTW3 and 4 16gb mtron ssd disks. I have used them in many asus boards in a striped set-up, but on this board that comes with Intel's RST, I can't get it to work.
I've downloaded the ...
0
votes
0answers
20 views
Intels Quick Path Interconnect (QPI) Hello world
As per the title, I cant seem to find any sample code or documentation for building an application that uses Intel's QPI. What does hello world for this look like and where can I find the ...
0
votes
0answers
41 views
JQMobi dual range slider
Have anyone successfully build a dual range selector using JQMobi? I need a control for selecting a range of values (min and max value using one control)
0
votes
0answers
127 views
Asm ascii to binary conversion
im trying to convert ascii input to binary code in variable. Program is working good while number of inputed char is even. Don't know why when its odd i've got the wrong result. If the number of input ...
0
votes
0answers
77 views
How to make copies and transverse words in assembly x86 at&t syntax
I am working on a program that takes a word as input and then replaces every second letter with a !, and it also makes a copy of the word that was entered so later on it could be used and not the ...
0
votes
0answers
143 views
Why does this GLSL shader not working on Intel G41?
Some info about my graphic card:
GL_RENDERER: Intel(R) G41 Express Chipset
OpenGL_VERSION: 2.1.0 - Build 8.15.10.1986
GLSL_VERSION: 1.20 - Intel Build 8.15.10.1986
Vertex shader 1:
#version 110
...
0
votes
0answers
51 views
Vtune Amplifier XE for Multicores?
I'm using Intel Vtune Amplifier XE 2013 to profile a parallel program running on a multicore CPU, in particular it is written in OpenCL and executed in Xeon Phi. I wonder how should be the exact ...
0
votes
0answers
44 views
Does the CGAL 4.2 beta version fix the issues in 4.1?
Currently I am using 4.1 and there are two problems:
1) the 4.1 doesn't support Intel C++ compiler (many errors when compiling by Windows 7 64bit + VS2010 + Intel C++ 13.0);
2) the boolean operations ...
0
votes
0answers
39 views
How can we concurrently run two different functions as different task in intel TBB?
Suppose i have two functions fun1() and fun2(). i want to run both of them concurrently on intel Threading building block. As in openmp i can use #pragma omp sections to run two differnt functions ...
0
votes
0answers
59 views
Registers not storing input
I am taking inputs and storing them in registers R1 and R2. Then I perform comparision using CJNE command and if the input stored in R1 or R2 matches with the data in array, I would do something. But ...
0
votes
0answers
230 views
How many pipelines are used with intel core i7?
Does anybody know how many pipelines are used in core i7 CPUs (Nehalem Architecture)? I know that there are 14-stages per pipeline, but how many pipelines are there?
0
votes
0answers
24 views
Intel rounding bug or Silverlight 5 rounding bug?
I have a Silverlight 5 application with some very basic code (VB).
Dim PlusMinusOperator As Double = 1.0
Dim CurrentImageValue As Double = 0.7
CurrentImageValue += (PlusMinusOperator * 0.1)
What ...
0
votes
0answers
50 views
Integrating Intel Compiler into VS2010?
I have installed Parallel Studio XE 2013 and from within VS2010 I can see all the VTune Amplifier shortcuts. However, if I open a C++ project, go to properties, configuration properties, general and ...
0
votes
0answers
30 views
Porting AOSP to Intel Atom N455
I am evaluating the possibility of bringing up AOSP on PCM 9363 board from Advantech as a replacement for Windows CE. The board is built around Intel Atom N455 Single Core CPU.
(see details here). So ...
0
votes
0answers
97 views
intel compilers, silence commandline warnings
I just started building some code with the intel c compiler -- icc. Our configure script likes to add the -ffast-math flag and maybe a couple others which seem to be GCC specific. Invoking icc with ...
0
votes
0answers
103 views
Difference between trap flag (TF) and monitor trap flag?
Debugging features like GDB work by setting the TF flag of eflags register which causes an exception after every execution of instruction by the processor, letting tools like gdb control over the ...
0
votes
0answers
67 views
Android app doesn't work with architecture intel
So, I'm here trying solve my problem, I done my first version of the my android app, but I was to test in another phone with architecture intel and android version 4 and didn't work. In my eclipse's ...
0
votes
0answers
22 views
Add compiled file to builder project
I have a big Builder C++'s project. To improve performance of my project, I trying to make next thing:
Isolate from project a bottleneck function.
Compile it by Intel C++ Compiler(It make program ...
