Explore >> Select a destination


You are here

gcher.com
| | peanball.net
3.9 parsecs away

Travel
| |
| | migocpp.wordpress.com
3.0 parsecs away

Travel
| | Lambda closures are an integral part of modern C++, in CUDA code they can be used in different levels. At the very basic, they can be used inside the device code: __global__ void setValueInnerLambda(cudacpp::DeviceVector c, int val) { auto idx = threadIdx.x; auto op = [=](int& i) { i = val; }; op(c[idx]); } Starting...
| | qsantos.fr
4.5 parsecs away

Travel
| | This article will quickly explain the Rust types [T; N], &[T; N], &[T], Vec, &Vec with C code, and what the str, &str, String, OsString and CString add. Arrays and Slices Rust C [T; N] (array)Example: [i32; 100]Allocated on the stack T[N]Example: int[100]Allocated on the stack &[T; N] (array reference)Example: &[i32; 100]N is tracked at ... Continue reading Rust Strings for C Programmers ?
| | blog.ropnop.com
33.0 parsecs away

Travel
| Write up of my journey figuring out how to host the CLR and execute .NET assemblies from memory in pure Go.