• Home
  • Raw
  • Download

Lines Matching refs:output_width

255   inline size_t output_width() const {  in output_width()  function
295 ASSERT_GE(output_width(), 1);
307 std::vector<float> output(batch_size() * output_channels() * output_height() * output_width());
308 …std::vector<float> output_ref(batch_size() * output_channels() * output_height() * output_width());
328 for (size_t ox = 0; ox < output_width(); ox++) {
346 … output_ref[((i * output_channels() + oc) * output_height() + oy) * output_width() + ox] = acc;
381 output_width() * sizeof(float),
382 output_height() * output_width() * sizeof(float),
388 for (size_t x = 0; x < output_width(); x++) {
390 …ASSERT_GE(output[((i * output_channels() + c) * output_height() + y) * output_width() + x], output…
392 …ASSERT_LE(output[((i * output_channels() + c) * output_height() + y) * output_width() + x], output…
395 … output_ref[((i * output_channels() + c) * output_height() + y) * output_width() + x],
396 output[((i * output_channels() + c) * output_height() + y) * output_width() + x],
397 …4 * std::abs(output_ref[((i * output_channels() + c) * output_height() + y) * output_width() + x]))
410 ASSERT_GE(output_width(), 1); in Test()
422 … std::vector<uint16_t> output(batch_size() * output_channels() * output_height() * output_width()); in Test()
423 …std::vector<float> output_ref(batch_size() * output_channels() * output_height() * output_width()); in Test()
443 for (size_t ox = 0; ox < output_width(); ox++) { in Test()
461 … output_ref[((i * output_channels() + oc) * output_height() + oy) * output_width() + ox] = acc; in Test()
489 output_width() * sizeof(uint16_t), in Test()
490 output_height() * output_width() * sizeof(uint16_t), in Test()
496 for (size_t x = 0; x < output_width(); x++) { in Test()
498 …32_value(output[((i * output_channels() + c) * output_height() + y) * output_width() + x]), output… in Test()
500 …32_value(output[((i * output_channels() + c) * output_height() + y) * output_width() + x]), output… in Test()
503 … output_ref[((i * output_channels() + c) * output_height() + y) * output_width() + x], in Test()
504 …ee_to_fp32_value(output[((i * output_channels() + c) * output_height() + y) * output_width() + x]), in Test()
505 … * std::abs(output_ref[((i * output_channels() + c) * output_height() + y) * output_width() + x]))) in Test()