Skip to content
Snippets Groups Projects
Commit 4499c509 authored by Anna Wellmann's avatar Anna Wellmann
Browse files

Fix type conversion warning

parent 04c5ef97
No related branches found
No related tags found
1 merge request!104Add Communication Hiding to GPU version
...@@ -69,7 +69,7 @@ struct CFBorderBulk { ...@@ -69,7 +69,7 @@ struct CFBorderBulk {
std::vector<uint> fluidNodeIndicesBorder = { 10, 11, 12, 13, 14, 15, 16 }; std::vector<uint> fluidNodeIndicesBorder = { 10, 11, 12, 13, 14, 15, 16 };
std::vector<uint> iCellCFC = { 1, 11, 3, 13, 5, 15, 7 }; std::vector<uint> iCellCFC = { 1, 11, 3, 13, 5, 15, 7 };
std::vector<uint> iCellCFF = { 2, 12, 4, 14, 6, 16, 8 }; std::vector<uint> iCellCFF = { 2, 12, 4, 14, 6, 16, 8 };
uint sizeOfICellCf = iCellCFC.size(); uint sizeOfICellCf = (uint) iCellCFC.size();
uint neighborX_SP[17] = { 0u }; uint neighborX_SP[17] = { 0u };
uint neighborY_SP[17] = { 0u }; uint neighborY_SP[17] = { 0u };
uint neighborZ_SP[17] = { 0u }; uint neighborZ_SP[17] = { 0u };
......
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