jittor_geometric.ops
Author: lusz Date: 2024-06-21 11:01:25 Description:
- jittor_geometric.ops.from_nodes(csc, nodes)[source]
Given a CSC structure and a set of input nodes, find all the neighbor nodes.
- Parameters:
csc (CSC) – Compressed Sparse Column structure.
nodes (Var) – Input node IDs (Var type).
- Returns:
A Var containing all neighbor nodes corresponding to the input nodes.
- Return type:
Var
- jittor_geometric.ops.to_nodes(csr, nodes)[source]
Given a CSR structure and a set of input nodes, find all the neighbor nodes.
- Parameters:
csr (CSR) – Compressed Sparse Row structure.
nodes (Var) – Input node IDs (Var type).
- Returns:
A Var containing all neighbor nodes corresponding to the input nodes.
- Return type:
Var