On Saturday, 19 November 2016 at 13:11:18 UTC, e-y-e wrote:
...
Sorry for the noise, I found an LDC issue [1] that explains where
I am going wrong (in short, core.simd is not supported in LDC,
instead ldc.simd should be used).
[1] https://github.com/ldc-developers/ldc/issues/595
Found that I was not able to use SIMD as
import core.simd : __simd;
produces the error: 'module core.simd import '__simd' not found'.
Upon further inspection I found that the D_SIMD version is not
defined as
version (D_SIMD)
{
pragma(msg, "SIMD Support");
}
else
{
pragma(msg, "No SIM