debug kokkos compile errors.

This commit is contained in:
Dave Pugmire 2020-10-21 17:14:56 -04:00
parent 64601619c3
commit 6e4d4932d7

@ -53,19 +53,19 @@ public:
const GhostCellArrayType& ghostCells,
vtkm::cont::Token& token)
: Bounds(bounds)
/*
, Field(field.PrepareForExecution(DeviceAdapter(), token))
, GhostCells(ghostCells.PrepareForInput(DeviceAdapter(), token))
, HaveGhostCells(ghostCells.GetNumberOfValues() > 0)
, InterpolationHelper(interpolationHelper->PrepareForExecution(DeviceAdapter(), token))
, Locator(locator->PrepareForExecution(DeviceAdapter(), token))
*/
{
#if 0
this->Locator = locator->PrepareForExecution(DeviceAdapter(), token);
this->InterpolationHelper = interpolationHelper->PrepareForExecution(DeviceAdapter(), token);
this->Field = field.PrepareForExecution(DeviceAdapter(), token);
this->GhostCells = ghostCells.PrepareForInput(DeviceAdapter(), token);
this->HaveGhostCells = (ghostCells.GetNumberOfValues() > 0);
#endif
}
template <typename Point>