Get Started
User Guide
API Reference
Model Tutorials
Developer Notes
Misc
SharedMemoryDGLGraph.
apply_nodes
Apply the function on the nodes to update their features.
If None is provided for func, nothing will happen.
func
In the graph store, all updates are written inplace.
func (callable or None, optional) – Apply function on the nodes. The function should be a Node UDF.
Node UDF
v (int, iterable of int, tensor, optional) – The node (ids) on which to apply func. The default value is all the nodes.
inplace (bool, optional) – The value is always True.