//============================================================================ // 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. //============================================================================ #ifndef vtk_m_cont_ArrayCopyDevice_h #define vtk_m_cont_ArrayCopyDevice_h #include #include #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 { namespace detail { template VTKM_CONT void ArrayCopyImpl(const vtkm::cont::ArrayHandle& source, vtkm::cont::ArrayHandle& destination) { VTKM_STATIC_ASSERT((!std::is_same::value || !std::is_same::value)); // Current implementation of Algorithm::Copy will first try to copy on devices where the // data is already available. vtkm::cont::Algorithm::Copy(source, destination); } template VTKM_CONT void ArrayCopyImpl(const vtkm::cont::ArrayHandle& source, vtkm::cont::ArrayHandle& destination) { destination.DeepCopyFrom(source); } } // namespace detail /// \brief Does a deep copy from one array to another array. /// /// Given a source `ArrayHandle` and a destination `ArrayHandle`, this /// function allocates the destination `ArrayHandle` to the correct size and /// deeply copies all the values from the source to the destination. /// /// This method will attempt to copy the data using the device that the input /// data is already valid on. If the input data is only valid in the control /// environment, the runtime device tracker is used to try to find another /// device. /// /// This should work on some non-writable array handles as well, as long as /// both \a source and \a destination are the same type. /// /// This version of array copy is templated to create custom code for the /// particular types of `ArrayHandle`s that you are copying. This will /// ensure that you get the best possible copy, but requires a device /// compiler and tends to bloat the code. /// /// @{ /// template VTKM_CONT void ArrayCopyDevice(const vtkm::cont::ArrayHandle& source, vtkm::cont::ArrayHandle& destination) { using InArrayType = vtkm::cont::ArrayHandle; using OutArrayType = vtkm::cont::ArrayHandle; using SameTypes = std::is_same; using IsWritable = vtkm::cont::internal::IsWritableArrayHandle; // There are three cases handled here: // 1. The arrays are the same type: // -> Deep copy the buffers and the Storage object // 2. The arrays are different and the output is writable: // -> Do element-wise copy // 3. The arrays are different and the output is not writable: // -> fail (cannot copy) // Give a nice error message for case 3: VTKM_STATIC_ASSERT_MSG(IsWritable::value || SameTypes::value, "Cannot copy to a read-only array with a different " "type than the source."); // Static dispatch cases 1 & 2 detail::ArrayCopyImpl(source, destination); } /// @} } } // namespace vtkm::cont #endif //vtk_m_cont_ArrayCopyDevice_h