-
Notifications
You must be signed in to change notification settings - Fork 286
Windows CI: CCCL C Parallel #6254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
b6bcddd
91c0a17
e0d088c
4ab6373
fc17be2
56bc389
b2ff961
37ec5d5
dbf681c
35d16da
26fea2e
80526b6
5fea47a
00de8f8
d256cb5
6ca186d
afda68f
a68ee38
4f9c161
7827866
3254d2b
4febfcf
bc9bb73
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -83,12 +83,11 @@ VEC_SPECIALIZATION(int4); | |
|
|
||
| VEC_SPECIALIZATION(long2); | ||
| VEC_SPECIALIZATION(long3); | ||
| _CCCL_SUPPRESS_DEPRECATED_PUSH | ||
| VEC_SPECIALIZATION(long4); | ||
| _CCCL_SUPPRESS_DEPRECATED_POP | ||
| # if _CCCL_CTK_AT_LEAST(13, 0) | ||
| VEC_SPECIALIZATION(long4_16a); | ||
| VEC_SPECIALIZATION(long4_32a); | ||
| # else | ||
| VEC_SPECIALIZATION(long4); | ||
|
Comment on lines
85
to
+90
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remark: This makes On second thought, maybe we are fine with no longer testing with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Agreed, I think this is the cleanest way around the headache of trying to actually suppress these warnings. MSVC likes to still complain even though they were suppressed >.< |
||
| # endif // _CCCL_CTK_AT_LEAST(13, 0) | ||
|
|
||
| // VEC_SPECIALIZATION(ulong2); | ||
|
|
@@ -97,22 +96,20 @@ VEC_SPECIALIZATION(long4_32a); | |
|
|
||
| VEC_SPECIALIZATION(longlong2); | ||
| VEC_SPECIALIZATION(longlong3); | ||
| _CCCL_SUPPRESS_DEPRECATED_PUSH | ||
| VEC_SPECIALIZATION(longlong4); | ||
| _CCCL_SUPPRESS_DEPRECATED_POP | ||
| # if _CCCL_CTK_AT_LEAST(13, 0) | ||
| VEC_SPECIALIZATION(longlong4_16a); | ||
| VEC_SPECIALIZATION(longlong4_32a); | ||
| # else | ||
| VEC_SPECIALIZATION(longlong4); | ||
| # endif // _CCCL_CTK_AT_LEAST(13, 0) | ||
|
|
||
| VEC_SPECIALIZATION(ulonglong2); | ||
| // VEC_SPECIALIZATION(ulonglong3); | ||
| _CCCL_SUPPRESS_DEPRECATED_PUSH | ||
| VEC_SPECIALIZATION(ulonglong4); | ||
| _CCCL_SUPPRESS_DEPRECATED_POP | ||
| # if _CCCL_CTK_AT_LEAST(13, 0) | ||
| VEC_SPECIALIZATION(ulonglong4_16a); | ||
| VEC_SPECIALIZATION(ulonglong4_32a); | ||
| # else | ||
| VEC_SPECIALIZATION(ulonglong4); | ||
| # endif // _CCCL_CTK_AT_LEAST(13, 0) | ||
|
|
||
| VEC_SPECIALIZATION(float2); | ||
|
|
@@ -121,12 +118,11 @@ VEC_SPECIALIZATION(float4); | |
|
|
||
| VEC_SPECIALIZATION(double2); | ||
| VEC_SPECIALIZATION(double3); | ||
| _CCCL_SUPPRESS_DEPRECATED_PUSH | ||
| VEC_SPECIALIZATION(double4); | ||
| _CCCL_SUPPRESS_DEPRECATED_POP | ||
| # if _CCCL_CTK_AT_LEAST(13, 0) | ||
| VEC_SPECIALIZATION(double4_16a); | ||
| VEC_SPECIALIZATION(double4_32a); | ||
| # else | ||
| VEC_SPECIALIZATION(double4); | ||
| # endif // _CCCL_CTK_AT_LEAST(13, 0) | ||
|
|
||
| # if TEST_HALF_T() | ||
|
|
@@ -167,8 +163,3 @@ VEC_GEN_MOD_SPECIALIZATION(ulonglong4, unsigned long long); | |
| VEC_GEN_MOD_SPECIALIZATION(ushort4, unsigned short); | ||
| #endif // THRUST_DEVICE_SYSTEM == THRUST_DEVICE_SYSTEM_CUDA | ||
| } // namespace c2h::detail | ||
|
|
||
| // Suppress deprecation warnings for use of vector types in the `*cudafe1.stub.c` file | ||
| #if _CCCL_CTK_AT_LEAST(13, 0) && _CCCL_COMPILER(CLANG) | ||
| _CCCL_SUPPRESS_DEPRECATED_PUSH | ||
| #endif // _CCCL_CTK_AT_LEAST(13, 0) && _CCCL_COMPILER(CLANG) | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oof, how was that working on Linux?!