User rck - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T11:00:30Zhttp://stackoverflow.com/feeds/user/5070http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1603520/cuda-what-reasons-could-there-be-for-nvcc-taking-several-minutes-to-compile0CUDA: What reasons could there be for nvcc taking several minutes to compile?rck2009-10-21T20:48:34Z2009-11-26T18:17:11Z
<p>I have some CUDA code that nvcc (well, technically ptxas) likes to take upwards of 10 minutes to compile. While it isn't small, it certainly isn't huge. (~5000 lines).</p>
<p>The delay seems to come and go between CUDA version updates, but previously it only took a minute or so instead of 10. </p>
<p>When I used the -v option, it seemed to get stuck after displaying the following:</p>
<p>ptxas --key="09ae2a85bb2d44b6" -arch=sm_13 "/tmp/tmpxft_00002ab1_00000000-2_trip3dgpu_kernel.ptx" -o "/tmp/tmpxft_00002ab1_00000000-9_trip3dgpu_kernel.sm_13.cubin"</p>
<p>The kernel does have a fairly large parameter list and a structure with a good number of pointers is passed around, but I do know that there was at least one point in time in which very nearly the exact same code compiled in only a couple seconds.</p>
<p>I am running 64 bit Ubuntu 9.04 if it helps.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/497685/how-do-you-get-around-the-maximum-cuda-run-time7How do you get around the maximum CUDA run-time?rck2009-01-30T23:29:28Z2009-11-03T22:24:18Z
<p>I've noticed that CUDA applications tend to have a rough maximum run-time of 5-15 seconds before they will fail and exit out. I realize it's ideal to not have CUDA application run that long but assuming that it is the correct choice to use CUDA and due to the amount of sequential work per thread it must run that long, is there any way to extend this amount of time or to get around it?</p>
http://stackoverflow.com/questions/354182/calling-c-code-from-fortran0Calling C Code from FORTRANrck2008-12-09T20:46:35Z2009-07-31T17:06:50Z
<p>Given Microsoft FORTRAN 5.1 and Microsoft C/C++ 14.0, along with the linker that comes with that version of FORTRAN (that must be used for other dependencies) how do I create a C function and call it from the FORTRAN application? </p>
http://stackoverflow.com/questions/660613/how-do-you-hide-the-mouse-pointer-under-linux-x11/664528#6645283Answer by rck for How do you hide the mouse pointer under Linux/X11?rck2009-03-20T00:16:24Z2009-03-31T00:22:47Z<p>I ended up using XDefineCursor like ephemient mentioned. The control application changed the default root window cursor and the other applications (which are under my control) inherited it.</p>
<p>Code specifics look like:</p>
<pre><code>// Hide the cursor
if (NULL==(display=XOpenDisplay(NULL)))
{
printf("Unable to open NULL display\n");
exit(1);
}
window = DefaultRootWindow(display);
Cursor invisibleCursor;
Pixmap bitmapNoData;
XColor black;
static char noData[] = { 0,0,0,0,0,0,0,0 };
black.red = black.green = black.blue = 0;
bitmapNoData = XCreateBitmapFromData(display, window, noData, 8, 8);
invisibleCursor = XCreatePixmapCursor(display, bitmapNoData, bitmapNoData,
&black, &black, 0, 0);
XDefineCursor(display,window, invisibleCursor);
XFreeCursor(display, invisibleCursor);
</code></pre>
<p>In order to hide the cursor and then after I'm done</p>
<pre><code>// Restore the X left facing cursor
Cursor cursor;
cursor=XCreateFontCursor(display,XC_left_ptr);
XDefineCursor(display, window, cursor);
XFreeCursor(display, cursor);
</code></pre>
<p>To restore X's left handed cursor (Since it's the root window and I don't want it to stay invisible. I'm not sure, but I might also be able to use </p>
<pre><code>XUndefineCursor(display, window);
</code></pre>
http://stackoverflow.com/questions/660613/how-do-you-hide-the-mouse-pointer-under-linux-x112How do you hide the mouse pointer under Linux/X11?rck2009-03-19T00:25:25Z2009-03-31T00:22:47Z
<p>How do I hide the mouse pointer under X11? I would like to use the built in libraries in order to do this and not something like SDL (SDL_ShowCursor(0)) or glut (glutSetCursor(GLUT_CURSOR_NONE)). Also, the mouse pointer should be hidden no matter the pointer location, not just in its own window.</p>
http://stackoverflow.com/questions/497685/how-do-you-get-around-the-maximum-cuda-run-time/497686#4976862Answer by rck for How do you get around the maximum CUDA run-time?rck2009-01-30T23:29:45Z2009-02-05T21:40:55Z<p>My current solution is to pick a point in the calculation some percentage of the way through that I am sure the GPU I am working with is able to complete in time, save all the state information and stop, then to start again, load all that state information and continue. I'd much rather just extend the maximum run-time, but I get the feeling that isn't possible.</p>
<p>Update:
For Linux: Not going into X will allow you to run CUDA applications as long as you want. No Tesla required (A 9600 was used in testing this)</p>
http://stackoverflow.com/questions/505465/line-number-of-segmentation-fault/505483#5054836Answer by rck for Line number of segmentation faultrck2009-02-02T23:46:35Z2009-02-03T00:20:30Z<p>I don't know of a gcc option, but you should be able to run the application with gdb and then when it crashes, type "where" to take a look at the stack when it exited, which should get you close.</p>
<p>gdb blah<br>
run <br>
where</p>
<p>Edit for completeness:
You should also make sure to build the application with debug flags on using the -g gcc option.</p>
<p>Another option is to use the bt (backtrace) command.</p>
http://stackoverflow.com/questions/50182/linux-x11-input-library-without-creating-a-window2Linux/X11 input library without creating a windowrck2008-09-08T17:09:40Z2008-09-17T23:27:46Z
<p>Is there a good library to use for gathering user input in Linux from the mouse/keyboard/joystick that doesn't force you to create a visible window to do so? SDL lets you get user input in a reasonable way, but seems to force you to create a window, which is troublesome if you have abstracted control so the control machine doesn't have to be the same as the render machine. However, if the control and render machines are the same, this results in an ugly little SDL window on top of your display.</p>
<p><strong>Edit To Clarify</strong>:<br>
The renderer has an output window, in its normal use case, that window is full screen, except when they are both running on the same computer, just so it is possible to give the controller focus. There can actually be multiple renderers displaying a different view of the same data on different computers all controlled by the same controller, hence the total decoupling of the input from the output (Making taking advantage of the built in X11 client/server stuff for display less useable) Also, multiple controller applications for one renderer is also possible. Communication between the controllers and renderers is via sockets.</p>
http://stackoverflow.com/questions/55403/have-you-successfully-used-a-gpgpu/55410#554105Answer by rck for Have you successfully used a GPGPU?rck2008-09-10T22:05:43Z2008-09-10T22:05:43Z<p>I have been using GPGPU for motion detection (Originally using CG and now CUDA) and stabilization (using CUDA) with image processing.
I've been getting about a 10-20X speedup in these situations.</p>
<p>From what I've read, this is fairly typical for data-parallel algorithms. </p>
http://stackoverflow.com/questions/24109/c-ide-for-linux/50234#502346Answer by rck for C++ IDE for Linux?rck2008-09-08T17:31:44Z2008-09-08T17:31:44Z<p>Not to repeat an answer, but I think I can add a bit more.</p>
<p><a href="http://www.slickedit.com" rel="nofollow">Slickedit</a> is an excellent IDE.</p>
<p>It supports large code-bases well without slowing down or spending all its time indexing. (This is a problem I had with eclipse's cdt). Slickedit's speed is probably the nicest thing about it, actually.<br>
The code completion works well and there are a large amount of options for things like automatic formatting, beautification and refactoring.<br>
It does have integrated debugging.<br>
It has plug-in support and fairly active community creating them.<br>
In theory, you should be able to integrate well with people doing the traditional makefile stuff, as it allows you to create a project directly from one, but that didn't work as smoothly as I would have liked when I tried it.<br>
In addition to Linux, there are Mac and Windows versions of it, should you need them.<br></p>
http://stackoverflow.com/questions/1603520/cuda-what-reasons-could-there-be-for-nvcc-taking-several-minutes-to-compile/1771185#1771185Comment by rck on CUDA: What reasons could there be for nvcc taking several minutes to compile?rck2009-11-25T17:20:11Z2009-11-25T17:20:11ZI'm aware of the parameter restriction, I've run into that problem before. (And annoyingly, I don't seem able to get around it by just using structs) It's unclear to me, however, if that's a factor in the slowdown. http://stackoverflow.com/questions/1603520/cuda-what-reasons-could-there-be-for-nvcc-taking-several-minutes-to-compile/1777942#1777942Comment by rck on CUDA: What reasons could there be for nvcc taking several minutes to compile?rck2009-11-25T17:16:13Z2009-11-25T17:16:13ZNot yet. I did a significant code restructuring for other reasons, and that helped a lot, but I wasn't able to determine the base cause. (And it's still way slower than compiling in emulation mode)http://stackoverflow.com/questions/1603520/cuda-what-reasons-could-there-be-for-nvcc-taking-several-minutes-to-compile/1782259#1782259Comment by rck on CUDA: What reasons could there be for nvcc taking several minutes to compile?rck2009-11-25T17:14:21Z2009-11-25T17:14:21ZInteresting. When you rewrote them did it still fail without optimization? That is, was you re-writing it like that enough of a hint for only the optimizer being able to save registers, or is the basic compiler able to as well?http://stackoverflow.com/questions/1603520/cuda-what-reasons-could-there-be-for-nvcc-taking-several-minutes-to-compileComment by rck on CUDA: What reasons could there be for nvcc taking several minutes to compile?rck2009-10-30T17:25:44Z2009-10-30T17:25:44ZThe same problem occurs with optimization disabled. http://stackoverflow.com/questions/1603520/cuda-what-reasons-could-there-be-for-nvcc-taking-several-minutes-to-compileComment by rck on CUDA: What reasons could there be for nvcc taking several minutes to compile?rck2009-10-23T18:14:36Z2009-10-23T18:14:36ZGiven the problem's nature, I wouldn't be surprised. Especially since when I compile with --device-emulation it compiles quickly. Of course, even if it is a bug in the compiler, I'd still like to be able to do something about it.http://stackoverflow.com/questions/660613/how-do-you-hide-the-mouse-pointer-under-linux-x11/696781#696781Comment by rck on How do you hide the mouse pointer under Linux/X11?rck2009-03-31T00:18:49Z2009-03-31T00:18:49ZThey don't currently have the rep to comment, so that's they're only choice. I'll update my answer to show where _display and _window can come from.http://stackoverflow.com/questions/660613/how-do-you-hide-the-mouse-pointer-under-linux-x11/660705#660705Comment by rck on How do you hide the mouse pointer under Linux/X11?rck2009-03-19T16:59:04Z2009-03-19T16:59:04ZActually, come to think of it, I have control of all applications visible to the user, so I should be able to use XDefineCursor. Thanks.http://stackoverflow.com/questions/660613/how-do-you-hide-the-mouse-pointer-under-linux-x11/660705#660705Comment by rck on How do you hide the mouse pointer under Linux/X11?rck2009-03-19T01:20:30Z2009-03-19T01:20:30ZDo you have a link on how to create this, enable it when the application starts and disable it when the application exits? http://stackoverflow.com/questions/512258/is-there-a-decent-opengl-text-drawing-library-for-the-iphone-sdk/512722#512722Comment by rck on Is there a decent OpenGL text drawing library for the iPhone SDK?rck2009-03-01T06:53:22Z2009-03-01T06:53:22ZThe crash landing demo application no longer seems to be available for download from the iphone developer site, is there a suitable alternative? http://stackoverflow.com/questions/497685/how-do-you-get-around-the-maximum-cuda-run-time/497706#497706Comment by rck on How do you get around the maximum CUDA run-time?rck2009-02-05T21:39:00Z2009-02-05T21:39:00ZI just tried this out. No Tesla card needed. Using Linux, I actually just didn't bother going into X and the Limit was lifted.http://stackoverflow.com/questions/497685/how-do-you-get-around-the-maximum-cuda-run-time/497706#497706Comment by rck on How do you get around the maximum CUDA run-time?rck2009-02-02T23:40:23Z2009-02-02T23:40:23ZIt would be useful to determine which of these cases it is. I'll have to try a non-tesla card with no monitor attached and find out.http://stackoverflow.com/questions/95211/how-can-you-generate-a-makefile-from-an-xcode-project/95653#95653Comment by rck on How can you generate a Makefile from an Xcode project?rck2008-09-22T22:53:33Z2008-09-22T22:53:33ZThis looks like it builds a project, but doesn't convert an existing project to a standard makefile like the questioner asked. Am I mistaken in this? If so, would you mind editing editing your answer to include how you can use xcodebuild to generate the makefile?http://stackoverflow.com/questions/50182/linux-x11-input-library-without-creating-a-window/52266#52266Comment by rck on Linux/X11 input library without creating a windowrck2008-09-12T20:07:44Z2008-09-12T20:07:44ZThis answer + the GPM answer by Brian answers my question, but I can only select 1 answer.