Fix 5d concat operator helper

This commit is contained in:
jake mathern 2020-05-19 15:07:33 -07:00
parent f57515aae4
commit 2adb0f8d1d

View file

@ -971,7 +971,7 @@ namespace OperatorHelper
std::vector<EdgeShapes> ConcatHelper::GetOutputShapes(const MLShapeInferenceContext& shapeInfo) const
{
auto outputShape = shapeInfo.GetInputTensorShape(0);
ML_CHECK_VALID_ARGUMENT(outputShape.size() <= NchwDimensionCount);
ML_CHECK_VALID_ARGUMENT(outputShape.size() <= NcdhwDimensionCount);
uint32_t inputCount = shapeInfo.GetInputCount();