72 #ifndef TVM_RUNTIME_DISCO_SESSION_H_
73 #define TVM_RUNTIME_DISCO_SESSION_H_
75 #include <tvm/ffi/function.h>
110 return "kGetGlobalFunc";
112 return "kCallPacked";
114 return "kSyncWorker";
116 return "kCopyFromWorker0";
118 return "kCopyToWorker0";
120 return "kDebugGetFromRemote";
122 return "kDebugSetRegister";
124 LOG(FATAL) <<
"ValueError: Unknown DiscoAction: " <<
static_cast<int>(action);
150 inline void DebugCopyFrom(
int worker_id, ffi::AnyView source);
152 static constexpr
const char*
_type_key =
"runtime.disco.DRef";
171 class DRef :
public ObjectRef {
198 template <
typename... Args>
252 TVM_DLL
virtual void DebugSetRegister(int64_t reg_id, ffi::AnyView value,
int worker_id) = 0;
257 static constexpr
const char*
_type_key =
"runtime.disco.Session";
290 String process_pool_creator, String entrypoint);
303 virtual void Send(
const ffi::PackedArgs& args) = 0;
305 virtual ffi::PackedArgs
Recv() = 0;
307 virtual void Reply(
const ffi::PackedArgs& args) = 0;
347 template <
typename... Args>
349 constexpr
int offset = 3;
350 constexpr
int kNumArgs = offset +
sizeof...(Args);
351 ffi::AnyView packed_args[kNumArgs];
352 ffi::PackedArgs::Fill(packed_args,
356 std::forward<Args>(args)...);
357 return this->
CallWithPacked(ffi::PackedArgs(packed_args, kNumArgs));
An object that exists on all workers.
Definition: session.h:135
~DRefObj()
Definition: session.h:333
TVM_FFI_DECLARE_STATIC_OBJECT_INFO(DRefObj, Object)
static constexpr const uint32_t _type_index
Definition: session.h:153
ffi::Any DebugGetFromRemote(int worker_id)
Get the value of a DRef from a remote worker.
Definition: session.h:339
int64_t reg_id
The id of the register.
Definition: session.h:158
static constexpr const char * _type_key
Definition: session.h:152
void DebugCopyFrom(int worker_id, ffi::AnyView source)
Copy from the NDArray provided to a remote worker.
Definition: session.h:343
static constexpr const bool _type_final
Definition: session.h:154
ObjectRef session
Back-pointer to the host controler session.
Definition: session.h:160
Managed reference to DRefObj.
Definition: session.h:171
TVM_DEFINE_MUTABLE_NOTNULLABLE_OBJECT_REF_METHODS(DRef, ObjectRef, DRefObj)
A bi-directional channel for controler-worker communication. This channel is primarily used to transf...
Definition: session.h:299
virtual void Reply(const ffi::PackedArgs &args)=0
Reply a packed sequence to the sender.
virtual ffi::PackedArgs Recv()=0
Receive a packed sequence from worker.
virtual ~DiscoChannel()=default
virtual void Send(const ffi::PackedArgs &args)=0
Send a packed sequence to the receiver.
virtual ffi::PackedArgs RecvReply()=0
Receive a reply from the worker.
Managed NDArray. The array is backed by reference counted blocks.
Definition: ndarray.h:53
A Disco interactive session. It allows users to interact with the Disco command queue with various ff...
Definition: session.h:180
virtual DRef GetGlobalFunc(const std::string &name)=0
Get a global functions on workers.
friend struct SessionObj::FFI
Definition: session.h:254
virtual void Shutdown()=0
Signal all the workers to shutdown.
virtual DRef CallWithPacked(const ffi::PackedArgs &args)=0
Call packed function on each worker using a packed sequence. The calling convention: The first elemen...
virtual void DeallocReg(int reg_id)=0
Deallocate a register id, kill it on all workers, and append it to free_regs_.
virtual ffi::Any DebugGetFromRemote(int64_t reg_id, int worker_id)=0
Get the value of a register from a remote worker.
virtual void SyncWorker(int worker_id)=0
Synchrnoize the controler with a worker, and it will wait until worker finishes executing this instru...
TVM_DECLARE_BASE_OBJECT_INFO(SessionObj, Object)
virtual int64_t GetNumWorkers()=0
Get the number of workers in the session.
virtual ~SessionObj()=default
virtual void CopyFromWorker0(const NDArray &host_array, const DRef &remote_array)=0
Copy an NDArray from worker-0 to the controler-side NDArray.
virtual void CopyToWorker0(const NDArray &host_array, const DRef &remote_array)=0
Copy the controler-side NDArray to worker-0.
static constexpr const char * _type_key
Definition: session.h:257
virtual void InitCCL(String ccl, IntTuple device_ids)=0
Initialize the data plane between workers.
DRef TVM_ALWAYS_INLINE CallPacked(const DRef &func, Args &&... args)
Call a ffi::Function on workers providing variadic arguments.
virtual void DebugSetRegister(int64_t reg_id, ffi::AnyView value, int worker_id)=0
Set the value of a register on a remote worker.
Managed reference to SessionObj.
Definition: session.h:269
static Session ThreadedSession(int num_workers, int num_groups)
Create a session backed by a thread pool of workers.
static Session ProcessSession(int num_workers, int num_groups, String process_pool_creator, String entrypoint)
Create a session backed by pipe-based multiprocessing.
TVM_FFI_DEFINE_MUTABLE_OBJECT_REF_METHODS(Session, ObjectRef, SessionObj)
A special communication channel between controler and worker-0, assuming they are always collocated i...
Definition: session.h:316
std::mutex queue_mutex_
The mutex that guards host_arrays
Definition: session.h:324
std::queue< NDArray > host_arrays
The host-side arrays to passed to worker-0 for special uses, for example, copy-to-worker0 and copy-fr...
Definition: session.h:322
Defines tuple of integers.
std::string DiscoAction2String(DiscoAction action)
Converts the enum class DiscoAction to string.
Definition: session.h:103
DiscoAction
All possible kinds of Disco commands.
Definition: session.h:90
@ kRuntimeDiscoDRef
runtime::DRef for disco distributed runtime
Definition: object.h:65
ffi::Shape IntTuple
Definition: int_tuple.h:33
Performance counters for profiling via the PAPI library.
Definition: analyzer.h:37
A device-independent managed NDArray abstraction.
A managed object in the TVM runtime.