Commit b027d637 authored by Khalique's avatar Khalique
Browse files

formatting

parent 8407200f
...@@ -15,8 +15,8 @@ shape miopen_abs::compute_shape(const std::vector<shape>& inputs) const ...@@ -15,8 +15,8 @@ shape miopen_abs::compute_shape(const std::vector<shape>& inputs) const
} }
argument miopen_abs::compute(context& ctx, argument miopen_abs::compute(context& ctx,
const shape& output_shape, const shape& output_shape,
const std::vector<argument>& args) const const std::vector<argument>& args) const
{ {
float alpha = 1, beta = 0; float alpha = 1, beta = 0;
auto x_desc = make_tensor(args[0].get_shape()); auto x_desc = make_tensor(args[0].get_shape());
......
...@@ -15,8 +15,8 @@ shape miopen_sigmoid::compute_shape(const std::vector<shape>& inputs) const ...@@ -15,8 +15,8 @@ shape miopen_sigmoid::compute_shape(const std::vector<shape>& inputs) const
} }
argument miopen_sigmoid::compute(context& ctx, argument miopen_sigmoid::compute(context& ctx,
const shape& output_shape, const shape& output_shape,
const std::vector<argument>& args) const const std::vector<argument>& args) const
{ {
float alpha = 1, beta = 0; float alpha = 1, beta = 0;
auto x_desc = make_tensor(args[0].get_shape()); auto x_desc = make_tensor(args[0].get_shape());
......
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