Tagged Questions
-8
votes
3answers
90 views
Faster Code Anyone? :) [closed]
EDIT: shaved roughly 10% processing time with:
register int16_t *libwordPointer = libword;
int16_t *nReset;
register int16_t *wordsPointer = words[word];
int16_t *mReset = wordsPointer;
for( int ...
1
vote
0answers
69 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 ...
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
0answers
40 views
openMP pragma for doesn't improve the performance [duplicate]
I'm trying to improve the overall execution time of my code using openmp. here is the code:
#pragma omp for private(y, x, bufi0)
for (y = 0; y < h; y++)
{
bufi0 = ksize-1;
...
0
votes
7answers
123 views
if else code blocks … or one if with multiple OR ( | |) conditions within it ? in C
I was writing a small text matching program in C, which basically checks for the presence of a few characters in some strings (in form of char arrays). Its working now and I have a code block like ...
4
votes
3answers
123 views
moving elements of array in c, is there a better option
I am reading input from file (line by line) Each line is a state of a game board. Below is example of input:
...
0
votes
2answers
44 views
Reasons for omp_set_num_threads(1) slower than no openmp
I believe everyone agree with the title of this post. Can someone point me the reason ? Any reference to that like book etc ? I have tried to find but no luck.
I believe the reason is something about ...
-1
votes
1answer
69 views
Time limit of a c program while calculating factorial of numbers in c [closed]
I am solving a problem on calculation of factorial and the challenge is as follows!
You are asked to calculate factorials of some small positive integers.
Input
An integer t, 1<=t<=100, ...
0
votes
3answers
57 views
Are there any asymmetric compression algorithms which are fast compression / slow decompression?
I have looked at many "fast compression" libraries, but all of them feature fast decompression rather than fast compression.
I am working on a system where fast compression is more highly valued than ...
-4
votes
1answer
78 views
Measure time complexity of a program in any programming language
I am searching for a standard way to identify running time complexity of a program.
As described here, I am not searching for a solution for analyzing the same by looking at code, rather than through ...
18
votes
4answers
379 views
Does typecasting consume extra CPU cycles
Does typecasting in C/C++ result in extra CPU cycles?
My understanding is that is should consume extra CPU cycles atleast in certain cases. Like typecasting from float to integer where the CPU should ...
6
votes
2answers
135 views
more efficient way of flooring doubles to get array indices
I have double x, and double y. I need to turn that into int boxnum, which is defined as the (floored) index in which (x,y) falls in the WIDTH x HEIGHT grid with squares of size BOX_SIZE. Coordinates ...
0
votes
3answers
79 views
Parallelization: bad results with threads, good results with processes. Why?
I've got a problem where the parallelization of a C program with threads doesn't really improve speed, whereas parallelization with processes actually does. I don't really understand why, so maybe ...
0
votes
2answers
55 views
How to figure performance of small expressions?
I want to figure performance of small expressions,to I decide what to use. Consider the below code. Several recursivee calls to it may happen.
void foo(void) {
i++;
if(etc(ch)) {
//..
...
5
votes
4answers
127 views
best cross-platform method to get aligned memory
Here is the code I normally use to get aligned memory with Visual Studio and GCC
inline void* aligned_malloc(size_t size, size_t align) {
void *result;
#ifdef _MSC_VER
result = ...
2
votes
3answers
69 views
openmp optimising (why openmp is much slower than sequential way?)
I am a newbie in programming with OpenMp. I wrote a simple c program to multiply matrix with a vector. Unfortunately, by comparing executing time I found that the OpenMP is much slower than the ...
4
votes
3answers
123 views
more efficiency way to write if-conditionals with repetitive variable
I'm looking for a more efficiency way to write those kind of if-conditionals:
a = huge_term >= b ? huge_term : c
or
(a = huge_term) >= b ? a : a = c
The second one is quite shorter but the ...
10
votes
1answer
419 views
Why C++ output is too much slower than C?
I am actually a fan of C++, but today I figured out very slow file output of my program. So, I designed an experiment to compare speed of C++ file output with C.
Suppose we have this piece of code :
...
10
votes
4answers
451 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 ...
2
votes
3answers
163 views
C++ Better for Performance than C? [closed]
I'm currently working on some high-performance, stability-critical frameworks, which will likely deploy on x86_64, ia64, and potentially ARM platforms. The library is so far done in C. The current ...
25
votes
8answers
1k views
Fast way to replace elements in array - C
Let's say we have an array of ints like this:
const int size = 100000;
int array[size];
//set some items to 0 and other items to 1
I'd like to replace all items that have value of 1 with another ...
-1
votes
1answer
40 views
Checking statement or assignation variable for performance? [closed]
What is the instruction which takes more time between a if() or a variable initialization ?
Will it be more efficient to first check whether a given variable has a non-zero value and set it only if ...
0
votes
1answer
86 views
How to create 1 million processes
My goal here is to simply compare performance of creating 1 million processes vs threads (sequentially).
each process/thread does nothing, and they should only run after the current one has finished
...
-1
votes
1answer
66 views
My C-Code runs slowly in Mac comparing to Ubuntu [closed]
I have written a scientific code in C. I compile the code in Ubuntu using gcc 4.7.2, and in MBP using gcc 4.2. My Makefile looks like this:
CC = gcc
CFLAGS = -c -fPIC -Wall -O3 -lpthread -g
BaseDir = ...
1
vote
0answers
62 views
Measure CPU frequency with turboboost in code
I am profiling some code on three different computers with three different frequencies. I need the frequencies to measure GFLOPs/s. I have some code which does this but it does not account for ...
3
votes
3answers
62 views
How is conditional initialization handled and is it a good practice?
I am trying to decide between several possible practices. Say, my function has a number of if() blocks, that work on data, that is unique to them.
Should I declare and initialize the local (for the ...
1
vote
1answer
90 views
how do I get the time spent by the linux kernel servicing interrupts
I want to track down jitter in a piece of code and I know there are many potential sources ( task switch, system calls, cache misses, moving task to another CPU, cpu throttling, etc ) and I know how ...
0
votes
1answer
71 views
How to measure program.exe startup time?
I want to measure my program exe startup time it
is the time from the moment of click or [enter]
if started from console or any other way till
the moment when program startup is done and
its code ...
1
vote
2answers
40 views
Assigning value to array seat is slow
I am using temporal difference learning to train computer at playing go. I have noticed that my agent is really slow playing 1 game (like 10 seconds) when it should be able to play 100.000 games in ...
0
votes
0answers
59 views
How to compute CPU peak performance [closed]
I want to compute the theoretical peak performance for Intel Xeon X5660 2.8GHz Westmere processor(using one thread with icc -O2 turned on).
I thought -O2 would automatically turn on SSE, so peak ...
1
vote
1answer
59 views
Why does this program cause so many cache misses?
I'm stuck with a question about cache performance in the below practice exam. Could you please give me some hints on how to solve it? Here is my draft answer:
The arrays a, b span the entire 32 ...
0
votes
2answers
73 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
302 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
852 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
2answers
89 views
Quick sort runtime speed concerns
I am having something that troubles me. I have my implementation of a quick sort algorithm, but when I test it on an array of integers that has over 30 elements, sorting takes, in my opinion to long. ...
4
votes
2answers
83 views
Inline functions result in decreased performance. Why? How can I fix it?
When programming, I like to cut my code into easily re-usable function that perform specific actions.
It helps me organize, remember and optimize my code. It also makes it so easily refactorable!
As ...
0
votes
1answer
69 views
Differences in OpenMP performance with different versions of OS
I have a piece of code that i wrote a time ago. The only purpose of it was an experiment with openMP. But i recently switched form a MacBook Pro Lion (early 2011) to a MacBook Pro Mountain Lion (early ...
4
votes
3answers
177 views
Efficiency passing variables to modules in a embedded c programming background
I am programming C in an embedded target. Due to the increasing complexity and testability issues, modularity is a must.
At a glance, the program is a control loop. Read physical inputs using ...
2
votes
2answers
96 views
C Pointer Arithmetic Efficiency
I've seen the explanations for pointer arithmetic (eg. Pointer Arithmetic). But I was wondering is there a real difference between:Given:
int* arr = (int*) malloc(sizeof(int) * 3);
Does:
...
2
votes
3answers
68 views
Pushing code towards kernel or user space, for performance reasons?
Originally I thought to make code faster it would be better to try and reduce the transition between Kernel and user space- by pushing more of the code to run in the kernel. However, I have read in a ...
6
votes
1answer
146 views
How much overhead can add the -fPIC flag?
Question
I am testing a simple code which calculates Mandelbrot fractal. I have been checking it's performance depending on the number of iterations in the function that checks if a point belongs to ...
2
votes
0answers
104 views
Performance of Lua calling C function
I noticed a big difference in performance of my C program depending on the -fPIC flag. When I use it my program is about 30% slower than without it.
I am comparing it with a Lua program which calls a ...
7
votes
3answers
159 views
Different execution orders cause differences in performance of a Pthread program
This is my first post on stackoverflow and my native language is not English. Please excuse me for any inconvenience this post brings to you. Maybe it's a little long, so I am looking forward to your ...
2
votes
1answer
109 views
odds of strstr performance
I am performing a few benchmarks of my code, and I decided to use strstr performance as a reference point. On my PC performance of scanning all text of ~7mb file (preloaded into RAM) is about ...
3
votes
0answers
228 views
loop tiling/blocking for large dense matrix multiplication
I was wondering if someone could show me how to use loop tiling/loop blocking for large dense matrix multiplication effectively. I am doing C = AB with 1000x1000 matrices. I have followed the ...
0
votes
0answers
49 views
High interprocess timing variations, but low intraprocess timing variations for the same task
I am running this code (full code here: http://codepad.org/5OJBLqIA) to time repeated daxpy function calls with and without flushing the operands from cache beforehand:
#define KB 1024
int main()
{
...
1
vote
1answer
81 views
clock() - execution time for c function
I am trying to measure the execution time of a code block in C. I have something like this in my code:
clock_t begin, end;
double time_spent;
begin = clock();
ATL_dsymv(122,n,alfa,A,n,X,1,beta,Y,1);
...
2
votes
4answers
116 views
performance optimizing critical code in iOS app
I am trying to optimize the performance of a critical part of my app. Written in C, the code loops through all pixels of sourceImage and calculates the "color distance" to each of its neighbors, ...
6
votes
3answers
326 views
C/C++: is it faster to assign a 0 to an unsigned long variable or to xor the variable with itself? [closed]
I realize the difference may be negligible, but which is more efficient in trying to zero an unsigned long?
unsigned long x;
...
x=0;
--OR--
x^=x;
Taylor
6
votes
1answer
102 views
How to use C99 standard types for maximum portability AND efficiency across most platforms?
First, here is what I understand and think what is true for the question.
Use fast data types for single variables like counters or for loop indexes. For example:
#define LOOP_COUNT (100U)
...





