Skip to content
Snippets Groups Projects
Commit f37cb576 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Added FIXME notes to VectorField.h

parent 24fccf17
No related branches found
No related tags found
No related merge requests found
......@@ -182,6 +182,7 @@ class VectorField< Size, MeshFunction< Mesh, MeshEntityDimension, Real > >
{
VectorType v;
for( int i = 0; i < Size; i++ )
// FIXME: the dereferencing operator of FunctionPointer is not __cuda_callable__
v[ i ] = ( *this->vectorField[ i ] )[ index ];
return v;
}
......@@ -192,6 +193,7 @@ class VectorField< Size, MeshFunction< Mesh, MeshEntityDimension, Real > >
{
VectorType v;
for( int i = 0; i < Size; i++ )
// FIXME: the dereferencing operator of FunctionPointer is not __cuda_callable__
v[ i ] = ( *this->vectorField[ i ] )( meshEntity );
return v;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment