Commit 439c35f3 authored by Paul's avatar Paul
Browse files

Formatting

parent 49acfcd7
......@@ -176,7 +176,8 @@ struct miopen_conv_bias
fusion::op_t conv;
fusion::op_t bias;
miopen_conv_bias(op::convolution c, const shape& input, const shape& weights, const shape& b) : op(c), f(input)
miopen_conv_bias(op::convolution c, const shape& input, const shape& weights, const shape& b)
: op(c), f(input)
{
conv = f.create_conv(op, weights);
bias = f.create_bias(b);
......@@ -213,7 +214,11 @@ struct miopen_conv_bias_relu
fusion::op_t bias;
fusion::op_t relu;
miopen_conv_bias_relu(op::convolution c, const shape& input, const shape& weights, const shape& b) : op(c), f(input)
miopen_conv_bias_relu(op::convolution c,
const shape& input,
const shape& weights,
const shape& b)
: op(c), f(input)
{
conv = f.create_conv(op, weights);
bias = f.create_bias(b);
......
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