Skip to content
Merged
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
21 changes: 15 additions & 6 deletions include/graphblas/reference/vector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -234,13 +234,22 @@ namespace grb {

friend class PinnedVector< D, BSP1D >;

friend Vector< D, reference, MyCoordinates > internal::wrapRawVector<
D, reference
>( const size_t n, D *__restrict__ const raw );
template< typename ValueType, Backend backend >
friend Vector<
ValueType, backend,
internal::Coordinates<
config::IMPLEMENTATION< backend >::coordinatesBackend()
>
> internal::wrapRawVector( const size_t n, ValueType *__restrict__ const
raw );

friend const Vector< D, reference, MyCoordinates > internal::wrapRawVector<
D, reference
>( const size_t n, const D *__restrict__ const raw );
template< typename ValueType, Backend backend >
friend const Vector<
ValueType, backend,
internal::Coordinates<
config::IMPLEMENTATION< backend >::coordinatesBackend()
>
> internal::wrapRawVector( const size_t n, const ValueType *__restrict__ const raw );

/* *********************
Auxiliary backend friends
Expand Down