Commit 438f7f5f authored by baojun's avatar baojun Committed by Scott Cyphers

fix lrn for dynshape (#4057)

parent 796a5a61
...@@ -79,7 +79,8 @@ void op::LRN::validate_and_infer_types() ...@@ -79,7 +79,8 @@ void op::LRN::validate_and_infer_types()
NODE_VALIDATION_CHECK( NODE_VALIDATION_CHECK(
this, this,
static_cast<size_t>(axes_shape[0]) <= static_cast<size_t>(input_shape_rank), axes_shape.is_dynamic() || input_shape_rank.is_dynamic() ||
static_cast<size_t>(axes_shape[0]) <= static_cast<size_t>(input_shape_rank),
"Number of elements of axes must be >= 0 and <= argument rank (axes_shape[0]: ", "Number of elements of axes must be >= 0 and <= argument rank (axes_shape[0]: ",
axes_shape[0], axes_shape[0],
")."); ").");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment