19,859 reputation
752133
bio website stackoverflow.com/…
location Russia
age 27
visits member for 3 years, 7 months
seen 2 hours ago
stats profile views 1,282

Linux programmer, interested in compilers (with theory and standard-compliance), cryptography, OS and microelectronics design

Working deeply with compilers, standard-compliance and OS libraries.


1d
comment About the pipeline performance formula
what is the your task? You already knows it because you have spent some time on it; but we don't know neither your course nor task nor CPU model used in the task nor the book used.
1d
revised About the pipeline performance formula
deleted 7 characters in body
1d
revised Intel Core i7 pipelining
edited tags; edited title
1d
comment CUDA core pipeline
@BRabbit27, And I think the last one: sc.tamu.edu/systems/eos/GPU-Intro.pdf may be the best. You are welcome to ask any thing more here in comments.
1d
revised CUDA core pipeline
edited tags
1d
revised CUDA core pipeline
deleted 14 characters in body
1d
comment CUDA core pipeline
There are slides from Texas: sc.tamu.edu/systems/eos/GPU-Intro.pdf with "Simplified multi-SIMD GPU Pipeline" (slide 11) and comparison with classic and superscalar CPUs: slides 7-10. Check also "CUDA Core (CC) Architecture" slide
1d
revised CUDA core pipeline
added 332 characters in body
1d
comment CUDA core pipeline
and nvidia shows parts of pipeline here: geforce.com/Active/en_US/en_US/pdf/… (page "10" - scheduling part of pipeline = frontend)
1d
comment CUDA core pipeline
there are also some notes here ece.lsu.edu/gp/notes/set-nv-org.pdf with simple pipeline flow charts
1d
revised CUDA core pipeline
added 1210 characters in body
1d
revised CUDA core pipeline
added 1210 characters in body
1d
revised CUDA core pipeline
added 339 characters in body
1d
answered CUDA core pipeline
2d
awarded  c
2d
revised C/C++ compiling different parts of the program with different compilers
``
2d
comment C/C++ NaN resolution
long double is platform-depended and ABI-depended. On x86 with x87 FPU you can use long double to get 80-bit precision. Also you can try __float128 from modern gcc (4.7+, x86/x86_64), which implements 128-bit quad precision in software.
2d
comment Checking username: getpwnam / getpwnam_r: No such file or directory
And you can run strace for your program (strace /tmp/test) to see whats going and whats failing.
2d
answered C/C++ compiling different parts of the program with different compilers
May
15
comment Allocating memory for small JITted code
Hans Passant, en.wikipedia.org/wiki/JIT_spraying will not agree with your "nature of JIT is that the code addresses are entirely unguessable.". The spraying is real-world technique.