Home | History | Annotate | Download | only in test

Lines Matching refs:t_left

69   Tensor<float, 4, DataLayout> t_left(30, 50, 37, 31);
73 t_left.setRandom();
81 MapXf m_left(t_left.data(), 1500, 1147);
89 t_result.device(thread_pool_device) = t_left.contract(t_right, dims);
109 Tensor<float, 2, DataLayout> t_left(32, 500);
113 t_left = (t_left.constant(-0.5f) + t_left.random()) * 2.0f;
122 MapXf m_left(t_left.data(), 32, 500);
130 t_result.device(thread_pool_device) = t_left.contract(t_right, dims);
141 t_left.resize(32, 1);
142 t_left = (t_left.constant(-0.5f) + t_left.random()) * 2.0f;
145 t_result.device(thread_pool_device) = t_left.contract(t_right, dims);
146 new(&m_left) MapXf(t_left.data(), 32, 1);
156 t_left.resize(32, 500);
158 t_left = (t_left.constant(-0.5f) + t_left.random()) * 2.0f;
162 t_result.device(thread_pool_device) = t_left.contract(t_right, dims);
163 new(&m_left) MapXf(t_left.data(), 32, 500);
174 t_left.resize(32, 1);
176 t_left = (t_left.constant(-0.5f) + t_left.random()) * 2.0f;
180 t_result.device(thread_pool_device) = t_left.contract(t_right, dims);
181 new(&m_left) MapXf(t_left.data(), 32, 1);