0
votes
1answer
73 views

Faster implementation for matrix excercise of Error correcting codes a 2^x eficience in C++ [closed]

I've been working on this problem and getting the solution right with an eficiency of 2^n but my problem comes that my implemented solution is currently too slow around 0,49 s is there any form to ...
1
vote
1answer
29 views

GL ES: Fragment shader optimization

Summary: I get FPS slowdown as soon as I try to tint the sprites (i.e: multiply texture with color in the fragment shader) Details: Hardware: iPod touch 4 Using 64x64 png texture containing alpha ...
2
votes
0answers
21 views

Storing data for levels in a game like RISK or Total War

I'm working on a game which is a bit like the boardgame RISK, or the campaign section of the Total War series. I currently have a working implementation of the region system, but because of bad ...
1
vote
1answer
55 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
70 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
1answer
41 views

How to optimize the following double for loop in octave?

I have the following code in octave: dist=0; for i = 1:length(x); for j = 1:length(y); v = x(i,:) - y(j,:); distvect(j) = norm(v); endfor dist = dist + ...
2
votes
2answers
77 views

A really slow UPDATE to a MySQL server

I am running a CMS, but this has nothing do to with it. I have a simple query which is: UPDATE e107_online SET `online_location` = 'http://page.com/something.php?', `online_pagecount` = 133 WHERE ...
0
votes
2answers
30 views

How do I optimize the rendering of my HTML not SQL queries?

So I am using mini-profiler and it gives me some nice stats. However, one thing I have noticed is that I have gotten a lot of the SQL calls down to a minimum and now the biggest thing is the ...
5
votes
2answers
116 views

WPF program launches super fast on one computer but super slow on another

My wpf program has a strange problem regarding the startup performance on different computer with same specs. One computer loads my program less than a second. Another computer with the same spec ...
0
votes
2answers
51 views

Quick search on huge mysql database

I need to index a huge mysql database ( 5 billions record ). I will rarely create, update or delete only some request like SELECT * FROM tbl_person WHERE name LIKE 'foo%' I have already set my ...
0
votes
0answers
43 views

More efficient way of looking out for input changes

Currently I've coded a script which does the following: Initiate a geocode on clicking on an autosuggested location OR Initiate a geocode on clicking on a search button (then submitting the form) ...
12
votes
3answers
301 views

Degrading performance when increasing number of cores

My mac is armed with 16 cores. System.out.println(Runtime.getRuntime().availableProcessors()); //16 I'm running the code below to see the effectiveness of utilizing my cores. The thread ...
3
votes
3answers
289 views

Do compilers optimize if-statements for static values in c++

I'm working on a generic library class for a collage assignment, and it is very important that the code runs as efficient as possible, that is if we can reduce an if-statement we should do it. I ...
70
votes
2answers
2k views

Why does my application spend 24% of its life doing a null check?

I've got a performance critical binary decision tree, and I'd like to focus this question on a single line of code. The code for the binary tree iterator is below with the results from running ...
3
votes
2answers
118 views

ARM Assembly: Absolute Value Function: Are two or three lines faster?

In my embedded systems class, we were asked to re-code the given C-function AbsVal into ARM Assembly. We were told that the best we could do was 3-lines. I was determined to find a 2-line solution ...
-8
votes
1answer
38 views

optimizing duplicate recored scenario [closed]

I have a requirement: i have to store a record in db when user submits request. User can submit same request multiple times. When user submits request first time i have to insert record in db and ...
0
votes
1answer
34 views

Optimizing setCellValueExplicit() in PHPExcel

