//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. // This software is distributed WITHOUT ANY WARRANTY; without even // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // PURPOSE. See the above copyright notice for more information. // // Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). // Copyright 2017 UT-Battelle, LLC. // Copyright 2017 Los Alamos National Security. // // Under the terms of Contract DE-NA0003525 with NTESS, // the U.S. Government retains certain rights in this software. // // Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National // Laboratory (LANL), the U.S. Government retains certain rights in // this software. //============================================================================ #ifndef vtk_m_cont_ArrayCopy_h #define vtk_m_cont_ArrayCopy_h #include #include #include #include #include // TODO: When virtual arrays are available, compile the implementation in a .cxx/.cu file. Common // arrays are copied directly but anything else would be copied through virtual methods. namespace vtkm { namespace cont { /// \brief Does a deep copy from one array to another array. /// /// Given a source \c ArrayHandle and a destination \c ArrayHandle, this function allocates the /// destination \c ArrayHandle to the correct size and deeply copies all the values from the source /// to the destination. /// /// This version of the method takes a device adapter on which to perform the copy. If you do not /// have a device adapter handy, use a version of \c ArrayCopy that uses a \c RuntimeDeviceTracker /// (or no device at all) to choose a good option for you. /// template VTKM_CONT void ArrayCopy(const vtkm::cont::ArrayHandle& source, vtkm::cont::ArrayHandle& destination, Device) { vtkm::cont::DeviceAdapterAlgorithm::Copy( vtkm::cont::make_ArrayHandleCast(source), destination); } namespace detail { template struct ArrayCopyFunctor { using InArrayHandleType = vtkm::cont::ArrayHandle; InArrayHandleType InputArray; using OutArrayHandleType = vtkm::cont::ArrayHandle; OutArrayHandleType OutputArray; bool OnlyUseCurrentInputDevice; VTKM_CONT ArrayCopyFunctor(const InArrayHandleType& input, OutArrayHandleType& output, bool onlyUseCurrentInputDevice) : InputArray(input) , OutputArray(output) , OnlyUseCurrentInputDevice(onlyUseCurrentInputDevice) { } template VTKM_CONT bool operator()(Device) { VTKM_IS_DEVICE_ADAPTER_TAG(Device); if (this->OnlyUseCurrentInputDevice && (vtkm::cont::DeviceAdapterTraits::GetId() != this->InputArray.GetDeviceAdapterId())) { // We were asked to only copy on the device that already has the data from the input array. // This is not that device, so return without copying. return false; } vtkm::cont::ArrayCopy(this->InputArray, this->OutputArray, Device()); return true; } }; } // namespace detail /// \brief Does a deep copy from one array to another array. /// /// Given a source \c ArrayHandle and a destination \c ArrayHandle, this function allocates the /// destination \c ArrayHandle to the correct size and deeply copies all the values from the source /// to the destination. /// /// This method optionally takes a \c RuntimeDeviceTracker to control which devices to try. /// template VTKM_CONT void ArrayCopy( const vtkm::cont::ArrayHandle& source, vtkm::cont::ArrayHandle& destination, vtkm::cont::RuntimeDeviceTracker tracker = vtkm::cont::GetGlobalRuntimeDeviceTracker()) { bool isCopied = false; detail::ArrayCopyFunctor functor( source, destination, true); // First pass, only use source's already loaded device. isCopied = vtkm::cont::TryExecute(functor, tracker); if (isCopied) { return; } // Second pass, use any available device. functor.OnlyUseCurrentInputDevice = false; isCopied = vtkm::cont::TryExecute(functor, tracker); if (isCopied) { return; } // If we are here, then we just failed to copy. throw vtkm::cont::ErrorExecution("Failed to run ArrayCopy on any device."); } } } // namespace vtkm::cont #endif //vtk_m_cont_ArrayCopy_h