MCPcopy
hub / github.com/dmlc/dgl / min

Function min

python/dgl/backend/backend.py:515–530  ·  view source on GitHub ↗

Reduce min the input tensor along the given dim. Parameters ---------- input : Tensor The input tensor. dim : int The reduce dim. Returns ------- Tensor A framework-specific tensor.

(input, dim)

Source from the content-addressed store, hash-verified

513
514
515def min(input, dim):
516 """Reduce min the input tensor along the given dim.
517
518 Parameters
519 ----------
520 input : Tensor
521 The input tensor.
522 dim : int
523 The reduce dim.
524
525 Returns
526 -------
527 Tensor
528 A framework-specific tensor.
529 """
530 pass
531
532
533def reduce_min(input):

Callers 15

diagFunction · 0.50
identityFunction · 0.50
sampleMethod · 0.50
_divide_by_workerFunction · 0.50
_split_even_to_partFunction · 0.50
processMethod · 0.50
knn_graphFunction · 0.50
segmented_knn_graphFunction · 0.50
_nndescent_knn_graphFunction · 0.50
lap_peFunction · 0.50

Calls

no outgoing calls

Tested by 1

testFunction · 0.40