this is my first post on Stack Overflow, so please excuse or correct any faux pas of mine. Thanks in advance.
I'm translating some example code line by line from C# to VB.NET in an effort to understand how to use GPU.NET in VB.NET.
Here is a link to the entire example code: https://github.com/tidepowerd/GPU.NET-Example-Projects/blob/master/CSharp.LinearAlgebra/VectorOps.cs
The lines which confuse me looks like this:
[Kernel(CustomFallbackMethod = "AddCpu")]
I see in the code that these lines appear just before the method declaration:
"private static void"
What kind of line appears before a method declaration? Or is it a continuation of the last? I hope this is obvious to a native C Sharper.
The namespace is an imported resource from http://www.tidepowerd.com/ It's called GPU.NET. It enables GPGPU or "General Purpose Computing on Graphics Processing Units" in languages other than Nvidia's "CUDA C", such as VB.NET.