public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc(refs/vendors/riscv/heads/gcc-13-with-riscv-opts)] Revert "RISC-V: Add more run test for FP rounding autovec"
@ 2023-10-09 12:52 Jeff Law
  0 siblings, 0 replies; only message in thread
From: Jeff Law @ 2023-10-09 12:52 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:d63b7bee06ecea6b6863b4dfa5ae5bb0ca6ff6cb

commit d63b7bee06ecea6b6863b4dfa5ae5bb0ca6ff6cb
Author: Lehua Ding <lehua.ding@rivai.ai>
Date:   Sat Oct 7 17:57:36 2023 +0800

    Revert "RISC-V: Add more run test for FP rounding autovec"
    
    Revert since other fails are introduced
    
    This reverts commit 7866984ba427dc56a12ee1b8d99feb4927b834b1.
    
    (cherry picked from commit 066a43ce72ab6559ba14af9628df19daa0b85cdf)

Diff:
---
 .../riscv/rvv/autovec/unop/math-ceil-run-0.c       | 39 ------------------
 .../riscv/rvv/autovec/unop/math-floor-run-0.c      | 39 ------------------
 .../riscv/rvv/autovec/unop/math-nearbyint-run-0.c  | 48 ----------------------
 .../riscv/rvv/autovec/unop/math-rint-run-0.c       | 48 ----------------------
 .../riscv/rvv/autovec/unop/math-round-run-0.c      | 39 ------------------
 .../riscv/rvv/autovec/unop/math-roundeven-run-0.c  | 39 ------------------
 .../riscv/rvv/autovec/unop/math-roundeven-run-1.c  | 39 ------------------
 .../riscv/rvv/autovec/unop/math-roundeven-run-2.c  | 39 ------------------
 .../riscv/rvv/autovec/unop/math-trunc-run-0.c      | 39 ------------------
 gcc/testsuite/gcc.target/riscv/rvv/rvv.exp         |  4 +-
 10 files changed, 2 insertions(+), 371 deletions(-)

