//============================================================================ // 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 { struct ArrayCopyFunctor { template VTKM_CONT bool operator()(Device, const InArray& input, OutArray& output) { VTKM_IS_DEVICE_ADAPTER_TAG(Device); vtkm::cont::ArrayCopy(input, output, 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()) { detail::ArrayCopyFunctor functor; // First pass, only use source's already loaded device. bool isCopied = vtkm::cont::TryExecuteOnDevice( source.GetDeviceAdapterId(), functor, tracker, source, destination); if (!isCopied) { // Second pass, use any available device. isCopied = vtkm::cont::TryExecute(functor, tracker, source, destination); } if (!isCopied) { // If after the second pass, still not valid through an exception throw vtkm::cont::ErrorExecution("Failed to run ArrayCopy on any device."); } } } } // namespace vtkm::cont #endif //vtk_m_cont_ArrayCopy_h