krzikalla

Results 6 issues of krzikalla

I tried to figure out the version of my installed google/benchmark. It is either 1.5.0 or 1.5.1, but I am unsure. I'd like to have a version.h file or something...

enhancement
help wanted

If you change https://github.com/VcDevel/Vc/blob/b84dcd0a65d8dc5de6a2bd4d367882b3748f812c/Vc/common/simdarrayfwd.h#L49-L54 to ```` Vc_INTRINSIC Vector(const Vector &x) = default; Vc_INTRINSIC Vector &operator=(const Vector &x) = default; ```` `Vector` and in turn `SimdArray` becomes trivially copyable. Currently we...

I experience crashes since some weeks. During the last days it is happening so frequently, that I can't consider it a productive environment anymore. Often it happens after I change...

ssh

What are the chances that one day I will be able to write the following: ``` #include #ifdef __NVCC__ #define FN_PREFIX __host__ __device__ #else #define FN_PREFIX #endif FN_PREFIX void flexible_foo(std::complex...

Support the benchmarking of code, which relies on other multi-threading APIs, e.g. OpenMP.

By disallowing a binding of simd::reference to an lvalue the code below (ref. https://godbolt.org/z/7qW8bffe5) becomes clumsy: ``` #include #include namespace stdx = std::experimental; void foo(auto&& x) { std::forward(x) = .2;...