-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Relay, TOPI] Add searchsorted op (#9184)
* Add relay definition * 1D cpu test working * multi dim working * gpu version working * check shape in type rel * support side * use target specfic max threads * add relay boilerplate * relay test working * cleanup topi test * fix test * add torch converter * handle other cases * more topi test * support torch bucketize * update doc * fix tests * fix lint * rebase fix * make the test case smaller * add tests for edge cases * replace "side" attribute with boolean "right" * add more descrition to binear_search IR gen params * return index from binary_search rather than update inplace * remove unused argument * format fix
- Loading branch information
Showing
19 changed files
with
619 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,3 +59,4 @@ | |
from .sparse_reshape import * | ||
from .transform import * | ||
from .unique import * | ||
from .searchsorted import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
# pylint: disable=invalid-name | ||
"""searchsorted operator for GPU""" | ||
import tvm | ||
from tvm import te | ||
from .. import utils | ||
from ..searchsorted import binary_search | ||
|
||
|
||
def searchsorted(sorted_sequence, values, right, out_dtype="int64"): | ||
"""Find indices where elements should be inserted to maintain order. | ||
If `sorted_sequence` is N-dimensional, the innermost dimension of | ||
`values` are searched in the corresponding dimension of `sorted_sequence`. | ||
Parameters | ||
---------- | ||
sorted_sequence : te.Tensor | ||
N-D or 1-D Tensor, containing monotonically increasing sequence | ||
on the innermost dimension. | ||
values : te.Tensor | ||
N-D Tensor containing the search values. When `sorted_sequence` is 1-D, | ||
the shape of `values` can be arbitrary. Otherwise, ranks of `sorted_sequence` | ||
and `values` must be the same, and outer N-1 axes must have the same size. | ||
right : bool, optional | ||
Controls which index is returned if a value lands exactly on one of sorted values. If | ||
False, the index of the first suitable location found is given. If true, return the | ||
last such index. If there is no suitable index, return either 0 or N (where N is the | ||
size of the innermost dimension). | ||
dtype : string, optional | ||
The data type of the output indices. | ||
Returns | ||
------- | ||
indices : te.Tensor | ||
Tensor with same shape as values, representing the indices of | ||
elements of `values` if they are inserted in `sorted_sequence`. | ||
""" | ||
|
||
def ir(sorted_sequence, values, indices): | ||
ib = tvm.tir.ir_builder.create() | ||
sorted_sequence_shape = sorted_sequence.shape | ||
values_shape = values.shape | ||
num_search = utils.prod(values_shape) | ||
search_range = sorted_sequence_shape[-1] | ||
|
||
sorted_sequence = ib.buffer_ptr(sorted_sequence) | ||
values = ib.buffer_ptr(values) | ||
indices = ib.buffer_ptr(indices) | ||
|
||
max_threads = int(tvm.target.Target.current(allow_none=False).max_num_threads) | ||
bx = te.thread_axis("blockIdx.x") | ||
tx = te.thread_axis("threadIdx.x") | ||
ib.scope_attr( | ||
bx, "thread_extent", tvm.tir.indexdiv(num_search + max_threads - 1, max_threads) | ||
) | ||
ib.scope_attr(tx, "thread_extent", max_threads) | ||
tid = bx * max_threads + tx | ||
|
||
with ib.if_scope(tid < num_search): | ||
if len(sorted_sequence_shape) == 1: | ||
sequence_offset = 0 | ||
else: | ||
sequence_id = tid // values_shape[-1] | ||
sequence_offset = sequence_id * search_range | ||
|
||
indices[tid] = binary_search( | ||
ib, | ||
sequence_offset, | ||
search_range, | ||
sorted_sequence, | ||
values[tid], | ||
right, | ||
out_dtype, | ||
) | ||
|
||
return ib.get() | ||
|
||
return te.extern( | ||
values.shape, | ||
[sorted_sequence, values], | ||
lambda ins, outs: ir(ins[0], ins[1], outs[0]), | ||
name="searchsorted", | ||
dtype=out_dtype, | ||
) |
Oops, something went wrong.