| bio | website | dahlsys.com |
|---|---|---|
| location | New Mexico, USA | |
| age | 42 | |
| visits | member for | 2 years, 9 months |
| seen | yesterday | |
| stats | profile views | 456 |
I'm very thankful whenever someone spends of their own time to answer a question I have. If you have done so, thank you!
I've been hooked on computers ever since, while in 5th grade, I encountered a Dragon 32 on a store shelf in the small town I grew up in, in Norway. It was a tan colored box holding rows of buttons with letters on them. How was it possible that when I pushed a button that had a letter on it, a small picture of that same letter would appear on the screen? It was a true mystery and one that I had to solve.
My first computer was a Sharp MZ-700. Then there was the Commodore 64, that I learned assembly on. Then came the Commodore Amiga, on which I wrote my first real programs.
On the software side, I have done a little bit of everything, using many different languages. My favorite language is C++. I am especially interested in High Performance Computing and parallel programming.
|
May 15 |
comment |
How do I fix a missing Nsight menu in Visual Studio 2010? @MiloChen: The Express versions are not officially supported, but can be made to work. You need to install the free Windows SDK and tweak some configuration files. Google for instructions. |
|
May 12 |
comment |
How do I fix a missing Nsight menu in Visual Studio 2010? I don't know. If you try it, could you add a comment here to let us know if it worked? |
|
May 12 |
comment |
Django, streaming H.264 video with FileWrapper (HTML5) @alper: The issue was that Chrome needs HTTP byte-range for video streaming. I worked around it with mod_xsendfile. |
|
Apr 26 |
revised |
What are the differences between CUDA compute capabilities? Removed second header from table. |
|
Apr 22 |
comment |
Accuracy issues in using booleans to evaluate expressions Just wanted chime in with what @tera said -- even though you have removed the if statements, you still have conditional code. The compiler will look at how much conditional code there is and implement it either with branching or with predication. |
|
Apr 19 |
awarded | Enlightened |
|
Apr 19 |
awarded | Nice Answer |
|
Apr 18 |
answered | Cuda cudaMemcpy2DArrayToArray does not have an asynchronous counterpart |
|
Mar 6 |
accepted | What are “Other” Issue Stall Reasons displayed by the Nsight profiler? |
|
Mar 6 |
comment |
Change background color of Solution Explorer in Visual Studio After installing, go to Tools | Options | SExColor. |
|
Feb 27 |
comment |
Generating AES (AES-256) Lookup Tables Interesting. Using tables may not be faster on the GPU though. |
|
Feb 26 |
awarded | Caucus |
|
Feb 23 |
comment |
Is coalescing triggered for accessing memory in reverse order? @RobertCrovella: Thank you for the links. Very informative. I see how it works now. |
|
Feb 22 |
comment |
Is coalescing triggered for accessing memory in reverse order? Do you have a reference for this? I see this working for reads, but for writes, will the GPU try to align up transactions that appear in different warps and different SMs so that they occur at the exact same time, so that they can be combined by L2? Or will L2 "hold" the data for a while to see if there are more updates to it, before writing it out to global memory? |
|
Feb 22 |
revised |
SLI for multiple GPUs Deleted incorrect answer. |
|
Feb 18 |
awarded | Popular Question |
|
Feb 16 |
comment |
What is the granularity of the CUDA Memory Checker? Seemed unlikely. Tried it anyway, and it didn't change anything :) |
|
Feb 15 |
comment |
What are “Other” Issue Stall Reasons displayed by the Nsight profiler? Thank you for the info. The kernel is a PBKDF2-HMAC-SHA1 key extender. So, it runs tons of integer adds and bitwise operations. In particular, there are lots of 32-bit integer shifts, which have low throughput on Kepler. There are no FP operations. I guess that, in this case, Other is due to the low throughput integer operations, so there's not much to be done. |
|
Feb 15 |
asked | What is the granularity of the CUDA Memory Checker? |
|
Feb 15 |
asked | What are “Other” Issue Stall Reasons displayed by the Nsight profiler? |