5
votes
5answers
117 views
Is There A Fast GetToken Routine For Delphi?
In my program, I process millions of strings that have a special character, e.g. "|" to separate tokens within each string. I have a function to return the n'th token, and this is …
1
vote
5answers
74 views
Optimizing MySQL Query
We have a query that is currently killing our database and I know there has to be a way to optimize it. We have 3 tables:
items - table of items where each items has an associate …
6
votes
5answers
113 views
What is the use of Python’s basic optimizations mode? (`python -O`)
Python has a flag -O that you can execute the interpreter with. The option will generate "optimized" bytecode (written to .pyo files), and given twice, it will discard docstrings. …
-1
votes
1answer
51 views
CONTEST: optimize size of grayscale scanned documents!
I put this as a contest, but it's still a question!
Here's the original image: http://dl.dropbox.com/u/1663633/original_scan.jpg
Original size is about 1 megabyte. How would you …
1
vote
1answer
38 views
Appending to a serialized collection
I'm having a serialized array of some type.
Is there a way to append new objects to this serialized array (in a serialized form) without the need to read the already saved collecti …
4
votes
1answer
144 views
Mysterious pointer-related multithreading slowdown
Background: So I'm working on a raytracer.. for my construction of the spatial partitioning scheme, I initially had some code like this:
if (msize <= 2) { // create a leaf node …
6
votes
7answers
235 views
Quick padding of a string in Delphi
I was trying to speed up a certain routine in an application, and my profiler, AQTime, identified one method in particular as a bottleneck. The method has been with us for years, a …
0
votes
5answers
73 views
JOIN after processing SELECT
Given the following schema:
CREATE TABLE players (
id BIGINT PRIMARY KEY,
name TEXT UNIQUE
);
CREATE TABLE trials (
timestamp TIMESTAMP PRIMARY KEY,
player BIGINT,
scor …
0
votes
2answers
29 views
MySQL EXPLAIN: “Using index” vs. “Using index condition”
The MySQL 5.4 documentation, on Optimizing Queries with EXPLAIN, says this about these Extra remarks:
Using index
The column information is retrieved
from the tab …
6
votes
3answers
354 views
Compiler Magic: Why?
I just noticed that given the following code:
if (x.ID > 0 && !x.IsCool)
the Microsoft C# 3.0 (VS2008 SP1) compiler will optimize it to this:
if (!((x.Id <= 0) || …
4
votes
10answers
403 views
Producing the fastest possible executable
I have a very large program which I have been compiling under visual studio (v6 then migrated to 2008). I need the executable to run as fast as possible. The program spends most of …
1
vote
1answer
59 views
Compiler optimization: Java bytecode
I'm currently writing a toy compiler targeting Java bytecode in the translation.
I would like to know if there is some kind of catalog, maybe a summary, of various simple peephole …
6
votes
3answers
175 views
C/C++ compiler feedback optimization
Has anyone seen any real world numbers for different programs which are using the feedback optimization that C/C++ compilres offer to support the branch prediction, cache preloadin …
1
vote
5answers
33 views
Performant intersection and distinct element extraction?
I have a line like the following in my code:
potentialCollisionsX.Intersect(potentialCollisionsY).Distinct().ToList();
Which, through profiling, i have determined that it is eat …
2
votes
2answers
62 views
How to use array optimization in boost serialization
I have to serialize an object that contains a std::vector that can contain thousand of members, with that vector sizes the serialization doesn't scale well.
According with the doc …
