Matthias Kretz
Matthias Kretz
Leave it for now. Shouldn't be a problem for me to rebase onto this time.
Thanks, a successful and happy new year to you as well!! > different "packings" You can encode this packing in variations of the ABI tag type. E.g. ```cpp namespace datapar_abi...
Hi, sorry for the late answer - hopefully not too late. In general, when you compile Vc itself, the setting only matters for building the unit tests and examples. When...
This looks like it hits the linked GCC PR, yes. However from what I learned about `__cdecl`, MSVC makes any overaligned by-value function call argument ill-formed. This seems to be...
Thanks for the test case. I'll try to look into this, but no promises on a timeline yet. But like we discussed, you should try annotating the MIC headers and...
I looked at the Intel article and it says that inlining still works for an indirect function call inside an offload region. Since the intrinsics are all called indirectly through...
The `-nostdinc++` flag (where does it come from?) leads to the "warning: argument unused during compilation: '-nostdinc++' [-Wunused-command-line-argument]" warning, which makes cmake think the tested compiler flag is not supported....
> Probably because I am using clang with libc++ on Linux. Without the flag clang picks libstdc++ and then tries to link libc++ with it. I've never seen that. The...
> > Why do you think this behavior is buggy? > > Because the compiler supports the feature, yet CMake incorrectly detects > that it does not. Any suggestion how...
That's not a fair characterization and misses the point of the problem I'm solving here. 1. I don't expect things to work when I start compiling any project going in...