Skip to content

Commit 62d03c2

Browse files
merykittyVladimir Kozlov
authored and
Vladimir Kozlov
committedJan 7, 2022
8279547: [vectorapi] Enable vector cast tests after JDK-8278948
Reviewed-by: kvn
1 parent 6a42fba commit 62d03c2

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed
 

‎test/hotspot/jtreg/compiler/vectorapi/reshape/utils/TestCastMethods.java

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2021, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -30,16 +30,15 @@
3030
import static compiler.vectorapi.reshape.utils.VectorSpeciesPair.makePair;
3131

3232
/**
33-
* The cast intrinsics implemented on each platform, commented out tests are the ones that are
34-
* supposed to work but currently don't.
33+
* The cast intrinsics implemented on each platform.
3534
*/
3635
public class TestCastMethods {
3736
public static final List<VectorSpeciesPair> AVX1_CAST_TESTS = List.of(
3837
makePair(BSPEC64, SSPEC64),
3938
makePair(BSPEC64, SSPEC128),
4039
makePair(BSPEC64, ISPEC128),
4140
makePair(BSPEC64, FSPEC128),
42-
// makePair(BSPEC64, DSPEC256),
41+
makePair(BSPEC64, DSPEC256),
4342
makePair(SSPEC64, BSPEC64),
4443
makePair(SSPEC128, BSPEC64),
4544
makePair(SSPEC64, ISPEC64),
@@ -48,7 +47,7 @@ public class TestCastMethods {
4847
makePair(SSPEC64, FSPEC64),
4948
makePair(SSPEC64, FSPEC128),
5049
makePair(SSPEC64, DSPEC128),
51-
// makePair(SSPEC64, DSPEC256),
50+
makePair(SSPEC64, DSPEC256),
5251
makePair(ISPEC128, BSPEC64),
5352
makePair(ISPEC64, SSPEC64),
5453
makePair(ISPEC128, SSPEC64),

0 commit comments

Comments
 (0)
Please sign in to comment.