6557291fdc07eca0efaa288e9cba7e3a8345c13d,python/dgl/distributed/dist_graph.py,DistGraph,__init__,#DistGraph#Any#Any#Any#Any#,298
Before Change
self._g = as_heterograph(g)
else:
self._g = None
self._gpb = get_shared_mem_partition_book(graph_name, self._g)
if self._gpb is None:
self._gpb = gpb
self._client.barrier()
self._client.map_shared_data(self._gpb)
self._ndata = NodeDataView(self)
After Change
self._client.add_data(_get_data_name(name, EDGE_PART_POLICY), edge_feats[name])
rpc.set_num_client(1)
else:
self._init()
self._ndata = NodeDataView(self)
self._edata = EdgeDataView(self)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances
Project Name: dmlc/dgl
Commit Name: 6557291fdc07eca0efaa288e9cba7e3a8345c13d
Time: 2020-07-28
Author: VoVAllen@users.noreply.github.com
File Name: python/dgl/distributed/dist_graph.py
Class Name: DistGraph
Method Name: __init__
Project Name: dmlc/dgl
Commit Name: 4f499c7ffb5f6746c4ccd87b93b0ef09c32cf424
Time: 2020-08-05
Author: VoVAllen@users.noreply.github.com
File Name: python/dgl/distributed/dist_graph.py
Class Name: DistGraph
Method Name: __init__
Project Name: ray-project/ray
Commit Name: 448013222978734615aaebc8e312f946fdce94fe
Time: 2021-03-31
Author: 74173148+iycheng@users.noreply.github.com
File Name: python/ray/util/client/server/dataservicer.py
Class Name: DataServicer
Method Name: Datapath