Skip to content

Commit 8367982

Browse files
hamlinHamlin-Li
authored andcommitted
not enable RoundDoubleModeV
1 parent 0e6f1cb commit 8367982

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/hotspot/jtreg/compiler/vectorization/runner/BasicDoubleOpTest.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/*
22
* Copyright (c) 2022, 2023, Arm Limited. All rights reserved.
33
* Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
4+
* Copyright (c) 2025, Rivos Inc. All rights reserved.
45
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
56
*
67
* This code is free software; you can redistribute it and/or modify it
@@ -151,7 +152,7 @@ public double[] vectorSqrt() {
151152
}
152153

153154
@Test
154-
@IR(applyIfCPUFeatureOr = {"asimd", "true", "avx", "true", "rvv", "true"},
155+
@IR(applyIfCPUFeatureOr = {"asimd", "true", "avx", "true"},
155156
counts = {IRNode.ROUND_DOUBLE_MODE_V, ">0"})
156157
public double[] vectorCeil() {
157158
double[] res = new double[SIZE];
@@ -162,7 +163,7 @@ public double[] vectorCeil() {
162163
}
163164

164165
@Test
165-
@IR(applyIfCPUFeatureOr = {"asimd", "true", "avx", "true", "rvv", "true"},
166+
@IR(applyIfCPUFeatureOr = {"asimd", "true", "avx", "true"},
166167
counts = {IRNode.ROUND_DOUBLE_MODE_V, ">0"})
167168
public double[] vectorFloor() {
168169
double[] res = new double[SIZE];
@@ -173,7 +174,7 @@ public double[] vectorFloor() {
173174
}
174175

175176
@Test
176-
@IR(applyIfCPUFeatureOr = {"asimd", "true", "avx", "true", "rvv", "true"},
177+
@IR(applyIfCPUFeatureOr = {"asimd", "true", "avx", "true"},
177178
counts = {IRNode.ROUND_DOUBLE_MODE_V, ">0"})
178179
public double[] vectorRint() {
179180
double[] res = new double[SIZE];

0 commit comments

Comments
 (0)