| bio | website | |
|---|---|---|
| location | Paris, France | |
| age | 28 | |
| visits | member for | 2 years, 11 months |
| seen | 3 hours ago | |
| stats | profile views | 2,648 |
Quantitative analyst in an investment bank in Paris.
|
7h |
comment |
beginner in C under linux. write function doesn't work properly Copy-paste the code you are using. The one you show us does not compile. |
|
2d |
revised |
What optimization does move semantics provide if we already have RVO? improved wording |
|
May 14 |
comment |
Windows style getopt/argp @CaptainGiraffe: Sample code from microsoft seems to indicate that a direct approach is manageable: code.msdn.microsoft.com/windowsdesktop/… |
|
May 14 |
comment |
Windows style getopt/argp @CaptainGiraffe: Windows conventions are quite easy to enforce: /s[:something] and /? summarizes pretty much everything. It should not be very difficult to write something from scratch (I have done it in C# a few years ago). |
|
May 14 |
answered | Windows style getopt/argp |
|
May 8 |
revised |
get random element from container - C++ / STL deleted 1 characters in body |
|
May 8 |
comment |
get random element from container - C++ / STL @ChristopherSmith: Yes, but that is C++11. Also MSVC10's version is buggy. The issue with this code is std::rand: this ought to be replaced by a better generator. |
|
May 8 |
awarded | Popular Question |
|
May 7 |
comment |
C# versus C++ performance I really wish I could vote this up twice. Even in the heap allocation business, there has been quite a substantial amount of work done those last years. Allocating small objects with glibc's malloc is very very efficient nowadays. |
|
May 7 |
revised |
C# versus C++ performance spelling... |
|
May 2 |
awarded | Nice Question |
|
May 1 |
comment |
How important is standards-compliance? There is one in MSVC, at least from version 8 on. However enabling it prevents you from compiling even the slightiest windows code. |
|
May 1 |
comment |
How important is standards-compliance? You seem to raise a perfectly valid point about standardizing common practice (ANSI/ISO C, C++98), and standardizing ahead (HTML5, some parts of C++11). The former is very desirable, the latter much more debatable (and less efficient). However I fail to see how this relates to the question (though I'm not the downvoter). |
|
Apr 30 |
comment |
Implementing the ratio of uniforms for normal distribution in C++ Speed really depends on your underlying uniform generator. I use ratio of uniforms everyday, and have benchmarked it to be way faster than B-M with a Xor-Shift uniform generator. Also, Box-Muller will have biases when you draw many many normals (say from 10^9 on) since it generates numbers between ~ -6 and 6 (if you use a "standard" uniform generator). |
|
Apr 30 |
comment |
Is this a good reason to use alloca? @hyde: Sure. I don't think, I have measured heap allocation to be a bottleneck. Here, also, benchmarking is very important. |
|
Apr 30 |
comment |
Is this a good reason to use alloca? Sometimes I miss the obvious... I'm considering disallowing values of n greater than say 20 (or some preprocessor constant, my real functions are templated on the y parameter so full source code is available). This is worth a shot, if allocating 320 bytes on the stack each time does not degrade performance. |
|
Apr 30 |
revised |
Is this a good reason to use alloca? added 19 characters in body |
|
Apr 30 |
comment |
Is this a good reason to use alloca? Function neville is small, and does not call anybody. mallocing the work array each time triples runtime of my actual operator() (with std::array), says profiler. Also work has size few dozen bytes maximum. Thanks for the insight however. |
|
Apr 30 |
asked | Is this a good reason to use alloca? |
|
Apr 27 |
comment |
What's the difference between a public static class member function and a global function declared in a namespace? @ValarDohaeris: You can prevent this to a certain extent by making the destructor or constructor private. |