Commented Unassigned: Compilation error when handling with float array in gpu...
Hi All, Firstly, i'm a beginner in CUDAfy.Net programming and i have an issue when trying to copy float array in to device memory.Here is the code :-CudafyModule km =...
View ArticleCommented Unassigned: Compilation error when handling with float array in gpu...
Hi All, Firstly, i'm a beginner in CUDAfy.Net programming and i have an issue when trying to copy float array in to device memory.Here is the code :-CudafyModule km =...
View ArticleCommented Unassigned: Compilation error when handling with float array in gpu...
Hi All, Firstly, i'm a beginner in CUDAfy.Net programming and i have an issue when trying to copy float array in to device memory.Here is the code :-CudafyModule km =...
View ArticleNew Post: __device__ funcitons in cudafy
Hi, thanks for the reply! I will have a look at the examples more closely, I must have missed it the first time. Is it the CudafyByExample and CudafyExamples projects you are referring to? If so do you...
View ArticleNew Post: __device__ funcitons in cudafy
I'm quite sure you are capable of finding this yourself ;-) Take the time to look through the user manual and code, the investment will pay off
View ArticleNew Post: Compilation error: .
Hi I recently had that problem too. It turned out the cl.exe wasn't in the PATH. @Nick: Hi, I hope you're doing well. The problem here is that the capturing of the std and err out streams isn't working...
View ArticleNew Post: Compilation error: .
I find it incredible that 2 years on and people are still asking this same question do we think there may be lack of clarity in the install docs? I tried recently to re-install cuda and cudafy for vs...
View ArticleNew Post: Compilation error: .
@carlrees1234, in regard to cl.exe: The windows environment variable PATH must contain the location of visual studio's c compiler "cl.exe". This is required since cudatoolit's compilation tools will...
View ArticleNew Post: DES brute force
As described at the subject, I am interested to write a programm in c# using cudafy which will look for the key (8 bytes) for a given pair plain, cipher (plain encrypted using DES algorithm) arrays (8...
View ArticleSource code checked in, #30039
Add: Registry checks for NVIDIA and VS paths. Fix: NVCC process error handling could fail to correctly display output. NOTE: Only Windows 64-bit and CUDA 7 is now supported.
View ArticleCreated Unassigned: NSight Profiling error [1112]
I have been able to debug with the NSIGHT debugger, but I wanted to start learning about profiling. I started the exe with the VS2013 NSIGHT/ Start Performance Analysis. But I get the following error...
View ArticleCommented Unassigned: NSight Profiling error [1112]
I have been able to debug with the NSIGHT debugger, but I wanted to start learning about profiling. I started the exe with the VS2013 NSIGHT/ Start Performance Analysis. But I get the following error...
View ArticleNew Post: Visual Profiler (NVVP.exe)
I am able to debug, and profile from within VS2013 with the NSIGHT tools. But when I run the stand-alone Visual Profiler, it runs the EXE 2-3 times and I see the console log generating values, but...
View ArticleNew Post: Visual Profiler (NVVP.exe)
Hi In order to enable profiling, you'll have to enable profiling through an api call. Call cudaProfilerStart(); at the start of your program (or at the very least before calling the kernel) and call...
View ArticleNew Post: Visual Profiler (NVVP.exe)
Of course, make sure you disable those calls when you release your code to production.
View ArticleNew Post: Allocate DataTable
You can't. You can only use the base types within cudafy. For more info you should check the cudafy manual
View ArticleNew Post: The proper way to have arrays within arrays in cudafy
One can achieve arrays within arrays if the innermost dimension is of a constant length. Here's an example:[Cudafy] public unsafe struct MySampleStruct { public const int arrLen = 10; public fixed...
View ArticleNew Post: Visual Profiler (NVVP.exe)
I apologize for being a neophypte. Since my app is only built as a 64 bit app, I tracked down the CUDART dlls, and tried this at the top of the class definition (before the static methods)...
View Article