Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/muda/buffer/details/graph_buffer_2d_view.inl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ MUDA_INLINE void ComputeGraphVar<Buffer2DView<T>>::update(const RWView& view)
m_value = view;
}
template <typename T>
MUDA_INLINE ComputeGraphVar<Buffer2DView<T>>& ComputeGraphVar<Buffer2DView<T>>::operator=(const RWView& view)
MUDA_INLINE auto ComputeGraphVar<Buffer2DView<T>>::operator=(const RWView& view) -> ComputeGraphVar<VarType>&
{
update(view);
return *this;
Expand Down
2 changes: 1 addition & 1 deletion src/muda/buffer/details/graph_buffer_3d_view.inl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ MUDA_INLINE void ComputeGraphVar<Buffer3DView<T>>::update(const RWView& view)
m_value = view;
}
template <typename T>
MUDA_INLINE ComputeGraphVar<Buffer3DView<T>>& ComputeGraphVar<Buffer3DView<T>>::operator=(const RWView& view)
MUDA_INLINE auto ComputeGraphVar<Buffer3DView<T>>::operator=(const RWView& view) -> ComputeGraphVar<VarType>&
{
update(view);
return *this;
Expand Down
2 changes: 1 addition & 1 deletion src/muda/buffer/details/graph_buffer_view.inl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ MUDA_INLINE void ComputeGraphVar<BufferView<T>>::update(const RWView& view)
m_value = view;
}
template <typename T>
MUDA_INLINE ComputeGraphVar<BufferView<T>>& ComputeGraphVar<BufferView<T>>::operator=(const RWView& view)
MUDA_INLINE auto ComputeGraphVar<BufferView<T>>::operator=(const RWView& view) -> ComputeGraphVar<VarType>&
{
update(view);
return *this;
Expand Down
2 changes: 1 addition & 1 deletion src/muda/buffer/details/graph_var_view.inl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ MUDA_INLINE void ComputeGraphVar<VarView<T>>::update(const RWView& view)
m_value = view;
}
template <typename T>
MUDA_INLINE ComputeGraphVar<VarView<T>>& ComputeGraphVar<VarView<T>>::operator=(const RWView& view)
MUDA_INLINE auto ComputeGraphVar<VarView<T>>::operator=(const RWView& view) -> ComputeGraphVar<VarType>&
{
update(view);
return *this;
Expand Down