1
vote
0answers
15 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
59 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 ...
0
votes
2answers
43 views

hyperthreading and turbo boost in matrix multiply - worse performance using hyper threading

I am tunning my GEMM code and comparing with Eigen and MKL. I have a system with four physical cores. Until now I have used the default number of threads from OpenMP (eight on my system). I assumed ...
2
votes
1answer
161 views

max FLOPS for matrix multiplication Intel/AMD CPU

My formula for estimating the maximum FLOPs/s of an Intel CPU is Max SP FLOPs/s = frequencey * 4 SSE(8AVX) * 2 (MAC) * number of cores (not HW threads) Max DP FLOPs/s = 0.5 * Max SP FLOPs/s By MAC ...
0
votes
1answer
101 views

What are the typical performance bottlenecks for a computational intensive C/C++ program [closed]

What are the typical performance bottleneck for a program (C/C++) I have written some programs involves a lot of computations, however, I find by changing the computation from double to single ...
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 ...
25
votes
3answers
1k views

Strange BufferStrategy issue - Game runs fast only on Intel GPUs

I ran into a very strange problem, I tried searching for an answer for days and days. My game just got a new particle system, but was too slow to be playable. Unfortunately, BufferedImage ...
-5
votes
1answer
129 views

Operating system poor performance on the high end CPU processors. How to make the performance better? [closed]

Why the overall performance of the Windows XP SP2, Linux Mint 14 KDE, Ubuntu 12.10 are poor in the high end Intel processor i5 3rd generation? But the performance of the Windows 7 ultimate is very ...
2
votes
1answer
216 views

Any way to move 2 bytes in 32-bit x86 using MOV without causing a mode switch or cpu stall?

If I want to move 2 unsigned bytes from memory into a 32-bit register, can I do that with a MOV instruction and no mode switch? I notice that you CAN do that with the MOVSE and MOVZE instructions. ...
1
vote
2answers
88 views

fmaf weird performance

I'm experiencing an huge performance decrease using the fmaf function over the usage of * and +. I'm on two Linux machines and using g++ 4.4.3 and g++ 4.6.3 On two different machines the following ...
2
votes
1answer
97 views

Improve the performance of a sum (C version)

I am using a scientific calculation code. And I want to improve it a little bit if possible. I check the code with Amplifier. The most time consuming (heavily used) code is this: double a = 0.0; ...
3
votes
1answer
232 views

How to programmatically access performance counters in c/c++ a-la-rdtsc?

I often measure code snippets using rdtsc which gives me an idea of cycles taken by reading in the time stamp counter but I am aware that processors (in particular mine is an intel Xeon) have ...
71
votes
1answer
4k views

C code loop performance [continued]

This question continues on my question here (on the advice of Mystical): C code loop performance Continuing on my question, when i use packed instructions instead of scalar instructions the code ...
34
votes
3answers
2k views

C code loop performance

I have a multiply-add kernel inside my application and I want to increase its performance. I use an Intel Core i7-960 (3.2 GHz clock) and have already manually implemented the kernel using SSE ...
3
votes
3answers
261 views

Intel Nehalem single threaded peak performance

i am trying to reach the single threaded FP peak performance for my nehalem cpu to detect the performance anomalies of my application, but i can't seem to reach it. The clock speed is 3.2 GHz, and i ...
2
votes
4answers
1k views

Is there any ARM equivalent of Intel IPP?

Certain DSP type workloads seem to show very significant performance improvement on Intel x86 x86_64 processors, when linked against Intel IPP library. Wondering if there is something similar on ARM ...
-1
votes
3answers
206 views

Maximum run-time speed with Intel compiler on VS 10 (C++)

I am trying to optimize my code to make run as fast as possible at run-time. I compared VS with Intel by switching several optimization options but I have not noticed a remarkable difference. However, ...
11
votes
4answers
387 views

Is this clock tick suitable on Intel i3?

I adopted online to measure SSE performance. #ifndef __TIMER_H__ #define __TIMER_H__ #pragma warning (push) #pragma warning (disable : 4035) // disable no return value warning __forceinline ...
1
vote
3answers
117 views

Do I get a performance penalty when mixing SIMD instructions and multithreading

I was interested in doing a proyect about face-recognition (to make use of SIMD instructions set). But during the first semester of the current year, I learnt something about threads and I was ...
6
votes
3answers
1k views

Variance in RDTSC overhead

I'm constructing a micro-benchmark to measure performance changes as I experiment with the use of SIMD instruction intrinsics in some primitive image processing operations. However, writing useful ...
0
votes
2answers
113 views

I don't understand this performance problem [closed]

I'm running a process with grails to load info from a spreadsheet into a database. My local machine has 4GB RAM and iCore7 1.73GHZ processor The server machine has 2GB RAM and a Intel E7400 2.8GHZ ...
0
votes
4answers
973 views

Am I doing something wrong, or do Intel graphic cards suck so bad?

I have VGA compatible controller: Intel Corporation 82G33/G31 Express Integrated Graphics Controller (rev 10) on Ubuntu 10.10 Linux. I'm rendering statically one VBO per frame. This VBO has ...
1
vote
3answers
738 views

How do I generate symbol information to use with Linux version of Intel's VTune Amplifier?

I am using Intel VTune Amplifier XE 2011 to analyze the performance of my program. I want to be able to view the source code in the analysis results, and the documentation says I need to provide the ...
3
votes
4answers
1k views

Hardware Performance counter on Intel Core Duo

I have read that there are AMD processors out there that allow you to measure the number of cache hits and misses. I am wondering if also such a feature is available on Intel Core Duo machines or if ...
0
votes
1answer
170 views

.gvs (GuideView openmp statistics) file format

Is there a format of *.gvs files, used by GuideView OpenMP performance analyser? The "guide.gvs" is generated, f.e. by intel's OpenMP'ed programmes with $ export ...
4
votes
3answers
364 views

Python execution speed: laptop vs desktop

I am running a program that does simple data processing: parses text populates dictionaries calculates some functions over the resulting data The program only uses CPU, RAM, and HDD: run from ...
6
votes
5answers
3k views

Multithreading not faster than single thread (simple loop test)

I'm experimenting with some multithreading constructions, but somehow it seems that multithreading is not faster than a single thread. I narrowed it down to a very simple test with a nested loop ...
2
votes
1answer
928 views

Task Manager: CPU usage history

I bougth recently a server with 2 x X5550, they are quad (4 cores each) total 8 cores If I check the task manager it shows in the CPU usage history 16 diagrams, Should't it be 8 cause I have 2 ...
1
vote
3answers
76 views

Outliers during Performance Evaluation

I am trying to do some performance measurements using Intels RDTSC, and it is quite odd the variations I get during different testruns. In most cases my benchmark in C needs 3000000 Mio cycles, ...
0
votes
4answers
1k views

Why is my java application faster on an AMD processor?

I made the observation that my java application is running much faster when executed on an AMD processor in contrast to an Intel CPU. For example my JBoss starts in about 30 seconds on a 3 GHz AMD ...
0
votes
1answer
1k views

Core 2 x87 Floating Point Performance

I'm working with some number crunching code that, by its nature, is floating-point intensive and and just plain slow. It's research code, so it can be tailored to one architecture, and is running on ...
3
votes
3answers
3k views

Visual Studio 6 Processor Pack compatibility

I've seen that a Processor Pack is available for Visual Studio 6, however it appears to only be available for users with SP5 and I am already using SP6: In addition, the Visual C++ Processor Pack ...