Skip to content

Commit

Permalink
Remove deprecated reduce logical reference implementation signatures (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ggalieroc authored Jul 30, 2021
1 parent 032cebb commit c1d8c23
Showing 1 changed file with 0 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,6 @@ namespace ngraph
}
}

NGRAPH_DEPRECATED("Remove when arm plugin supports the new signature")
static inline void reduce_logical_and(const char* arg,
char* out,
const Shape& input_shape,
const AxisSet& reduction_axes,
bool)
{
reduce_logical_and(arg, out, input_shape, reduction_axes);
}

static inline void reduce_logical_or(const char* arg,
char* out,
const Shape& in_shape,
Expand All @@ -77,16 +67,6 @@ namespace ngraph
out[out_idx] = out[out_idx] || arg[in_idx];
}
}

NGRAPH_DEPRECATED("Remove when arm plugin supports the new signature")
static inline void reduce_logical_or(const char* arg,
char* out,
const Shape& input_shape,
const AxisSet& reduction_axes,
bool)
{
reduce_logical_or(arg, out, input_shape, reduction_axes);
}
} // namespace reference
} // namespace runtime
} // namespace ngraph

0 comments on commit c1d8c23

Please sign in to comment.