"src/vscode:/vscode.git/clone" did not exist on "50296739878f3e17b2d25d45ef626318b44440b9"
Commit e130fd9c authored by Khalique's avatar Khalique
Browse files

remove assert

parent 9f3166cb
...@@ -13,10 +13,8 @@ shape hip_clip::compute_shape(std::vector<shape> inputs) const ...@@ -13,10 +13,8 @@ shape hip_clip::compute_shape(std::vector<shape> inputs) const
} }
argument argument
hip_clip::compute(context& ctx, const shape& output_shape, const std::vector<argument>& args) const hip_clip::compute(context& ctx, const shape&, const std::vector<argument>& args) const
{ {
assert(output_shape == args.back().get_shape());
(void)output_shape;
device::clip(ctx.get_stream().get(), args.back(), args.front(), op.max_val, op.min_val); device::clip(ctx.get_stream().get(), args.back(), args.front(), op.max_val, op.min_val);
return args.back(); return args.back();
} }
......
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