Skip to content

Commit 4ffef5f

Browse files
committed
Update to use Rv10 instead of Rv9 (breaks build)
1 parent e2f6f02 commit 4ffef5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

onnxruntime/core/providers/cpu/tensor/cast_op.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ namespace op_kernel_type_control {
3131
// we're using one set of types for all opsets of Cast
3232
ORT_SPECIFY_OP_KERNEL_ARG_DEFAULT_TYPE_LIST_ALL_OPSETS(
3333
kCpuExecutionProvider, kOnnxDomain, Cast, Input, 0,
34-
element_type_lists::AllIRv9);
34+
element_type_lists::AllIRv10);
3535

3636
ORT_SPECIFY_OP_KERNEL_ARG_REQUIRED_TYPES_ALL_OPSETS(
3737
kCpuExecutionProvider, kOnnxDomain, Cast, Input, 0,
3838
bool, int32_t, int64_t);
3939

4040
ORT_SPECIFY_OP_KERNEL_ARG_DEFAULT_TYPE_LIST_ALL_OPSETS(
4141
kCpuExecutionProvider, kOnnxDomain, Cast, Output, 0,
42-
element_type_lists::AllIRv9);
42+
element_type_lists::AllIRv10);
4343

4444
ORT_SPECIFY_OP_KERNEL_ARG_REQUIRED_TYPES_ALL_OPSETS(
4545
kCpuExecutionProvider, kOnnxDomain, Cast, Output, 0,

0 commit comments

Comments
 (0)