Tagged Questions
2
votes
2answers
120 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 ...
1
vote
3answers
120 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 ...
5
votes
8answers
7k 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
3answers
61 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 ...
0
votes
1answer
308 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
1answer
105 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 ...
1
vote
2answers
344 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
246 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 ...
0
votes
0answers
49 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.
2
votes
2answers
650 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 ...
5
votes
3answers
599 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
4answers
827 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: ...
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.
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 ...
14
votes
3answers
11k views
How to detect android cpu speed?
I would like to detect how fast is the device on with my Android application is running?
Is there any API to do it on Android? Or do I have to benchmark it by myself?
If the device has got slow CPU ...
1
vote
1answer
311 views
Minimize the number of cross-core context switches
I was experimenting a lot with application profiling lately (using Visual Studio Performance Wizard). While working with Concurrency indicators, I've noticed the fact that when the application runs ...
1
vote
1answer
745 views
Using Python (Bash?) to get OS-level system information (CPU Speed)
I want to repeat this question using python. Reason is I have access to 10 nodes in a cluster and each node is not identical. They range in performance and I want to find which is the best computer to ...
17
votes
10answers
4k views
Is the inequality operator faster than the equality operator?
I know this is a micro-optimization, so I ask out of pure curiosity.
Logically, a microprocessor does not need to compare all the bits of both operands of an inequality operator in order to ...
6
votes
26answers
828 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 ...
1
vote
9answers
852 views
CPU Utilization
Q1. What are best practices for a writing a code that does not consume CPU but still achieve a great performance? The question is very generic. What I seek over here is to list down different ...

