surfacetrafo simded

This commit is contained in:
Joachim Schöberl 2016-07-12 12:45:21 +02:00
parent 5681d9c00a
commit 78297720b5

View File

@ -725,6 +725,12 @@ namespace netgen
__m256d * x, size_t sx,
__m256d * dxdxi, size_t sdxdxi) const
{
mesh->GetCurvedElements().CalcMultiPointSurfaceTransformation<3>
(elnr, npts,
reinterpret_cast<const SIMD<double>*> (xi), sxi,
reinterpret_cast<SIMD<double>*> (x), sx,
reinterpret_cast<SIMD<double>*> (dxdxi), sdxdxi);
/*
for (int i = 0; i < npts; i++)
{
double hxi[4][2];
@ -745,6 +751,7 @@ namespace netgen
x += sx;
dxdxi += sdxdxi;
}
*/
}
#endif