Skip to content

Commit

Permalink
Nit
Browse files Browse the repository at this point in the history
  • Loading branch information
axinging committed Dec 4, 2024
1 parent 7f10450 commit 3a2f576
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions onnxruntime/core/providers/js/operators/gather_nd.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,21 @@ ONNX_OPERATOR_KERNEL_EX(
.TypeConstraint("T", JsepSupportedDataTypes()),
GatherND);

ONNX_OPERATOR_KERNEL_EX(
ONNX_OPERATOR_VERSIONED_KERNEL_EX(
GatherND,
kOnnxDomain,
12,
12,
kJsExecutionProvider,
(*KernelDefBuilder::Create())
.TypeConstraint("T", JsepSupportedDataTypes()),
GatherND);

ONNX_OPERATOR_KERNEL_EX(
ONNX_OPERATOR_VERSIONED_KERNEL_EX(
GatherND,
kOnnxDomain,
11,
11,
kJsExecutionProvider,
(*KernelDefBuilder::Create())
.TypeConstraint("T", JsepSupportedDataTypes()),
Expand Down

0 comments on commit 3a2f576

Please sign in to comment.