Zeljko Vrba

Results 10 comments of Zeljko Vrba

That one is easy though: ditch OSX support. OSX is IME by far the worst and most buggy implementation of POSIX APIs that I've had to work with.

ISPC (https://ispc.github.io/) could be another option. It also has an (experimental) PTX backend.

I'm skeptical about using something not backed by a major industry vendor. Halide is an academic project, they may get tired of developing it (when they've exhausted publishable stuff), they...

@lachs0r CUDA having "lackluster documentation"?! It has more documentation than I've ever seen for OpenCL, it integrates nicely with C++ language, with Visual Studio debugger, it comes with decent performance/profiling...

Hi, I think the comment should really be placed into the aspnet core page I linked to in the original post. I'm new to aspnet core and that documentation is...

Yes, but how do I send a private message on github?

Yes, it's an API I'm building myself. It's a plain ASPNET Core api configured to verify tokens issued by Azure AD. I do not test against localhost, I use only...

The following (somewhat paradoxically) does not work in net6 with preview features enabled: ``` interface IStatics { public abstract static int AI { get; } public static int CI =>...

> In your example CI is not abstract, it's a legit static member of that interface. You have to make this thing static virtual to get it working from T....