openvino.runtime.opset15.search_sorted#

openvino.runtime.opset15.search_sorted(sorted_sequence: Node | int | float | ndarray, values: Node | int | float | ndarray, right_mode: bool = False, name: str | None = None) Node#

Return a node which generates SearchSorted operation.

Parameters:
  • sorted_sequence – The node providing sorted sequence to search in.

  • values – The node providing searched values.

  • right_mode – If set to False, return the first suitable index that is found for given value. If set to True, return the last such index. Defaults to False.

  • name – The optional name for the created output node.

Returns:

The new node performing SearchSorted operation.