Tagged Questions
6
votes
5answers
166 views
optimizing `std::vector operator []` (vector access) when it becomes a bottleneck
gprof says that my high computing app spends 53% of its time inside std::vector <...> operator [] (unsigned long), 32% of which goes to one heavily used vector. Worse, I suspect that my parallel ...
5
votes
10answers
2k views
MPI or Sockets
I'm working on a loosely coupled cluster for some data processing. The network code and processing code is in place, but we are evaluating different methodologies in our approach. Right now, as we ...
4
votes
6answers
223 views
C++ super fast thread-safe rand function
void NetClass::Modulate(vector <synapse> & synapses )
{
int size = synapses.size();
int split = 200 * 0.5;
for(int w=0; w < size; w++)
if(synapses[w].active)
...
4
votes
3answers
129 views
Parallel computing memory access bottleneck
The following algorithm is run iteratively in my program. running it, without the two lines indicated below, takes 1.5X as long as without. That is very surprising to me as it is. Worse, however, is ...
1
vote
2answers
136 views
OpenCV's cascade classifier not utilizing full power of the CPU
I'm using OpenCV's cascade classifier for detection, however my CPU utilization never goes above 50% yet the application runs only at ~8 FPS so there should be a lot more room for improvement. I've ...
1
vote
1answer
110 views
Concurrent Generation of Sequential Keys
I'm working on a project which generates a very large number of sequential text strings, in a very tight loop. My application makes heavy use of SIMD instruction set extensions like SSE and MMX, in ...
0
votes
2answers
135 views
Bottleneck from comparing strings
This is a follow up question to Char* vs String Speed in C++.
I have declared the following variables:
std::vector<std::string> siteNames_;
std::vector<unsigned int> ids_;
...