For questions pertaining to the measurement or improvement of code efficiency.

learn more… | top users | synonyms (18)

-5
votes
0answers
42 views

Faster Code Anyone? :)

Any expert opinions on how to make this faster???? Award is a million dollars :) float dtw( int16_t (*words)[L][Q], int16_t (*libword)[Q], int16_t libcount, char word ){ float Dist, k=0; // ...
0
votes
2answers
31 views

inverse square root python

Does any python library offer a function that implements the "fast inverse square root" algorithm described in following link? http://en.wikipedia.org/wiki/Fast_inverse_square_root Perhaps ...
1
vote
2answers
17 views

Android Share Preferences vs Intent extra in order to share data

In my Android Application I have to pass data (Variables regarding the state of the application) from an Activiy to another one. And I have to do this many times in others Activities. What's the best ...
1
vote
1answer
12 views

In golang, why does my program run slower when I use a buffered (asynchronous) channel?

I'm fairly new to golang, so I'm sure that this question is largely due to some conceptual shortcomings on my part. In golang, we can have two types of channels: unbuffered and buffered (synchronous ...
0
votes
1answer
14 views

Re-drawing the canvas or moving it?

I need to draw a line that moves from left to right over the screen. Currently I'm just calling .clearRect() everytime, and draw it again, 1 pixel further. However, another possibility would be to ...
0
votes
0answers
20 views

Javascript object group by day,month,year

I am working on application which I need to do grouping of different sets of javascript object and those will be based on month,day and year. For day I am doing like below var calculateByDay = ...
0
votes
1answer
14 views

How do x86 jump instructions check their respective flags?

As I understand, conditional jumps check the status of a flag set after the CMP instruction. For example: CMP AX,DX ; Set compare flags JGE DONE ; Go to DONE label if AX >= DX ... ...
0
votes
1answer
18 views

How to find related pages without querying inside a loop?

I'm having an issue with a site I'm programming. Things are a bit slow on a site section where I have pages and child pages. I've got a lot of mySQL queries specifically at this section, there are ...
1
vote
1answer
36 views

Performance breakdown for Rails app

I have a Rails model that has dozens of methods calling each other as follow: class MyModel def function1 end ... def functionN end def summary function1 ... functionN end end I ...
0
votes
0answers
31 views

Does using interface in android app hurts app performance

In one presentation deck of Reto Meier I read, his suggestion to prefer virtual methods over interface but there were no more explanation. Apart from the runtime overhead is there anything else which ...
-1
votes
1answer
22 views

Returning personalized data

I'm building an app that gives the user personalized news based on their interest. The articles contain entities(e.g, Obama, Romney, USA) and a category (eg., Politics) and the user can vote up/down ...
0
votes
5answers
62 views

Does using Else statements inside a loop incur a performance hit?

I'm writing a Monte Carlo simulation in c# and I'm trying to make sure that I write code which is as efficient as possible---I'm running billions of loops and things are getting slow. I have a ...
7
votes
2answers
80 views

Monitor non-heap memory usage of a JVM

We usually deal with OutOfMemoryError problems because of heap or permgen size configuration problem. But all the JVM memory is not permgen or heap. As far as I understand, it can also be related to ...
1
vote
1answer
40 views

Best way to concatenate strings in javascript?

In JavaScript, I have a loop that has many iterations, and in each iteration, I am creating a huge string with many += operators. Is there a more efficient way to create a string? I was thinking about ...
1
vote
2answers
62 views

Check string for a given alphabet

I need to check if a string (word, no whitespaces) has any letters of a given alphabet. String A: apple String B: bed Alphabet: a b c d e f I want to compare efficiently the string with the ...
-1
votes
5answers
122 views

Make python code run faster [closed]

I have the following code: for stepi in range(0, nsteps): #number of steps (each step contains a number of frames) stepName = odb.steps.values()[stepi].name #step name for framei in range(0, ...
4
votes
5answers
112 views

Function pointer runs faster than inline function. Why?

I ran a benchmark of mine on my computer (Intel i3-3220 @ 3.3GHz, Fedora 18), and got very unexpected results. A function pointer was actually a bit faster than an inline function. Code: #include ...
1
vote
0answers
33 views

High Performance WPF Datagrid

My issue in a nutshell : we are currently using in our project the standard WPF dataGrid, which comes with WPF .NET4 and above. Unfortunately for us, the performances are horrible for the scale of ...
1
vote
0answers
31 views

C# load xlsx file performance bad

I have a question regarding Excel (Xlsx) files loading in C#. I have implemented Excel loading with NPOI 2.0 but the performance was quite bad (15 to 25 seconds loading time with 10000 rows and 60 ...
0
votes
1answer
19 views

efficiently loading jquery and javascript files in django templates

In one of my django projects i am using lots of custom jquery scripts and lots of open source jquery plugins. Now if i load all the jquery scripts in my base template, I will be loading a lot of ...
0
votes
0answers
33 views

Does Rapidly Calling A Method With Local Variables Eat CPU/Memory?

Say I have a method that defines a few objects and variable and initializes them. Would a timer or similar that loops through the method every half second or so eat up memory with the objects and ...
-1
votes
3answers
63 views

Is this more efficient than Sieve of Eratosthenes? [closed]

I wrote a code in Python 2.7 for creating list of prime numbers. The code is def primes_list(num): ans = [2] for i in range(3, num, 2): for j in ans: if i % j == 0: ...
0
votes
0answers
22 views

MySQL - Analyze Query

This is a following question regarding: Original question The scenario: One query with FULL Text Search One query with Like %something% Over 11 thousand records Goal: - Analyse the explain of ...
0
votes
0answers
14 views

CPU intensive and slow XML parsing in Java 7 due to Xalan issue in SAX2DOM

We upgraded from Java 6 to Java 7 and suddenly see a significant performance issue in our application related to XML parsing. Almost all the time when I do the tread dump, I can see the following near ...
1
vote
1answer
48 views

Compare two lists in python and print the output

Hi I have a list of lists and I need to compare a value of each list with another one extracted from an XML file. The structure is similar to this: [('example', '123', 'foo', 'bar'), ('example2', ...
0
votes
0answers
8 views

JAVA Smart Card client authentication - slow “init keystore”

I'm developing an application that requires client authentication through smart-card. The client performs a mutual SSL authentication using the smart-card. There's an efficiency issue: the client ...
0
votes
2answers
17 views

Tortoise SVN update slow on the solution node but not on projects nodes

I am having a little problem with tortoise SVN: in Visual Studio 2010, when updating my solution to the latest version (right click on the top solution node), it takes 2 minutes. However, if I select ...
0
votes
1answer
31 views

My Custom ListView is too laggy

I'm making a file manager. It's UI is similar to Root Explorer's UI. But I added Root Access to my file manager, then my custom listview is very laggy. I searched a lot, but I couldn't fix it yet. ...
0
votes
0answers
18 views

MIPS count for throughput?

I was reading this question about FLOPS and I agree with all that, but then how should we measure the performance of a program that does not contain floats? Should we go for MIPS (million instructions ...
0
votes
1answer
13 views

detect the need of ActiveRecord eager load

Is there any tool/automation which will identify the need of ActiveRecord eager load and warn the same. Can any fix to ActiveRecord fix it?
3
votes
3answers
54 views

Java Generics : Type Inference Performance

I was wondering what the performance penalty is for generic type inference in Java 7. Is the "generics method type inference" cost (i.e., this) different from the "generics assignment type inference" ...
1
vote
0answers
31 views

Compare-Object Powershell performance and Operation VS Loop

I was looking at this question where the OP wanted to know how to compare items in two arrays without looping through each array. The command given was: $array3 = @(Compare-Object $array1 $array2 | ...
-1
votes
0answers
9 views

Very New CentOS 5 installation has suddenly slowed down [closed]

I have just installed CentOS 5.9 on a machine. At first, bootup and GUI response times were very fast (since it is a new computer). However, after doing only very few etups on it, the bootup and ...
1
vote
1answer
46 views

Time efficiency of Power operation?

I was just wondering about power operations and their time efficiency. Since a power operation is effectively: x^n = x*x*x...[n times] Does that mean calculation of x^n takes approximately O(n) ...
1
vote
0answers
65 views

How to reduce the cache miss of a computation-intensive program

I wrote a computation-intensive program, and I profiled it with cachegrind, which showed the data cache miss may be the main bottleneck. I adjust(decrease the size of the computation unit to the CPU ...
1
vote
2answers
33 views

Populating a MySQL database from a DB2 database

I currently have a script for populating a MySQL database from a DB2 server. It works, but it seems to be inserting the rows into MySQL at an extremely slow rate. The server process is executing at ...
0
votes
1answer
29 views

How to speed up magento 1.7.0.2 [duplicate]

I need help and advice on how to improve my magento 1.7.0.2 website perfomance as it seems to take a while to load. I need any help on how to make it load faster. Thanks.
0
votes
3answers
28 views

Why is ActiveRecord destroy_all taking so long?

I have a simple rails app with articles and comments running on MySQL 5.5, Ruby 1.9.3 and rails 3.2.12: class Article < ActiveRecord::Base ...
0
votes
0answers
25 views

USB packet streaming input+output performance poor, advice needed please

I'm looking for some advice on what methods could be used to optimize USB streaming performance. This is a bare-metal embedded software application built on top of a bare-metal USB engine. Thanks in ...
0
votes
1answer
62 views

Position sticky

I know it's great that web developers can accomplish things like this now without js: .sticky { position: -webkit-sticky; position: -moz-sticky; position: -ms-sticky; position: -o-sticky; ...
4
votes
1answer
58 views

top-N query doing too much work in spite of STOPKEY optimization

This is going to be long, so here's a quick summary to draw you in: my top-N query with COUNT STOPKEY and ORDER BY STOPKEY in its plan is still slow for no good reason. Now, the details. It starts ...
0
votes
2answers
32 views

Performant intersection algorithm for Bounding Box with a Line Segment emanating from its center point

There are many close, helpful answers to similar questions listed on stackoverflow, however i have not found any yet that match my particular case. I need a performance efficient algorithm to ...
0
votes
0answers
28 views

Speed and direction of drag and drop

I'm working on a Drag and Drop code, so far it works fine, but I need it to be able to recognize and act based on the speed and direction of the finger swipe (keep moving even if finger is already ...
-1
votes
0answers
50 views

query with low cost taking too much time [closed]

why my query is taking too much time ( 30 - 60 minutes ) to execute if the cost of the query is very low ( 209 ) Here is the image of the Current Statement Tks! Isslerman
0
votes
3answers
37 views

Thread safe and “Collection was mutated while being enumerated”

I have a class "Ad" where I set a static variable inside my Ad.m : static NSDictionary *citiesDict = nil; // class variable and in the same file I have implemented a class method that basically ...
1
vote
1answer
35 views

Most efficient way to update database

I have a table that is auto-updating from time to time (say daily). All updated fields are of type TEXT, and might have lots of data. What I definitely know is that the data will not change a lot. ...
1
vote
3answers
69 views

java full gc taking too long

I have a Java client which consumes a large amount of data from a server. If the client does not keep up with the data stream at a fast enough rate, the server disconnects the socket connection. My ...
0
votes
1answer
61 views

Performance - order by in MySQL or in PHP

I know this has been asked before at least in this thread: is php sort better than mysql "order by"? However, I'm still not sure about the right option here since the performance on doing ...
16
votes
3answers
197 views

Performance: Pure CSS vs jQuery

I've seen a number of code comparisons between pure CSS and the equivalent jQuery. But I'm looking for details about why pure CSS is definitively faster than jQuery. Here's are some of the reasons ...
4
votes
5answers
150 views

PHP: Fastest way to handle undefined array key

in a very tight loop I need to access tenthousands of values in an array containing millions of elements. The key can be undefinied: In that case it shall be legal to return NULL without any error ...

1 2 3 4 5 636