Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
777 views

How does this code calculate the number of CPU cycles elapsed?

Taken from this SO thread, this piece of code calculates the number of CPU cycles elapsed running code between lines //1 and //2. $ cat cyc.c #include<stdio.h> static __inline__ unsigned long ...
4
votes
2answers
121 views

(n - Multiplication) vs (n/2 - multiplication + 2 additions) which is better?

I have a C program that has n multiplications (single multiplication with n iterations) and I found another logic that has n/2 iterations of (1 multiplication + 2 additions). I know about the ...
2
votes
3answers
1k views

Approximate Number of CPU Cycles for Various Operations

I am trying to find a reference for approximately how many CPU cycles various operations require. I don't need exact numbers (as this is going to vary between CPUs) but I'd like something relatively ...
2
votes
3answers
692 views

Limiting assembly execution number of cpu cycles

I have a project that dynamically loads in unknown assemblies implementing a specified interface. I don't know the contents or purposes of the assembly, other than it implementing my interface. I ...
2
votes
5answers
3k views

How do I obtain CPU cycle count in Win32?

In Win32, is there any way to get a unique cpu cycle count or something similar that would be uniform for multiple processes/languages/systems/etc. I'm creating some log files, but have to produce ...
1
vote
3answers
292 views

c++ practical computational complexity of <cmath> SQRT()

What is the difference in CPU cycles (or, in essence, in 'speed') between x /= y; and #include <cmath> x = sqrt(y); EDIT: I know the operations aren't equivalent, I'm just arbitrarily ...
1
vote
2answers
390 views

Java controls animation - how to make them smooth and efficient

I am programming some custom controls in Java and using animation for transitions/fades/movements. The way I am doing this is that I am starting a new thread and making adjustments to variables and ...
1
vote
5answers
531 views

Measuring CPU clocks consumed by a process

I have written a program in C. Its a program created as result of a research. I want to compute exact CPU cycles which program consumes. Exact number of cycles. Any idea how can I find that?
1
vote
3answers
77 views

I want to duplicate Folding (use extra cpu-cycles)

I want to use extra-cpu cycles to do some of my own processing, and I was wondering if someone could point me in the right direction as to how to get started on this?
1
vote
5answers
501 views

Windows utility for consuming CPU

I'm looking for a windows utility to consume CPU at a specified percentage so that I can test my app under conditions of restricted processor resources. I googled around and saw a reference to ...
1
vote
4answers
416 views

Does a one cycle instruction take one cycle, even if RAM is slow?

I am using an embedded RISC processor. There is one basic thing I have a problem figuring out. The CPU manual clearly states that the instruction ld r1, [p1] (in C: r1 = *p1) takes one cycle. Size of ...
1
vote
9answers
9k views

How to set CPU load on a Red Hat Linux box?

I have a RHEL box that I need to put under a moderate and variable amount of CPU load (50%-75%). What is the best way to go about this? Is there a program that can do this that I am not aware of? I ...
0
votes
2answers
61 views

Question about cycle counting accuracy when emulating a CPU

I am planning on creating a Sega Master System emulator over the next few months, as a hobby project in Java (I know it isn't the best language for this but I find it very comfortable to work in, and ...
0
votes
5answers
843 views

The correct way of waiting for strings to become equal

In a Swing app a method should continue only after user enters a correct answer. The correct answer is stored in a String with user answer being set by a listener to another String. So, the code is ...