Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
7answers
7k views

What is FLOP/s and is it a good measure of performance?

I've been asked to measure the performance of a fortran program that solves differential equations on a multi-CPU system. My employer insists that I measure FLOP/s (Floating operations per second) and ...
7
votes
3answers
339 views

Do RFID tags have a processor?

Do RFID tags have a "real" processor capable of simple computations? If so, what is the processing power of nowadays RFID processors?
5
votes
5answers
284 views

What counts as a flop?

Say I have a C program that in pseudoish is: For i=0 to 10 x++ a=2+x*5 next Is the number of FLOPs for this (1 [x++] + 1 [x*5] + 1 [2+(x+5))] * 10[loop], for 30 FLOPS? I am having trouble ...
4
votes
4answers
395 views

Counting Flops for a code!

This is really taking my time. I could not find a simple way to estimate FLOPS for a following code (the loop), How much FLOPS are for a single iteration of the loop: float func(float * atominfo, ...
4
votes
1answer
238 views

Gigaflops of a processor

I discovered my computer has NVIDIA CUDA Technology and I want measure the power of processing, in CPU and GPU. Instead of searching for a program to do this, I want have a deeper understanding of ...
3
votes
6answers
3k views

What's the relative speed of floating point add vs. floating point multiply

A decade or two ago, it was worthwhile to write numerical code to avoid using multiplies and divides and use addition and subtraction instead. A good example is using forward differences to evaluate ...
2
votes
10answers
734 views

FLOPS what really is a FLOP

I came from this thread: FLOPS Intel core and testing it with C (innerproduct) As I began writing simple test scripts, a few questions came into my mind. Why floating point? What is so significant ...
1
vote
1answer
1k views

Counting FLOPS/GFLOPS in program - CUDA

Already finished my application which multiplies CRS matrix and vector (SpMV) and the only thing to do now is to count FLOPS my application did. In my opinion it's really hard to estimate number of ...
1
vote
7answers
297 views

Highly concurrent multi-threaded application requires hardware

I am looking for a hardware, which must run about 256 computationally intensive real-time concurrent tasks in 24 hour mode (one multi-threaded C application). Each task takes about 40-50 MFLOPs, so ...
0
votes
1answer
153 views

FLOPS assigned to sqrt in GPU to measure performance and global efficiency

In a GPU implementation we need to estimate its performance in terms of GLOPS. The code is very basic, but my problem is how many FLOPS should I give to the operations "sqrt" or "mad", whether 1 or ...
0
votes
1answer
448 views

Measuring FLOPs of an application with the linux perf tool

I want to measure the ammount of floating point and arithmetic operations executed by some application with 'perf', the new command line interface command to the linux performance counter subsystem. ...
0
votes
1answer
403 views

how to create makefile cuda so it executed in CPU to test CPU flops

i'm trying to count the GPU and CPU FLOPS and i've got the source from http://norma.mbg.duth.gr/index.php?id=about:benchmarks:cuda_flops i renamed it to cudaflops.cu and compile it with this makefile ...
0
votes
3answers
155 views

Does the arithmetic negate count as a floating point operation?

I'm currently measuring the performance of some code in FLOPS. This code presents some arithmetic negate instructions like this one: d = -a where d and a are floating point variables. The ...