I am dealing with 700 rows of data in my excel. And I add on a column this entry: foreach($data as $k => $v){ $users ->getCell('A'.$k)->setValue($v['Username']); ...
-1
votes
2answers
35 views

Should I split large table into smaller identical ones in this case?

Imagine that you have a multisite script, e.g. having multiple instances if the same thing (like forum hosting). If using MySQL is it better to create a new set of tables for each site or have one ...
0
votes
0answers
16 views

libjpeg-turbo - Optimize for Speed (General/Android)

I am looking for ways to speed up the encode process by libjpeg-turbo beyond SIMD. One option I came across while reading the headers is to set dct_method = JDCT_IFAST. Are there any other tuning ...
1
vote
0answers
23 views

Using website logo as data uri or linked image?

What is better for site performance, to have logo as data uri or as linked image? Logo as data uri will save HTTP request, but it will take more space and it will be loaded every time, while logo as ...
0
votes
1answer
66 views

Efficiency of Calculating with Different Data Types?

I have a 1.2 billion row data set that involves columns of high precision floating point/decimal numbers. The requirements are that we have accuracy out to about 12 decimal places. I do not need to ...
1
vote
5answers
89 views

Can I optimize this jQuery 'toggle' image source function?

I have this functionality witch i am not sure is the best. It is actually working. I'm asking because i couldn't find any 'copy-paste' solution over the net so i wrote this. There no need to suggest ...
5
votes
2answers
186 views

C# WPF Very slow application launch

I've wrote a simple .net WPF application(contains only 2 small windows), but its launch is too slow - about 10-20 seconds! Profiler says: Main->RunInternal(56%) ...
10
votes
4answers
456 views

How to speed up Levenshtein distance calculation

I am trying to run a simulation to test the average Levenshtein distance between random binary strings. My program is in python but I am using this C extension. The function that is relevant and ...
1
vote
1answer
103 views

Working with very large Javascript array or objects

Currently I'm working on a script where I've got to store more than 1,250,000 objects. I'm using the push() function in a jQuery each() loop like this: words.push({ "page": pagenumber, "content": ...
4
votes
2answers
84 views

Strategy for mass storage of small files

What is the good strategy for mass storage for millions of small files (~50 KB on average) with auto-pruning of files older than 20 minutes? I need to write and access them from the web server. I am ...
9
votes
3answers
164 views

Inexplicable expense related to getting data out of a function in optimized and timed C++ code

I have written optimized code for an algorithm that computes a vector of quantities. I have timed it before and after various attempts at getting the data computed in the function out of the function. ...
1
vote
1answer
72 views

MySQL: ORDER BY or GROUP BY slow?

I have a table in a MySQL DB where certain events are logged. I now want to know which event occurred the least in the last hour for a certain entity domain: SELECT entity_id, COUNT(entity_id) number ...
0
votes
2answers
93 views

How to reduce 5 sec to 1 sec for the cost of python list comprehension with million item [closed]

Now our code have 3,000,000 id stored in set, the format is string, I try to convert it to int using list comprehension. But it cost 5 sec, how can I reduce the cost of converting string to int for ...
0
votes
1answer
100 views

Large DOM Tree Slowing Down jQuery Click Events

Problem Solved! This problem (specific to my configuration) has been solved by Dhoelzgen and Matthew Blancarte as per the accepted answer. The jist of the problem was that I was binding 'click' ...
2
votes
2answers
53 views

What can I do to speed this slow query up?

We have a massive, multi-table Sybase query we call the get_safari_exploration_data query, that fetches all sorts of info related to explorers going on a safari, and all the animals they encounter. ...
2
votes
1answer
37 views

Wordpress Resource Usage

I am trying to optimize a Wordpress at his best. What I have done up to now : WP-Cron disabled, called through a cron-tab query (every 10 min) Disabled all plugins that aren't needed Installed / ...
1
vote
1answer
36 views

How code profilers can be incorrect

I've read and experienced performance profilers be incorrect some times. Sometimes they generate incorrect run times for certain functions, and display call graphs that don't really exist. I'm ...
3
votes
3answers
94 views

compare chars for equality without branching

On a previous question where I wanted to optimize this function: static lvh_distance levenshtein_distance( const std::string & s1, const std::string & s2 ) { const size_t len1 = ...
-2
votes
1answer
58 views

Speed of simplifying A*

I've been trying to optimize my own implementation of the A* search algorithm for a while, and ended up with changing the actual algorithmic part a bit. I've been wondering if this approach would be ...
0
votes
2answers
39 views

Checking if window size has changes and performance/optimalization

today I'm implementing slider plugin and I have one question about it: I want to make it responsive, but to achive that (depending on my current implementation) I should add another function which ...
43
votes
7answers
3k views

Ackermann very inefficient with Haskell/GHC

I try computing Ackermann(4,1) and there's a big difference in performance between different languages/compilers. Below are results on my Core i7 3820QM, 16G, Ubuntu 12.10 64bit, C: 1.6s, gcc -O3 ...
21
votes
8answers
520 views

Is it a sensible optimization to check whether a variable holds a specific value before writing that value?

if (var != X) var = X; Is it sensible or not? Will the compiler always optimize-out the if statement? Are there any use cases that would benefit from the if statement? What if var is a volatile ...
5
votes
3answers
88 views

Why is this method a hot spot?

I'm writing a (simple!) linear algebra library. In the implementation of matrix multiplication, a VisualVM performance sample is telling me that the algorithm spends 85% of its time ("self time", ...
3
votes
6answers
110 views

Running out of memory always on the same line

First of all, I am not looking for an answer saying "Check your PHP memory limit" or "You need to add more memory" or these kind of stuff ... I am on a dedicated machine, with 8GB of RAMS; 512MB of it ...
0
votes
0answers
57 views

Optimize search-as-you-type performance on a ExtJS treeview

I have an ExtJS treeview bound to a store which has large number (~1000) of nodes (having Checkbox attached with each of them to select them) and 3 levels of nesting to be precise. And, I have a ...
0
votes
2answers
80 views

Which one is efficient in terms of performance - Object of AppDelegate or Macro of AppDelegate?

We can use object of AppDelegate by these ways say... 1) AppDelegate *app; // Globally declared app = (AppDelegate*)[[UIApplication sharedApplication] delegate]; //Use this any where in app 2) ...
0
votes
2answers
75 views

Better memory management for GSL gsl_vector

When I write linear algebra programs in C++, I use the Armadillo library. It is based on templates, which provide me a way to define vectors of any length that don't necessarily require additional ...
2
votes
4answers
307 views

The hunt for the fastest Hamming Distance C implementation [duplicate]

I want to find how many different characters two strings of equal length have. I have found that xoring algorithms are considered to be the fastest, but they return distance expressed in bits. I want ...
21
votes
8answers
853 views

Are the Optimization Keywords in C and C++ Reasonable?

So we've all heard the don't-use-register line, the reasoning being that trying to out-optimize a compiler is a fool's errand. register, from what I know, doesn't actually state anything about CPU ...
1
vote
1answer
55 views

Optimizing my query on two very large tables

I have 2 tables 1st table name cjfeeds another name is linkshare my 2 tables contain upto 40 Million records. so my select query takes 12 to 15 minutes for fetching my single record . Here's the ...
18
votes
2answers
291 views

Fast copy of `std::vector<std::uint8_t>`

I have an std::vector<std::uint8_t>, which needs to be duplicated. This is done simply by calling the copy constructor. My profiling results show, that the Microsoft Visual C++ (msvc100) ...
1
vote
0answers
39 views

Efficiency: Selecting object not in DOM with jQuery

I'm sure this is an oft asked question; I just can't seem to word it in a way to to find said answer. Common practice says to minimize the number of CSS and JS files you load. However, I always made ...
0
votes
1answer
26 views

Java: Optimizing file delimiters for the read speed of subdocuments

Say I have a file that has many subdocuments in it //file.txt BEGIN_FILE_1 loremipsumloremipsumloremipsum loremipsumloremipsum END_FILE_1 BEGIN_FILE_2 cupcakeipsum cupcakeipsumcupcakeipsum ...
10
votes
3answers
432 views

Is there a performace benefit in using fixed-length lists in Dart?

I was wondering if there's a performance (CPU, Memory) benefit in using fixed-length lists instead of dynamic-length lists. I think in most languages fixed-length list is just an array of pointers ...

1 2 3 4 5 30