For questions pertaining to the measurement or improvement of code efficiency.
1
vote
0answers
7 views
Performance prediction Mandelbrot set CUDA
I just finished the implementation of the Mandelbrot set in CUDA, probably not the most efficient but good enough to learn parallel programming in GPUs.
__global__
void ...
1
vote
1answer
50 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
1answer
9 views
Apache Server Slots, Memory, KeepAlive, PHP and SSL - how to speed up
on a Debian web server (VPS) with good CPU, 6 GB RAM, and fast backbone Internet connection, I run a PHP application. PHP runs in "prefork" mode (incl. APC opcache), because whenever you search for ...
1
vote
0answers
19 views
What should be the timeout for window resize dragging?
I have this code that fires when the user has probably stopped resizing the window (by dragging). It uses a 100ms timeout to not fire at every single window resize event. I'd like to find the balance ...
0
votes
2answers
23 views
Getting an object property multiple times in a row vs getting it once and storing in a variable. Will the compiler optimize it anyway?
Is it better to store an object property when you access it multiple times in a row? Below is a rather silly example of getting an object property multiple times in a row and two ways of dealing with ...
2
votes
4answers
47 views
Improving perfomance for randomly created panels
So what I'm trying to do is create like a random image from panels of different colors. The user can choose how many panels (i.e. pixels) he wants to have and the number of different colors and then ...
-2
votes
1answer
28 views
Best performance practice for ID's exclusion in SQL queries [closed]
Which method gain more performance:
1. Query exclusion
$exlusionIds = array(1,2,3,4,5);
$sth = $dbh->prepare("
SELECT article_id, title, description
FROM articles
WHERE active = 1 ...
0
votes
4answers
60 views
Creating an object of a pre-implemented java class is much faster than creating a custom object?
class DummyInteger {
private int i;
public DummyInteger(int i) {
this.i = i;
}
public int getI() {
return i;
}
}
long start = System.nanoTime();
DummyInteger n = ...
0
votes
0answers
8 views
Extremely slow performance of element.addEventListener(“touchstart”)
On Chrome something is seriously wrong with the performance of element.addEventListener("touchstart") in my system, in some cases reaching 100ms for a single call.
r00122 listen touchstart: 60.000ms
...
5
votes
2answers
67 views
Fastest way to extract only certain fields from comma separated string in Python
Say I have a string containing data from a DB or spreadsheet in comma separated format.
For example:
data = "hello,how,are,you,232.3354,good morning"
Assume that there are maybe 200 fields in ...
0
votes
1answer
14 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 ...
0
votes
1answer
21 views
as3 if remove Parent Do all children get removed too?
I am loading a mc called Spiri into a mc called Box. Later I want to remove both from memory usage and off screen. I have the off screen in a tween not shown here.
If I use removeChild(box); will it ...
6
votes
2answers
75 views
why isnt numpy.mean multithreaded?
I've been looking for ways to easily multithread some of my simple analysis code since I had noticed numpy it was only using one core, despite the fact that it is supposed to be multithreaded.
I ...
2
votes
1answer
22 views
AS3 - add different event listeners to children or one to the parent?
I have a MC (a button bar) with 4 buttons. is it more efficient to add separate event listeners to each button or to add a single event listener to the parent and use e.target.name to detect which one ...
3
votes
4answers
78 views
Very slow assignment to vector when unnamed (becoming named) in R
my code hit a performance snag that I could reproduce in this snippet
rm (z)
z = c()
system.time({z[as.character(1:10^5)] = T})
user system elapsed
48.716 0.023 48.738
I tried to pre-allocate ...
0
votes
0answers
17 views
Xaml image control stopping working after a while
I'm creating an image viewer software in C#, and I'm using an embedded Xaml image control to display the images because it's MUCH faster than rendering the images to winForm pictureBoxes.
The images ...
0
votes
0answers
7 views
Jboss 4.2.2.GA Web Console
Is there a precise description of the monitoring values provided by the JBoss web-console? I am trying to understand those numbers are and how/when/where they are measured.
For instance, in the ...
0
votes
2answers
31 views
Scraping much data from different URLs with simple_html_dom.php
i basically want to do exactly something like this: Simple Html DOM Caching
i got everything to work so far, but now i'm getting the following error because i scrape many sites (6 at the moment, i ...
0
votes
0answers
19 views
Immutable Dictionary Vs Dictionary Vs C5 Vs F# - performance
Our application uses plenty of dictionaries which have multi level lookup that are not frequently changing. We are investigating at converting some of the critical code that does a lot of lookup using ...
0
votes
1answer
48 views
Looking for a more efficient way of writing some basic if else jQuery script
I feel like my script is really redundant and could be written allot more efficiently. If anyone has a better way of doing this please share.
Basically i am showing and hiding a div depending on what ...
2
votes
1answer
98 views
Why is my C# program faster in a profiler?
I have a relatively large system (~25000 lines so far) for monitoring radio-related devices. It shows graphs and such using latest version of ZedGraph.
The program is coded using C# on VS2010 with ...
0
votes
1answer
29 views
Jquery form submission not being triggered
I have been trying to design a javascript for over a week (I'm new to JS) which geocodes a location when a search button is hit and the submits the form if successful. To make it to slightly more ...
0
votes
2answers
14 views
Downside(s) of using HTTPs only on parts of the site
I am managing a shop that forces HTTPs on the register/login/account/checkout pages, but that's it, and I've been trying to convince people to force HTTPs on everything.
I know that it's recommended ...
-1
votes
0answers
9 views
Phone internal memory vs sd card mb/s for large files
I have a Galaxy Nexus with only 32gb and constantly have to delete old stuff (pictures) to add new items (some pics are 300 MB each). I am considering upgrading to the Galaxy S4, but it only currently ...
-1
votes
0answers
20 views
Calculating an appropriate Ramp/Pacing time for Performance Test
I'm trying to run some performance tests on a web application but I am struggling a little with how long to set the ramp up period.
I'm running tests, that will execute a specific series of requests, ...
1
vote
2answers
62 views
MySQL WHERE IN (SELECT id from …) fastest approach?
I am using a query like this:
SELECT * FROM videos WHERE id IN (SELECT video_id FROM videos_tags WHERE tag_id = 2)
to search videos with the same tags, but with about 8'000 videos this query is too ...
0
votes
4answers
96 views
What is the fastest way to read a sequence of images?
I have a speed critical program that will repeatedly reads images from disk and compute values from them. The images are too many to store in memory.
The same set of images will be read, we will not ...
1
vote
0answers
15 views
Symfony2 AppCache performance boost
We're trying to figure out what effect enabling AppCache in the frontend controller has on caching without calling any cache directives on the response object.
I had presumed that simply adding the ...
3
votes
1answer
31 views
How to find what is consuming mobile data transfer (MB) in my Android app?
I'm developing an application that needs a service to syncronize data beetween Android and a web service PHP. In the same app I have a ArcGIS Android map. I'm not able to find what is totally ...
-7
votes
4answers
52 views
What is the runtime complexity of the following method considering the simple statements?
Here is the code in java:
void test(int n)
{
int i, j;
///first loop
for ( i = 1; i <= n; i ++)
{
//second loop
for (j ...
0
votes
3answers
74 views
Lightweight Map implementation Java (little memory overhead)
I am currently writing some code in java meant to be a little framework for a project which revolves around a database with some billions of entries. I want to keep it high-level and the data ...
0
votes
1answer
13 views
Improve Website Performance Cache static content issue
I am using webpagetest to know my website performance.I am found issue with Cache static content i.e. "Leverage browser caching of static assets: 88/100"
FAILED - (No max-age or expires)
How can i ...
0
votes
0answers
28 views
Increased processing time for every loop vector of Matrixes c++
This code gets called for multiple images in a row to create features of an image based on the Histogram of Orientated Gradients and a Correlogram. Problem is that with every image the processing time ...
0
votes
3answers
57 views
Test performance c#
I've created a console application where I try 2 different methods of getting values from a sql database (= on the same server). When I add a stopwatch to check which one is the fastest method, I'll ...
2
votes
1answer
35 views
Would this code fetch the elements every iteration?
Normally, I would write code like that.
auto elements = get_elements();
for(auto i : elements)
{
// ...
}
I wonder if I it would make any performance difference to use the code below instead. ...
0
votes
1answer
10 views
WPF: Fast clearing a VisualHost with thousands of Children
In a WPF application I'm using a VisualHost with a Children collection. This children collection contains around 10000-30000 DrawingVisuals.
Drawing these DrawingVisuals takes around 600 ms. Thats ...
0
votes
0answers
35 views
KineticJS Stage draggable perfomance
Good afternoon. I have a small problem with the optimization KineticJS and stage. When drag the scene on my computer, it runs smoothly. When to try a more low-end machines, it appears slowly and some ...
-1
votes
4answers
92 views
What is the Big Oh Efficiency of Program with Finite For Loop?
What would be the efficieny of the following program, it is a for loop which runs for a finite no. of times.
for(int i = 0; i < 10; i++ )
{
//do something here, no more loops though.
}
So, ...
-2
votes
0answers
48 views
Why accessing larger index in pandas series takes longer? [closed]
I have a function that I would like to apply element-wise to several series.
def my_fun(s1, s2, p1, p2, p3, angle_cutoff, s_cutoff):
a1 = xy2angle(p1, s1)
a2 = xy2angle(p2, s2)
if ...
-2
votes
0answers
24 views
Object Oriented Programming: Trade off between number of objects and size of objects [closed]
I am working on an object oriented Client-Server Model. The server sends some attributes and client parses these attributes to create objects.
To improve performance, I thought of reducing the number ...
12
votes
1answer
75 views
e-commerce: Algorithm for calculating discounts
I'm in need of expert advice on a tricky matter.
The scenario is:
e-commerce web-site
lots of products
lots of discounts mixed on these products
A product is identified by a unique ProductID and ...
0
votes
0answers
30 views
Jquery - Modifying to structure to submit form if successful
I've had some help creating some jquery code which is designed to submit a form if a geocode is successful. However, it doesn't do the submission bit yet and the structure/flow of things will need ...
0
votes
1answer
28 views
How to avoid bottleneck performance?
A distributed system is described as scalable if it remains effective when there is a significant increase the number of resources and the number of users. However, these systems sometimes face ...
4
votes
0answers
66 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
4answers
46 views
Is there any repetition in this decision structure?
Is there anyway to simplify this decision structure that I am not seeing? It seems to me that each statement is necessary in determining the correct order. Any insight would be much appreciated.
def ...
2
votes
4answers
85 views
Optimizing for 3D imaging processes in C++
I am working with 3D volumetric images, possibly (256x256x256). I have 3 such volumes that I want to read in and operate on. Presently, each volume is stored as a text file of numbers which I read in ...
0
votes
3answers
60 views
Which is the most memory optimised layout in Android? [closed]
I have no clue if something like this exists in the first place. This was the question asked in an interview. Can some one throw light which is the most memory optimized layout in Android? As far as I ...
4
votes
4answers
89 views
What's the performance of the “address of” operator &?
I have to pass a lot of pointers in my code in the midst of a big loop, (so I have lots of expressions like foo(&x, &y, ...)). I was wondering whether I should store the pointers as separate ...
0
votes
0answers
16 views
Plot matrix with GNUplot. Slow
I am using GNUplot for plotting a small matrix.
The matrix is 100x100 by size. e.g.
1.23212 2.43123 -1.24312 ......
-4.23123 2.00458 5.60234 ......
......
The data is not neatly stored in the file.
...
1
vote
2answers
33 views
Caching text/image assets in performance-constrained environments
I'm working on an extremely performance-constrained devices. Because of the overhead of AJAX requests, I intend to aggressively cache text and image assets in the browser, but I need to configure the ...
