1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
30
30
import static compiler .vectorapi .reshape .utils .VectorSpeciesPair .makePair ;
31
31
32
32
/**
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.
35
34
*/
36
35
public class TestCastMethods {
37
36
public static final List <VectorSpeciesPair > AVX1_CAST_TESTS = List .of (
38
37
makePair (BSPEC64 , SSPEC64 ),
39
38
makePair (BSPEC64 , SSPEC128 ),
40
39
makePair (BSPEC64 , ISPEC128 ),
41
40
makePair (BSPEC64 , FSPEC128 ),
42
- // makePair(BSPEC64, DSPEC256),
41
+ makePair (BSPEC64 , DSPEC256 ),
43
42
makePair (SSPEC64 , BSPEC64 ),
44
43
makePair (SSPEC128 , BSPEC64 ),
45
44
makePair (SSPEC64 , ISPEC64 ),
@@ -48,7 +47,7 @@ public class TestCastMethods {
48
47
makePair (SSPEC64 , FSPEC64 ),
49
48
makePair (SSPEC64 , FSPEC128 ),
50
49
makePair (SSPEC64 , DSPEC128 ),
51
- // makePair(SSPEC64, DSPEC256),
50
+ makePair (SSPEC64 , DSPEC256 ),
52
51
makePair (ISPEC128 , BSPEC64 ),
53
52
makePair (ISPEC64 , SSPEC64 ),
54
53
makePair (ISPEC128 , SSPEC64 ),
0 commit comments