MUDA
Loading...
Searching...
No Matches
buffer_info_accessor.h
1#pragma once
2#include <utility>
3namespace muda::details::buffer
4{
6{
7 public:
8 template <typename BufferView>
9 static auto cuda_pitched_ptr(BufferView&& b)
10 {
11 return std::forward<BufferView>(b).cuda_pitched_ptr();
12 }
13};
14} // namespace muda::details::buffer
Definition buffer_info_accessor.h:6