diff --git a/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-ceil-run-0.c b/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-ceil-run-0.c
deleted file mode 100644
index 70cba3602bb..00000000000
--- a/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-ceil-run-0.c
+++ /dev/null
@@ -1,39 +0,0 @@
-/* { dg-do run { target { riscv_v } } } */
-/* { dg-additional-options "-std=c99 -O3 -ftree-vectorize -fno-vect-cost-model -ffast-math" } */
-
-#include "test-math.h"
-
-#define ARRAY_SIZE 128
-
-_Float16 in[ARRAY_SIZE];
-_Float16 out[ARRAY_SIZE];
-_Float16 ref[ARRAY_SIZE];
-
-TEST_UNARY_CALL (_Float16, __builtin_ceilf16)
-TEST_ASSERT (_Float16)
-
-TEST_INIT (_Float16, 1.2, 2.0, 1)
-TEST_INIT (_Float16, -1.2, -1.0, 2)
-TEST_INIT (_Float16, 3.0, 3.0, 3)
-TEST_INIT (_Float16, 1023.5, 1024.0, 4)
-TEST_INIT (_Float16, 1024.0, 1024.0, 5)
-TEST_INIT (_Float16, 0.0, 0.0, 6)
-TEST_INIT (_Float16, -0.0, -0.0, 7)
-TEST_INIT (_Float16, -1023.5, -1023.0, 8)
-TEST_INIT (_Float16, -1024.0, -1024.0, 9)
-
-int
-main ()
-{
-  RUN_TEST (_Float16, 1, __builtin_ceilf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 2, __builtin_ceilf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 3, __builtin_ceilf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 4, __builtin_ceilf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 5, __builtin_ceilf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 6, __builtin_ceilf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 7, __builtin_ceilf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 8, __builtin_ceilf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 9, __builtin_ceilf16, in, out, ref, ARRAY_SIZE);
-
-  return 0;
-}
diff --git a/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-floor-run-0.c b/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-floor-run-0.c
deleted file mode 100644
index c542278c1f5..00000000000
--- a/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-floor-run-0.c
+++ /dev/null
@@ -1,39 +0,0 @@
-/* { dg-do run { target { riscv_v } } } */
-/* { dg-additional-options "-std=c99 -O3 -ftree-vectorize -fno-vect-cost-model -ffast-math" } */
-
-#include "test-math.h"
-
-#define ARRAY_SIZE 128
-
-_Float16 in[ARRAY_SIZE];
-_Float16 out[ARRAY_SIZE];
-_Float16 ref[ARRAY_SIZE];
-
-TEST_UNARY_CALL (_Float16, __builtin_floorf16)
-TEST_ASSERT (_Float16)
-
-TEST_INIT (_Float16, 1.2, 1.0, 1)
-TEST_INIT (_Float16, -1.2, -2.0, 2)
-TEST_INIT (_Float16, 3.0, 3.0, 3)
-TEST_INIT (_Float16, 1023.5, 1023.0, 4)
-TEST_INIT (_Float16, 8388609.0, 8388609.0, 5)
-TEST_INIT (_Float16, 0.0, 0.0, 6)
-TEST_INIT (_Float16, -0.0, -0.0, 7)
-TEST_INIT (_Float16, -1023.5, -1024.0, 8)
-TEST_INIT (_Float16, -1024.0, -1024.0, 9)
-
-int
-main ()
-{
-  RUN_TEST (_Float16, 1, __builtin_floorf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 2, __builtin_floorf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 3, __builtin_floorf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 4, __builtin_floorf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 5, __builtin_floorf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 6, __builtin_floorf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 7, __builtin_floorf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 8, __builtin_floorf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 9, __builtin_floorf16, in, out, ref, ARRAY_SIZE);
-
-  return 0;
-}
diff --git a/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-nearbyint-run-0.c b/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-nearbyint-run-0.c
deleted file mode 100644
index 5339fb9c03b..00000000000
--- a/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-nearbyint-run-0.c
+++ /dev/null
@@ -1,48 +0,0 @@
-/* { dg-do run { target { riscv_v } } } */
-/* { dg-additional-options "-std=c99 -O3 -ftree-vectorize -fno-vect-cost-model -ffast-math" } */
-
-#include "test-math.h"
-
-#define ARRAY_SIZE 128
-
-_Float16 in[ARRAY_SIZE];
-_Float16 out[ARRAY_SIZE];
-_Float16 ref[ARRAY_SIZE];
-
-TEST_UNARY_CALL (_Float16, __builtin_nearbyintf16)
-TEST_ASSERT (_Float16)
-
-TEST_INIT (_Float16, 1.2, 1.0, 1)
-TEST_INIT (_Float16, -1.2, -1.0, 2)
-TEST_INIT (_Float16, 3.0, 3.0, 3)
-TEST_INIT (_Float16, 1023.5, 1023.0, 4)
-TEST_INIT (_Float16, 1024.0, 1024.0, 5)
-TEST_INIT (_Float16, 0.0, 0.0, 6)
-TEST_INIT (_Float16, -0.0, -0.0, 7)
-TEST_INIT (_Float16, -1023.5, -1023.0, 8)
-TEST_INIT (_Float16, -1024.0, -1024.0, 9)
-
-int
-main ()
-{
-  unsigned fflags_before = get_fflags ();
-
-  set_rm (FRM_RTZ);
-
-  RUN_TEST (_Float16, 1, __builtin_nearbyintf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 2, __builtin_nearbyintf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 3, __builtin_nearbyintf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 4, __builtin_nearbyintf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 5, __builtin_nearbyintf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 6, __builtin_nearbyintf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 7, __builtin_nearbyintf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 8, __builtin_nearbyintf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 9, __builtin_nearbyintf16, in, out, ref, ARRAY_SIZE);
-
-  unsigned fflags_after = get_fflags ();
-
-  if (fflags_before != fflags_after)
-    __builtin_abort ();
-
-  return 0;
-}
diff --git a/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-rint-run-0.c b/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-rint-run-0.c
deleted file mode 100644
index 5667ee111d3..00000000000
--- a/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-rint-run-0.c
+++ /dev/null
@@ -1,48 +0,0 @@
-/* { dg-do run { target { riscv_v } } } */
-/* { dg-additional-options "-std=c99 -O3 -ftree-vectorize -fno-vect-cost-model -ffast-math" } */
-
-#include "test-math.h"
-
-#define ARRAY_SIZE 128
-
-_Float16 in[ARRAY_SIZE];
-_Float16 out[ARRAY_SIZE];
-_Float16 ref[ARRAY_SIZE];
-
-TEST_UNARY_CALL (_Float16, __builtin_rintf)
-TEST_ASSERT (_Float16)
-
-TEST_INIT (_Float16, 1.2, 1.0, 1)
-TEST_INIT (_Float16, -1.2, -1.0, 2)
-TEST_INIT (_Float16, 3.0, 3.0, 3)
-TEST_INIT (_Float16, 1023.5, 1023.0, 4)
-TEST_INIT (_Float16, 1024.0, 1024.0, 5)
-TEST_INIT (_Float16, 0.0, 0.0, 6)
-TEST_INIT (_Float16, -0.0, -0.0, 7)
-TEST_INIT (_Float16, -1023.5, -1023.0, 8)
-TEST_INIT (_Float16, -1024.0, -1024.0, 9)
-
-int
-main ()
-{
-  unsigned fflags_before = get_fflags ();
-
-  set_rm (FRM_RTZ);
-
-  RUN_TEST (_Float16, 1, __builtin_rintf, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 2, __builtin_rintf, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 3, __builtin_rintf, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 4, __builtin_rintf, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 5, __builtin_rintf, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 6, __builtin_rintf, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 7, __builtin_rintf, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 8, __builtin_rintf, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 9, __builtin_rintf, in, out, ref, ARRAY_SIZE);
-
-  unsigned fflags_after = get_fflags ();
-
-  if (fflags_before == fflags_after)
-    __builtin_abort ();
-
-  return 0;
-}
diff --git a/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-round-run-0.c b/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-round-run-0.c
deleted file mode 100644
index f0fc51970be..00000000000
--- a/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-round-run-0.c
+++ /dev/null
@@ -1,39 +0,0 @@
-/* { dg-do run { target { riscv_v } } } */
-/* { dg-additional-options "-std=c99 -O3 -ftree-vectorize -fno-vect-cost-model -ffast-math" } */
-
-#include "test-math.h"
-
-#define ARRAY_SIZE 128
-
-_Float16 in[ARRAY_SIZE];
-_Float16 out[ARRAY_SIZE];
-_Float16 ref[ARRAY_SIZE];
-
-TEST_UNARY_CALL (_Float16, __builtin_roundf16)
-TEST_ASSERT (_Float16)
-
-TEST_INIT (_Float16, 1.2, 1.0, 1)
-TEST_INIT (_Float16, -1.6, -2.0, 2)
-TEST_INIT (_Float16, 3.0, 3.0, 3)
-TEST_INIT (_Float16, 1023.5, 1024.0, 4)
-TEST_INIT (_Float16, 1024.0, 1024.0, 5)
-TEST_INIT (_Float16, 0.0, 0.0, 6)
-TEST_INIT (_Float16, -0.0, -0.0, 7)
-TEST_INIT (_Float16, -1023.5, -1024.0, 8)
-TEST_INIT (_Float16, -1024.0, -1024.0, 9)
-
-int
-main ()
-{
-  RUN_TEST (_Float16, 1, __builtin_roundf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 2, __builtin_roundf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 3, __builtin_roundf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 4, __builtin_roundf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 5, __builtin_roundf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 6, __builtin_roundf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 7, __builtin_roundf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 8, __builtin_roundf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 9, __builtin_roundf16, in, out, ref, ARRAY_SIZE);
-
-  return 0;
-}
diff --git a/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-roundeven-run-0.c b/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-roundeven-run-0.c
deleted file mode 100644
index 9ef39993ca4..00000000000
--- a/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-roundeven-run-0.c
+++ /dev/null
@@ -1,39 +0,0 @@
-/* { dg-do run { target { riscv_v } } } */
-/* { dg-additional-options "-std=c99 -O3 -ftree-vectorize -fno-vect-cost-model -ffast-math" } */
-
-#include "test-math.h"
-
-#define ARRAY_SIZE 128
-
-_Float16 in[ARRAY_SIZE];
-_Float16 out[ARRAY_SIZE];
-_Float16 ref[ARRAY_SIZE];
-
-TEST_UNARY_CALL (_Float16, __builtin_roundevenf16)
-TEST_ASSERT (_Float16)
-
-TEST_INIT (_Float16, 1.2, 1.0, 1)
-TEST_INIT (_Float16, -1.5, -2.0, 2)
-TEST_INIT (_Float16, 3.0, 3.0, 3)
-TEST_INIT (_Float16, 1023.5, 1024.0, 4)
-TEST_INIT (_Float16, 1024.0, 1024.0, 5)
-TEST_INIT (_Float16, 0.0, 0.0, 6)
-TEST_INIT (_Float16, -0.0, -0.0, 7)
-TEST_INIT (_Float16, -1023.5, -1024.0, 8)
-TEST_INIT (_Float16, -1024.0, -1024.0, 9)
-
-int
-main ()
-{
-  RUN_TEST (_Float16, 1, __builtin_roundevenf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 2, __builtin_roundevenf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 3, __builtin_roundevenf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 4, __builtin_roundevenf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 5, __builtin_roundevenf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 6, __builtin_roundevenf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 7, __builtin_roundevenf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 8, __builtin_roundevenf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 9, __builtin_roundevenf16, in, out, ref, ARRAY_SIZE);
-
-  return 0;
-}
diff --git a/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-roundeven-run-1.c b/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-roundeven-run-1.c
deleted file mode 100644
index b1918bad45e..00000000000
--- a/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-roundeven-run-1.c
+++ /dev/null
@@ -1,39 +0,0 @@
-/* { dg-do run { target { riscv_v } } } */
-/* { dg-additional-options "-std=c99 -O3 -ftree-vectorize -fno-vect-cost-model -ffast-math" } */
-
-#include "test-math.h"
-
-#define ARRAY_SIZE 128
-
-float in[ARRAY_SIZE];
-float out[ARRAY_SIZE];
-float ref[ARRAY_SIZE];
-
-TEST_UNARY_CALL (float, __builtin_roundf)
-TEST_ASSERT (float)
-
-TEST_INIT (float, 1.2, 1.0, 1)
-TEST_INIT (float, -1.5, -2.0, 2)
-TEST_INIT (float, 3.0, 3.0, 3)
-TEST_INIT (float, 8388607.5, 8388608.0, 4)
-TEST_INIT (float, 8388609.0, 8388609.0, 5)
-TEST_INIT (float, 0.0, 0.0, 6)
-TEST_INIT (float, -0.0, -0.0, 7)
-TEST_INIT (float, -8388607.5, -8388608.0, 8)
-TEST_INIT (float, -8388608.0, -8388608.0, 9)
-
-int
-main ()
-{
-  RUN_TEST (float, 1, __builtin_roundf, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (float, 2, __builtin_roundf, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (float, 3, __builtin_roundf, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (float, 4, __builtin_roundf, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (float, 5, __builtin_roundf, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (float, 6, __builtin_roundf, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (float, 7, __builtin_roundf, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (float, 8, __builtin_roundf, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (float, 9, __builtin_roundf, in, out, ref, ARRAY_SIZE);
-
-  return 0;
-}
diff --git a/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-roundeven-run-2.c b/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-roundeven-run-2.c
deleted file mode 100644
index 9f037b4c908..00000000000
--- a/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-roundeven-run-2.c
+++ /dev/null
@@ -1,39 +0,0 @@
-/* { dg-do run { target { riscv_v } } } */
-/* { dg-additional-options "-std=c99 -O3 -ftree-vectorize -fno-vect-cost-model -ffast-math" } */
-
-#include "test-math.h"
-
-#define ARRAY_SIZE 128
-
-double in[ARRAY_SIZE];
-double out[ARRAY_SIZE];
-double ref[ARRAY_SIZE];
-
-TEST_UNARY_CALL (double, __builtin_round)
-TEST_ASSERT (double)
-
-TEST_INIT (double, 1.2, 1.0, 1)
-TEST_INIT (double, -1.5, -2.0, 2)
-TEST_INIT (double, 3.0, 3.0, 3)
-TEST_INIT (double, 4503599627370495.5, 4503599627370496.0, 4)
-TEST_INIT (double, 4503599627370497.0, 4503599627370497.0, 5)
-TEST_INIT (double, 0.0, 0.0, 6)
-TEST_INIT (double, -0.0, -0.0, 7)
-TEST_INIT (double, -4503599627370495.5, -4503599627370496.0, 8)
-TEST_INIT (double, -4503599627370496.0, -4503599627370496.0, 9)
-
-int
-main ()
-{
-  RUN_TEST (double, 1, __builtin_round, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (double, 2, __builtin_round, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (double, 3, __builtin_round, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (double, 4, __builtin_round, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (double, 5, __builtin_round, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (double, 6, __builtin_round, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (double, 7, __builtin_round, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (double, 8, __builtin_round, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (double, 9, __builtin_round, in, out, ref, ARRAY_SIZE);
-
-  return 0;
-}
diff --git a/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-trunc-run-0.c b/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-trunc-run-0.c
deleted file mode 100644
index 340acb5994c..00000000000
--- a/gcc/testsuite/gcc.target/riscv/rvv/autovec/unop/math-trunc-run-0.c
+++ /dev/null
@@ -1,39 +0,0 @@
-/* { dg-do run { target { riscv_v } } } */
-/* { dg-additional-options "-std=c99 -O3 -ftree-vectorize -fno-vect-cost-model -ffast-math" } */
-
-#include "test-math.h"
-
-#define ARRAY_SIZE 128
-
-_Float16 in[ARRAY_SIZE];
-_Float16 out[ARRAY_SIZE];
-_Float16 ref[ARRAY_SIZE];
-
-TEST_UNARY_CALL (_Float16, __builtin_truncf16)
-TEST_ASSERT (_Float16)
-
-TEST_INIT (_Float16, 1.2, 1.0, 1)
-TEST_INIT (_Float16, -1.2, -1.0, 2)
-TEST_INIT (_Float16, 3.0, 3.0, 3)
-TEST_INIT (_Float16, 1023.5, 1023.0, 4)
-TEST_INIT (_Float16, 1024.0, 1024.0, 5)
-TEST_INIT (_Float16, 0.0, 0.0, 6)
-TEST_INIT (_Float16, -0.0, -0.0, 7)
-TEST_INIT (_Float16, -1023.5, -1023.0, 8)
-TEST_INIT (_Float16, -1024.0, -1024.0, 9)
-
-int
-main ()
-{
-  RUN_TEST (_Float16, 1, __builtin_truncf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 2, __builtin_truncf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 3, __builtin_truncf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 4, __builtin_truncf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 5, __builtin_truncf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 6, __builtin_truncf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 7, __builtin_truncf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 8, __builtin_truncf16, in, out, ref, ARRAY_SIZE);
-  RUN_TEST (_Float16, 9, __builtin_truncf16, in, out, ref, ARRAY_SIZE);
-
-  return 0;
-}
diff --git a/gcc/testsuite/gcc.target/riscv/rvv/rvv.exp b/gcc/testsuite/gcc.target/riscv/rvv/rvv.exp
index 87d3e8f9a06..ff76e17d0e6 100644
--- a/gcc/testsuite/gcc.target/riscv/rvv/rvv.exp
+++ b/gcc/testsuite/gcc.target/riscv/rvv/rvv.exp
@@ -30,10 +30,10 @@ if ![info exists DEFAULT_CFLAGS] then {
     set DEFAULT_CFLAGS " -ansi -pedantic-errors"
 }
 
-set gcc_march "rv64gcv_zfa_zfh"
+set gcc_march "rv64gcv_zfh"
 set gcc_mabi  "lp64d"
 if [istarget riscv32-*-*] then {
-  set gcc_march "rv32gcv_zfa_zfh"
+  set gcc_march "rv32gcv_zfh"
   set gcc_mabi  "ilp32d"
 }

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-10-09 12:52 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-09 12:52 [gcc(refs/vendors/riscv/heads/gcc-13-with-riscv-opts)] Revert "RISC-V: Add more run test for FP rounding autovec" Jeff Law

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).