Home | History | Annotate | Download | only in test

Lines Matching refs:t_left

355   Tensor<float, 4, DataLayout> t_left(30, 50, 8, 31);
359 t_left.setRandom();
363 t_left += t_left.constant(1.0f);
367 MapXf m_left(t_left.data(), 1500, 248);
375 t_result = t_left.contract(t_right, dims);
387 Tensor<float, 2, DataLayout> t_left(30, 50);
391 t_left.setRandom();
395 MapXf m_left(t_left.data(), 30, 50);
403 t_result = t_left.contract(t_right, dims);
415 Tensor<float, 3, DataLayout> t_left(7, 13, 17);
418 t_left.setRandom();
423 Tensor<float, 3, DataLayout> t_result = t_left.contract(t_right, dim_pair01);
426 MapXf m_left(t_left.data(), 7, 13*17);
439 Tensor<float, 4, DataLayout> t_left(30, 5, 3, 31);
441 t_left.setRandom();
445 t_left += t_left.constant(1.0f);
454 t_result = t_left.contract(t_right, dims);
457 Map<Eigen::Matrix<float, Dynamic, Dynamic, DataLayout>> m_left(t_left.data(), 150, 93);