MCPcopy
hub / github.com/NVIDIA/TensorRT-LLM / min

Method min

tensorrt_llm/python_plugin.py:172–174  ·  view source on GitHub ↗
(self, expr: Union["DimensionExpr", trt.IDimensionExpr, int, Type[None]])

Source from the content-addressed store, hash-verified

170 return expr_operation(self.expr, expr, trt.DimensionOperation.MAX, self.exprBuilder)
171
172 def min(self, expr: Union["DimensionExpr", trt.IDimensionExpr, int, Type[None]]):
173 expr = make_expr(self.exprBuilder, expr)
174 return expr_operation(self.expr, expr, trt.DimensionOperation.MIN, self.exprBuilder)
175
176
177class ShapeExpr:

Callers 15

dump_statsFunction · 0.80
compare_logprobsFunction · 0.80
visualize_2d_heatmapFunction · 0.80
run.pyFile · 0.80
to_onnxMethod · 0.80
process_histogram_stepFunction · 0.80
sparse_attn_indexerMethod · 0.80

Calls 2

make_exprFunction · 0.85
expr_operationFunction · 0.85