Skip to content

Commit

Permalink
Fix warning in actuator functors
Browse files Browse the repository at this point in the history
  • Loading branch information
sayerhs committed Mar 14, 2021
1 parent d6816d7 commit b70bdfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actuator/ActuatorFunctorsFAST.C
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ActFastCacheRelativeVelocities(ActuatorBulkFAST& actBulk)
const int turbId = actBulk.localTurbineId_;

Kokkos::parallel_for(
"cache rel vel", range_policy, KOKKOS_LAMBDA(int i) {
"cache rel vel", range_policy, ACTUATOR_LAMBDA(int i) {
int index = i - offset(turbId);
auto rV = Kokkos::subview(relVel, i, Kokkos::ALL);
fast->getRelativeVelForceNode(rV.data(), index, turbId);
Expand Down

0 comments on commit b70bdfe

Please sign in to comment.