@@ -2809,7 +2809,7 @@ namespace dlib
28092809 auto & t2 = layer<tag>(sub).get_output ();
28102810 output.set_size (t1.num_samples (), t1.k (), t1.nr (), t2.nc ());
28112811
2812- tt::gemm (0 , output, 1 , t1, false , t2, false , tt:: operation_mode::PLANE_WISE);
2812+ tt::gemm (0 , output, 1 , t1, false , t2, false , operation_mode::PLANE_WISE);
28132813 }
28142814
28152815 template <typename SUBNET>
@@ -2820,8 +2820,8 @@ namespace dlib
28202820 auto & prev = sub.get_gradient_input ();
28212821 auto & prev_tag = layer<tag>(sub).get_gradient_input ();
28222822
2823- tt::gemm (1 , prev, 1 , gradient_input, false , t2, true , tt:: operation_mode::PLANE_WISE);
2824- tt::gemm (1 , prev_tag, 1 , t1, true , gradient_input, false , tt:: operation_mode::PLANE_WISE);
2823+ tt::gemm (1 , prev, 1 , gradient_input, false , t2, true , operation_mode::PLANE_WISE);
2824+ tt::gemm (1 , prev_tag, 1 , t1, true , gradient_input, false , operation_mode::PLANE_WISE);
28252825 }
28262826
28272827 const tensor& get_layer_params () const { return params; }
0 commit comments