Lines Matching refs:Row
135 OutputType Eval(InputType input, int row, int col) const {
137 const std::int32_t result_mult_int = output_stage.result_mult_int(row);
138 const std::int32_t result_offset = output_stage.result_offset(row);
150 OutputStageQuantizeDownInt32ToUint8ScalePC<VectorShape::Row>,
154 typedef OutputStageQuantizeDownInt32ToUint8ScalePC<VectorShape::Row>
159 OutputType Eval(InputType input, int row, int col) const {
198 OutputType Eval(InputType input, int row, int col) const {
199 if (VectorType::kShape == VectorShape::Row) {
202 return input + output_stage.bias_vector(row);
356 OutputType Eval(InputType input, int row, int col) const {
358 FirstStageOutputType first_stage_output = head_impl.Eval(input, row, col);
360 return tail_impl.Eval(first_stage_output, row, col);
385 void StoreFinalOutput(OutputType value, DstType* dst, int row, int col) {
386 *dst->data(row, col) = value;
399 void Execute(InputType input, DstType* dst, int row, int col) {
410 auto output = output_pipeline_eval_impl_.Eval(input, row, col);
412 StoreFinalOutput(output, dst, row, col);