Lines Matching refs:output_width
254 inline size_t output_width() const { in output_width() function
294 ASSERT_GE(output_width(), 1);
306 …std::vector<float> output(batch_size() * ((output_height() * output_width() - 1) * output_pixel_st…
307 …std::vector<float> output_ref(batch_size() * output_height() * output_width() * output_channels());
327 for (size_t ox = 0; ox < output_width(); ox++) {
345 … output_ref[((i * output_height() + oy) * output_width() + ox) * output_channels() + oc] = acc;
380 output_pixel_stride() * output_width() * sizeof(float),
387 for (size_t x = 0; x < output_width(); x++) {
389 …ASSERT_GE(output[((i * output_height() + y) * output_width() + x) * output_pixel_stride() + c], ou…
391 …ASSERT_LE(output[((i * output_height() + y) * output_width() + x) * output_pixel_stride() + c], ou…
394 … output_ref[((i * output_height() + y) * output_width() + x) * output_channels() + c],
395 … output[((i * output_height() + y) * output_width() + x) * output_pixel_stride() + c],
396 …1.0e-4 * std::abs(output_ref[((i * output_height() + y) * output_width() + x) * output_channels() …