Program Listing for File SyclCopyToOperation.hpp

Return to documentation for file (umpire/op/SyclCopyToOperation.hpp)

//////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2016-20, Lawrence Livermore National Security, LLC and Umpire
// project contributors. See the COPYRIGHT file for details.
//
// SPDX-License-Identifier: (MIT)
//////////////////////////////////////////////////////////////////////////////
#ifndef UMPIRE_SyclCopyToOperation_HPP
#define UMPIRE_SyclCopyToOperation_HPP

#include "umpire/op/MemoryOperation.hpp"

namespace umpire {
namespace op {

/*!
 * \brief Copy operation to move data between a Intel GPU and CPU memory.
 */
class SyclCopyToOperation : public MemoryOperation {
 public:
  /*!
   * @copybrief MemoryOperation::transform
   *
   * Uses SYCL memcpy to move data when src_ptr on CPU to dst_ptr on Intel GPU
   *
   * @copydetails MemoryOperation::transform
   */
  void transform(void* src_ptr, void** dst_ptr,
                 util::AllocationRecord* src_allocation,
                 util::AllocationRecord* dst_allocation, std::size_t length);
};

} // end of namespace op
} // end of namespace umpire

#endif // UMPIRE_SyclCopyToOperation_HPP