cloudFPGA (cF) API  1.0
The documentation of the source code of cloudFPGA (cF)
cFSPlib.comm Namespace Reference

Functions

def send (cFcluster cluster, node_id, data_obj, proto='udp', port=CF_DEFAULT_PORT)
 
def recv (cFcluster cluster, node_id, data_obj, proto='udp', port=CF_DEFAULT_PORT)
 

Variables

int CF_DEFAULT_PORT = 2718
 

Function Documentation

◆ recv()

def cFSPlib.comm.recv ( cFcluster  cluster,
  node_id,
  data_obj,
  proto = 'udp',
  port = CF_DEFAULT_PORT 
)

Definition at line 46 of file comm.py.

46 def recv(cluster: cFcluster, node_id, data_obj, proto='udp', port=CF_DEFAULT_PORT):
47  print("NOT YET IMPLEMENTED")
48  return -1
49 
def recv(cFcluster cluster, node_id, data_obj, proto='udp', port=CF_DEFAULT_PORT)
Definition: comm.py:46

◆ send()

def cFSPlib.comm.send ( cFcluster  cluster,
  node_id,
  data_obj,
  proto = 'udp',
  port = CF_DEFAULT_PORT 
)

Definition at line 41 of file comm.py.

41 def send(cluster: cFcluster, node_id, data_obj, proto='udp', port=CF_DEFAULT_PORT):
42  print("NOT YET IMPLEMENTED")
43  return -1
44 
45 
def send(cFcluster cluster, node_id, data_obj, proto='udp', port=CF_DEFAULT_PORT)
Definition: comm.py:41
Here is the caller graph for this function:

Variable Documentation

◆ CF_DEFAULT_PORT

int cFSPlib.comm.CF_DEFAULT_PORT = 2718

Definition at line 38 of file comm.py.