Lines Matching +full:- +full:r
20 template<typename T,int R,int C>
23 constexpr int NBOUT = C-1; in test()
24 std::cout << "----\r\n"; in test()
25 std::cout << R << " x " << C << "\r\n"; in test()
26 std::cout << "NBOUT = " << NBOUT << "\r\n"; in test()
29 PMat<T,R,C> a; in test()
31 PMat<T> a(R,C); in test()
34 init_array(a,R*C); in test()
59 printf("row add failed \r\n"); in test()
62 std::cout << "=====\r\n"; in test()
65 template<typename T,int R,int C>
68 constexpr int NBOUT = C-2; in swaptest()
69 std::cout << "----\r\n"; in swaptest()
70 std::cout << R << " x " << C << "\r\n"; in swaptest()
71 std::cout << "NBOUT = " << NBOUT << "\r\n"; in swaptest()
74 PMat<T,R,C> a; in swaptest()
75 PMat<T,R,C> b; in swaptest()
77 PMat<T> a(R,C); in swaptest()
78 PMat<T> b(R,C); in swaptest()
81 init_array(a,R*C); in swaptest()
82 init_array(b,R*C); in swaptest()
94 mat.numRows = R; in swaptest()
102 if (!validate(a.const_ptr(),(const float32_t*)mat.pData,R*C)) in swaptest()
104 printf("row add failed \r\n"); in swaptest()
107 std::cout << "=====\r\n"; in swaptest()