124class SharedMemoryParallelDispatchBase
128 ARCCORE_INTERNAL_DEFINE_REFERENCE_COUNTED_INCLASS_METHODS();
131 template <
typename DataType>
friend class SharedMemoryParallelDispatch;
147 virtual void resize(
Int64 new_size) = 0;
148 virtual MutableMemoryView memoryView()
const = 0;
155 ConstMemoryView send_buf;
158 MutableMemoryView recv_buf;
171 void _genericAllToAll(ConstMemoryView send_buf, MutableMemoryView recv_buf,
Int32 count);
172 void _genericAllGather(ConstMemoryView send_buf, MutableMemoryView recv_buf);
173 void _genericAllGatherVariable(ConstMemoryView send_buf,
IResizableArray* recv_buf);
174 void _genericAllToAllVariable(ConstMemoryView send_buf,
176 MutableMemoryView recv_buf,
178 void _genericScatterVariable(ConstMemoryView send_buf, MutableMemoryView recv_buf,
Int32 root);
179 Request _genericSend(ConstMemoryView send_buffer,
const PointToPointMessageInfo& message2);
180 Request _genericReceive(MutableMemoryView recv_buffer,
const PointToPointMessageInfo& message2);
181 void _genericBroadcast(MutableMemoryView send_buf,
Int32 rank);
186 ConstMemoryView m_const_view;
187 MutableMemoryView m_recv_view;
188 ConstMemoryView m_send_view;
192 MutableMemoryView m_broadcast_view;
203 void _collectiveBarrier();
217class SharedMemoryParallelDispatch
218:
public SharedMemoryParallelDispatchBase
222 using BaseClass = SharedMemoryParallelDispatchBase;
234 virtual void resize(
Int64 new_size) { m_array_ref.resize(new_size); }
235 virtual MutableMemoryView memoryView()
const {
return MutableMemoryView(m_array_ref.span()); }
277 ~SharedMemoryParallelDispatch()
override;
278 void finalize()
override;
289 void allReduce(eReduceType op,
Span<Type> send_buf)
override;
295 Request send(
Span<const Type> send_buffer,
const PointToPointMessageInfo& message)
override;
296 Request receive(
Span<Type> recv_buffer,
Int32 rank,
bool is_blocked)
override;
297 Request receive(
Span<Type> recv_buffer,
const PointToPointMessageInfo& message)
override;
300 Request nonBlockingBroadcast(
Span<Type> send_buf,
Int32 rank)
override;
311 this->broadcast(
Span<Type>(send_buf), sub_domain);
321 void gather(ConstArrayView<Type> send_buf, ArrayView<Type> recv_buf,
Integer rank)
override
323 this->gather(Span<const Type>(send_buf), Span<Type>(recv_buf), rank);
325 void gatherVariable(ConstArrayView<Type> send_buf, Array<Type>& recv_buf,
Integer rank)
override
327 this->gatherVariable(Span<const Type>(send_buf), recv_buf, rank);
329 void scatterVariable(ConstArrayView<Type> send_buf, ArrayView<Type> recv_buf,
Integer root)
override
331 this->scatterVariable(Span<const Type>(send_buf), Span<Type>(recv_buf), root);
333 void allToAll(ConstArrayView<Type> send_buf, ArrayView<Type> recv_buf,
Integer count)
override
335 this->allToAll(Span<const Type>(send_buf), Span<Type>(recv_buf), count);
341 this->allToAllVariable(Span<const Type>(send_buf), send_count, send_index,
342 Span<Type>(recv_buf), recv_count, recv_index);
344 Request send(ConstArrayView<Type> send_buffer,
Integer proc,
bool is_blocked)
override
346 return this->send(Span<const Type>(send_buffer), proc, is_blocked);
348 Request recv(ArrayView<Type> recv_buffer,
Int32 rank,
bool is_blocked)
override
350 return this->receive(Span<Type>(recv_buffer), rank, is_blocked);
352 void allReduce(eReduceType op, ArrayView<Type> send_buf)
override
354 return this->allReduce(op, Span<Type>(send_buf));
357 void send(ConstArrayView<Type> send_buffer,
Integer proc)
override;
358 void recv(ArrayView<Type> recv_buffer,
Integer proc)
override;
359 void sendRecv(ConstArrayView<Type> send_buffer, ArrayView<Type> recv_buffer,
Integer proc)
override;
360 Type allReduce(eReduceType op,
Type send_buf)
override;
361 Type scan(eReduceType op,
Type send_buf)
override;
362 void scan(eReduceType op, ArrayView<Type> send_buf)
override;
363 void computeMinMaxSum(
Type val,
Type& min_val,
Type& max_val,
Type& sum_val,
365 Int32& max_rank)
override;
366 void computeMinMaxSum(ConstArrayView<Type> values,
367 ArrayView<Type> min_values,
368 ArrayView<Type> max_values,
369 ArrayView<Type> sum_values,
370 ArrayView<Int32> min_ranks,
371 ArrayView<Int32> max_ranks)
override;
372 ITypeDispatcher<Type>* toArccoreDispatcher()
override {
return this; }
378 ArrayView<SharedMemoryParallelDispatch<Type>*> m_all_dispatchs;
387 void _allReduceOrScan(eReduceType op, Span<Type> send_buf,
bool is_scan);