Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/pytorch_custom_op/hpu_custom_searchsorted.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ bool register_custom_searchsorted() {
habana::custom_op::InputDesc input_a_desc{
habana::custom_op::input_type::TENSOR, 0};
habana::custom_op::InputDesc input_b_desc{
habana::custom_op::input_type::TENSOR, 0};
habana::custom_op::input_type::TENSOR, 1};
habana::custom_op::InputDesc input_c_desc{
habana::custom_op::input_type::SCALAR, 0};
habana::custom_op::input_type::SCALAR, 2};

std::vector<habana::custom_op::InputDesc> inputs_desc{
input_a_desc, input_b_desc, input_c_desc};
Expand Down