Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/media/libvpx/libvpx/vpx_dsp/arm/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  sum_squares_sve.c   Sprache: C

 
/*
 *  Copyright (c) 2024 The WebM project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */


#include <arm_neon.h>
#include <assert.h>

#include "./vpx_dsp_rtcd.h"
#include "vpx_dsp/arm/mem_neon.h"
#include "vpx_dsp/arm/sum_neon.h"
#include "vpx_dsp/arm/vpx_neon_sve_bridge.h"

uint64_t vpx_sum_squares_2d_i16_sve(const int16_t *src, int stride, int size) {
  if (size == 4) {
    int16x4_t s[4];
    int64x2_t sum = vdupq_n_s64(0);

    s[0] = vld1_s16(src + 0 * stride);
    s[1] = vld1_s16(src + 1 * stride);
    s[2] = vld1_s16(src + 2 * stride);
    s[3] = vld1_s16(src + 3 * stride);

    int16x8_t s01 = vcombine_s16(s[0], s[1]);
    int16x8_t s23 = vcombine_s16(s[2], s[3]);

    sum = vpx_dotq_s16(sum, s01, s01);
    sum = vpx_dotq_s16(sum, s23, s23);

    return horizontal_add_uint64x2(vreinterpretq_u64_s64(sum));
  } else {
    int rows = size;
    int64x2_t sum[4] = { vdupq_n_s64(0), vdupq_n_s64(0), vdupq_n_s64(0),
                         vdupq_n_s64(0) };

    do {
      const int16_t *src_ptr = src;
      int cols = size;

      do {
        int16x8_t s[8];
        load_s16_8x8(src_ptr, stride, &s[0], &s[1], &s[2], &s[3], &s[4], &s[5],
                     &s[6], &s[7]);

        sum[0] = vpx_dotq_s16(sum[0], s[0], s[0]);
        sum[1] = vpx_dotq_s16(sum[1], s[1], s[1]);
        sum[2] = vpx_dotq_s16(sum[2], s[2], s[2]);
        sum[3] = vpx_dotq_s16(sum[3], s[3], s[3]);
        sum[0] = vpx_dotq_s16(sum[0], s[4], s[4]);
        sum[1] = vpx_dotq_s16(sum[1], s[5], s[5]);
        sum[2] = vpx_dotq_s16(sum[2], s[6], s[6]);
        sum[3] = vpx_dotq_s16(sum[3], s[7], s[7]);

        src_ptr += 8;
        cols -= 8;
      } while (cols);

      src += 8 * stride;
      rows -= 8;
    } while (rows);

    sum[0] = vaddq_s64(sum[0], sum[1]);
    sum[2] = vaddq_s64(sum[2], sum[3]);
    sum[0] = vaddq_s64(sum[0], sum[2]);

    return horizontal_add_uint64x2(vreinterpretq_u64_s64(sum[0]));
  }
}

Messung V0.5
C=82 H=93 G=87

¤ Dauer der Verarbeitung: 0.1 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.