Tune min version supporint custom op ComputeV2 (#18134)

Set min version supporting custom_op::ComputeV2 to 16, since the feature
has been released since ort 1.16.

Co-authored-by: Randy Shuai <rashuai@microsoft.com>
This commit is contained in:
RandySheriffH 2023-10-27 16:09:07 -07:00 committed by GitHub
parent d9695dea6d
commit 8daabf3f15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,7 +28,7 @@ static constexpr uint32_t min_ort_version_with_variadic_io_support = 14;
#endif
#if !defined(ORT_MINIMAL_BUILD) || defined(ORT_MINIMAL_BUILD_CUSTOM_OPS)
static constexpr uint32_t min_ort_version_with_compute_v2_support = 17;
static constexpr uint32_t min_ort_version_with_compute_v2_support = 16;
static constexpr uint32_t min_ort_version_with_shape_inference = 17;
#endif