The cpu-speed tag has no wiki summary.
-2
votes
0answers
47 views
Smartphones: Quad- core Qualcomm 600 1.9 Ghz vs. Quad-core Qualcomm 600 1.7 Ghz, is there a noticeable difference in frequency speed vs. efficiency? [closed]
In comparing two competing smartphones, is this difference noticeable? Quad- core Qualcomm 600 1.9 Ghz vs. Quad-core Qualcomm 600 1.7 Ghz. Which has a higher efficiency or can you tell based solely ...
5
votes
5answers
2k views
Detect current CPU Clock Speed Programmatically on OS X?
I just bought a nifty MBA 13" Core i7. I'm told the CPU speed varies automatically, and pretty wildly, too. I'd really like to be able to monitor this with a simple app.
Are there any Cocoa or C ...
1
vote
2answers
72 views
How to determine maximum speed of cpu in linux (MIPS architecture) [closed]
i want to determine maximum speed of cpu in MHz with linux operating system and MIPS hardware. With command cat /proc/cpuinfo it results in BogoMIPS=1000.00. And
`cat ...
1
vote
1answer
125 views
Clock frequency of the CPU & measuring time elapses
I wanted to know how much time "1ms sleep" takes.
Ran this quest in kernel module:
rdtscl(aj);
msleep(1);
rdtscl(b);
printk(KERN_INFO "Difference = %lu", (b-a));// Number of clock cycles consumed
...
0
votes
1answer
216 views
MIPS Speedup Calculation
5 R-type instructions are to be executed on our original 5-stage (scalar) pipelined processor. There are no dependencies of any kind among the instructions.
If this same instruction sequence is ...
2
votes
2answers
81 views
Does multi-threading improve performance? How?
I hear everyone talking about how multi-threading can improve performance. I don't believe this, unless there is something I'm missing. If I have an array of 100 elements and traversing it takes 6 ...
0
votes
0answers
93 views
Calculating effective ultilisation of processor when using round robin scheduling [closed]
Calculating effective utilization of processor when using round robin scheduling when time quantum 30ms and context switch is 70ms.
I'm not sure how to calculate the utilization of a processor using ...
2
votes
0answers
112 views
Disable Speedstep Feature [closed]
I had a situation with some code where it's come to my attention that the speed-stepping feature on modern processors might be an issue. While I guess I could have created a thread putting load on ...
1
vote
3answers
115 views
Java code speed improvement
Hi all may such a code cause lag of process?
while(true)
if(!connected) break;
As we see it checks for condition all the time. Would it be faster if I set small sleep in each iteration.
The code ...
4
votes
8answers
4k views
Java: int[] array vs int array[] [duplicate]
Possible Duplicate:
Difference between int[] array and int array[]
is there a difference between
int[] array = new int[10];
and
int array[] = new int[10];
both do work and the result ...
0
votes
2answers
113 views
How to calculate and print clock_t time roughly
I am timing how long it takes to do three different types of searches, sequential, recursive binary, and iterative binary. I have those in place, and it does iterate through and finish the search. ...
2
votes
1answer
400 views
Updating CPU frequency on textView (howto?)
private String ReadCPUMhz()
{
ProcessBuilder cmd;
String result="";
int resultshow = 0;
try{
String[] args = {"/system/bin/cat", ...
2
votes
1answer
163 views
ATLAS install: Really need to get past CPU throttle check
ATLAS 3.10.1 will not install on my organization's CentOS 6.x platform because it detects CPU throttling. In older versions of the package, there was a configure flag to turn the throttle check off ...
0
votes
0answers
275 views
Calculating Floating point Operations Per Second(FLOPS) and Integer Operations Per Second(IOPS)
I am trying to learn some basic benchmarking. I have a loop in my Java program like,
float a=6.5f;
int b=3;
for(long j=0; j<999999999; j++){
var = a*b+(a/b);
}//end of ...
0
votes
3answers
59 views
program speed/unnecessary double-counting
I am trying to find the number of pairs in a list of numbers with a specific difference. Say, with the list
1 2 3 4 5
and the difference target '2', I would want to print the number '3' because ...
1
vote
1answer
99 views
Whetstone CPU performance algorithm
I'm going to develop an application for android that uses the whetstone algorithm to measure CPU performance. I've chosen the Whetstone algorithm because my research tells me it's an appropriate way ...
0
votes
1answer
288 views
How do I reduce CPU and memory usage by a python program?
I have a python program that uses a lot of my CPU's resources. While it is fine on my regular PC, I'm afraid it might be too much to handle for my Raspberry Pi. Speed is not an issue. I don't care if ...
1
vote
2answers
182 views
Set core speed - linux
Architecture:
**AMD** Opteron quad-core using 2 CPUs --- Numa system
Processor : x86_64 Operating System: GNU/Linux
I am trying to set the core freq to 2.2GHz(that being the max) on just one core ...
1
vote
2answers
1k views
How to compute the theoretical peak performance of CPU
Here is my cat /proc/cpuinfo output:
...
processor : 15
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU ...
5
votes
3answers
504 views
How to profile django application with respect to execution time?
My Django application is insanely slow, I want to figure out what is taking time :
I tried Django-debug-toolbar but was unable to find a panel that can give me the break-up of the load time.
My ...
0
votes
0answers
130 views
Interview task - Optimizing CPU power consumption [closed]
Interview question I wasn't sure how to solve:
There are 4 video channels and 2 cores (in one processor), One
core speed is 100-600 Mhz, all cores must be in the same speed. The
video stream ...
0
votes
0answers
170 views
CPU frequency scaling on android device
What could be the reason that scaling_available_frequencies is missing on my Samsung galaxy S3 device? The installed kernel is Siyah kernel.
Regards
Shahzad
1
vote
2answers
741 views
What performance improvements can I make to Symfony + Doctrine?
I've recently built a reasonably complex database application for a university handling almost 200 tables. Some tables can (e.g. Publications) hold 30 or more fields and store 10 one-to-one FK ...
0
votes
1answer
117 views
Java 32 Bits with PAE Kernel + SO 32 bits and CPF 64 Bits
I'm facing a problem in my application using JBOSS 4.2.3GA. We have approximately 20 users online and is usual the cpu run to 95%, 99%. We search for problem in application using jmeter and other ...
1
vote
2answers
314 views
C++ vs Python server side performance
I've to develop a server that has to make a lot of connections to receive and send small files. The question is if the increment of performance with C++ worth the time to spend on develop the code or ...
0
votes
2answers
243 views
MapReduce for all parallel problems?
I understand that MapReduce is great for solving parallel problems on a huge data set. However, are there any examples of problems that while in some sense parallellizable, are not a good fit for ...
4
votes
6answers
4k views
Can we benchmark how fast CUDA or OpenCL is compared to CPU performance?
How much faster can an algorithm on CUDA or OpenCL code run compared to a general single processor core? (considering the algorithm is written and optimized for both the CPU and GPU target).
I know ...
0
votes
0answers
47 views
How much processing power needed to measure bandwidth of 100 Mbps
I am planning for a device to test the IP bandwidth, packet loss and jitter. To measure a bandwidth of 100 mbps how much processor speed is needed? I want to use the iperf on my device.
10
votes
1answer
992 views
How has CPU architecture evolution affected virtual function call performance?
Years ago I was learning about x86 assembler, CPU pipelining, cache misses, branch prediction, and all that jazz.
It was a tale of two halves. I read about all the wonderful advantages of the lengthy ...
3
votes
2answers
1k views
How can I programmatically find the CPU frequency with C
I'm trying to find out if there is anyway to get an idea of the CPU frequency of the system my C code is running on.
To clarify, I'm looking for an abstract solution, (one that will not be tied to a ...
0
votes
1answer
184 views
Constant animation speed, variable frame rate
Would you, dear all, suggest me best practices to get constant animation speed not depending on computer's real speed? Frames may be skipped.
2
votes
2answers
589 views
bogoMIPS value is changing
I have been reading the cpuinfo file on my Samsung Galaxy (sgh-i897) to retrive the bogoMIPS value. And just now learning how to interpret such information.
Initially I did this under the main ...
0
votes
4answers
774 views
Visual Studio runs slow at netbook 1.5Gz and 2Gb RAM [closed]
I have an HP netbook with the following parameters:
Model: HP Mini 110-3500
Processor: Intel(R) Atom(TM) CPU N550 @ 1.50GHz
Installed memory (RAM): 2,0 Gb
System type: 32-bit Operating System
System: ...
-4
votes
1answer
294 views
Intel Core i5 speed [closed]
I am planning to buy one laptop for software development.
I narrowed down to go with Dell Inspiron 14
The site is saying it has clock speed of 3.1 GHZ. But from Dell India call center i came to know ...
5
votes
3answers
733 views
Measure CPU frequency (x86 / x64)
I'm looking for some kind of a library that gives me accurate CPU frequency values periodically on both Intel and AMD processors, on 32-bit and 64-bit Windows.
The purpose of this is to accuratly ...
2
votes
1answer
153 views
Find out the system frequency in wince 7
I have a system that runs on wince 7.
I have encountered a problem in which the system slows down after a while.
How can I find out the system frequency?
1
vote
1answer
285 views
finding the maximum cpu speed [closed]
the cpu speed reported by /proc/cpuinfo is the current cpu speed but not the max capacity of the cpu. dmidecode is suppose to find the max speed also , but the problem is on virtual machines on VMware ...
12
votes
4answers
4k views
Finding out the CPU clock frequency (per core, per processor)
Programs like CPUz are very good at giving in depth information about the system (bus speed, memory timings, etc.)
However, is there a programmatic way of calculating the per core (and per processor, ...
6
votes
26answers
827 views
Will optimizing code become unnecessary?
If Moore's Law holds true, and CPUs/GPUs become increasingly fast, will software (and, by association, you software developers) still push the boundaries to the extent that you still need to optimize ...
3
votes
1answer
2k views
I need to call accurate CPU usage of a single process
The Trick is I also need to be able to do it on multi core machines. My education in C# is a tad broken. I have managed the following code. Can anyone help me out? Iv tried using the "_Total" flag and ...
3
votes
4answers
369 views
Would writing HTML with PHP's echo vs writing plain HTML cause any differences in performance?
Which is better in terms of CPU optimization for a web server? Writing plain HTML and inserting PHP code here and there?
<script ...
0
votes
2answers
569 views
measure time for popcount function in c++
i am interested how to put it in loop so that get real time which is taken by cpu to execute each different operation
#include<iostream>
#include<cstdlib>
#include<time.h>
using ...
0
votes
1answer
74 views
Will a larger binary with parts of code that are not executed at the time, affect use of level 2 CPU memory?
It appears that CPUs run significantly faster if their L2 is not filled. Will a programmer be better off to code something that will eventually be smaller in binary, even if parts of that code are not ...
0
votes
3answers
2k views
Does quad-core perform substantially better than a dual-core for web development?
First, I could not ask this on most hardware forums, because they are mostly populated by
gamers. Additionally, it is difficult to get an opinion from sysadmins, because they have a fairly different ...
6
votes
2answers
2k views
How to keep CPU from 'sleeping' when screen is turned off in Android?
I have an application in which I am sending network data over WiFI. Everything is fine until I turn the display off or the device goes to 'sleep'. I'm already locking the WiFi however, it seems to be ...
2
votes
3answers
2k views
How to detect CPU speed on Windows 64bit?
I've found the following code from here "http://www.boyet.com/Articles/CodeFromInternet.html".
It returns the speed of the CPU in GHz but works only on 32bit Windows.
using System;
using ...
10
votes
4answers
1k views
Measure CPU speed by counting assembly instructions
Edit: My original example had a silly mistake. After fixing it I still get weird results, though.
In my naive attempt to measure my CPU speed the "brute-force" way, I made the program below:
...
4
votes
9answers
1k views
Run my application in a simulated low memory, slow CPU environment
I want to stress-test my application this way, because it seems to be failing in some very old client machines.
At first I read a bit about QEmu and thought about hardware emulation, but it seems a ...
1
vote
1answer
824 views
Clock Speed what does it mean? [closed]
lets say i have a dual core having a speed of 2.7. Does the 2.7 stands for the sum of the speed of each core, or the speed of each individual core?
1
vote
3answers
653 views
retrieving cpu speed and remove } from output
I'm trying to get cpu speed.
This is what I've done so far
$cpu = [string](get-wmiobject Win32_Processor | select name)
$($cpu.split("@")[-1]).trim()
and my output is
2.40GHz}
How can I remove ...


