100c57cec31061196ae9a045952b0f1ef5482fff,test/graph_builder_test/graph_test/frontend_test/sub_rules_test/affine_concat_test.py,,test_conv_bias_bias,#,131

Before Change



        w_shape = [4, 3, 3, 5]
        w_size: int = np.prod(w_shape)
        w_data = np.arange(w_size).reshape(w_shape)
        w = ConstantVariable(w_data.copy(), OrderNHWC)
        w.change_axis_order(order_w)
        h, = conv(x, w)

        b1_shape = [h.shape_dict[Axis.C]]
        b1_size: int = np.prod(b1_shape)

After Change



        w_shape = [4, 3, 3, 5]
        w_size: int = np.prod(w_shape)
        w = ConstantVariable(np.arange(w_size).reshape(w_shape).copy(), OrderNHWC)
        w.change_axis_order(order_w)
        w_data = w.data.copy()
        h, = conv(x, w)

        b1_shape = [h.shape_dict[Axis.C]]
        b1_size: int = np.prod(b1_shape)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 6

Non-data size: 11

Instances


Project Name: mil-tokyo/webdnn
Commit Name: 100c57cec31061196ae9a045952b0f1ef5482fff
Time: 2017-05-05
Author: y.kikura@gmail.com
File Name: test/graph_builder_test/graph_test/frontend_test/sub_rules_test/affine_concat_test.py
Class Name:
Method Name: test_conv_bias_bias


Project Name: mil-tokyo/webdnn
Commit Name: 100c57cec31061196ae9a045952b0f1ef5482fff
Time: 2017-05-05
Author: y.kikura@gmail.com
File Name: test/graph_builder_test/graph_test/frontend_test/sub_rules_test/affine_concat_test.py
Class Name:
Method Name: test_conv_bias_scale


Project Name: mil-tokyo/webdnn
Commit Name: 100c57cec31061196ae9a045952b0f1ef5482fff
Time: 2017-05-05
Author: y.kikura@gmail.com
File Name: test/graph_builder_test/graph_test/frontend_test/sub_rules_test/affine_concat_test.py
Class Name:
Method Name: test_conv_bias


Project Name: mil-tokyo/webdnn
Commit Name: 100c57cec31061196ae9a045952b0f1ef5482fff
Time: 2017-05-05
Author: y.kikura@gmail.com
File Name: test/graph_builder_test/graph_test/frontend_test/sub_rules_test/affine_concat_test.py
Class Name:
Method Name: test_conv_scale_scale


Project Name: mil-tokyo/webdnn
Commit Name: 100c57cec31061196ae9a045952b0f1ef5482fff
Time: 2017-05-05
Author: y.kikura@gmail.com
File Name: test/graph_builder_test/graph_test/frontend_test/sub_rules_test/affine_concat_test.py
Class Name:
Method Name: test_conv_scale_bias


Project Name: mil-tokyo/webdnn
Commit Name: 100c57cec31061196ae9a045952b0f1ef5482fff
Time: 2017-05-05
Author: y.kikura@gmail.com
File Name: test/graph_builder_test/graph_test/frontend_test/sub_rules_test/affine_concat_test.py
Class Name:
Method Name: test_conv_scale