Visible to Intel only — GUID: GUID-CCDCCD2E-EF76-4259-8085-CE9A6F366EA4
DPCT1000
DPCT1001
DPCT1002
DPCT1003
DPCT1004
DPCT1005
DPCT1006
DPCT1007
DPCT1008
DPCT1009
DPCT1010
DPCT1011
DPCT1012
DPCT1013
DPCT1014
DPCT1015
DPCT1016
DPCT1017
DPCT1018
DPCT1019
DPCT1020
DPCT1021
DPCT1022
DPCT1023
DPCT1024
DPCT1025
DPCT1026
DPCT1027
DPCT1028
DPCT1029
DPCT1030
DPCT1031
DPCT1032
DPCT1033
DPCT1034
DPCT1035
DPCT1036
DPCT1037
DPCT1038
DPCT1039
DPCT1040
DPCT1041
DPCT1042
DPCT1043
DPCT1044
DPCT1045
DPCT1046
DPCT1047
DPCT1048
DPCT1049
DPCT1050
DPCT1051
DPCT1052
DPCT1053
DPCT1054
DPCT1055
DPCT1056
DPCT1057
DPCT1058
DPCT1059
DPCT1060
DPCT1061
DPCT1062
DPCT1063
DPCT1064
DPCT1065
DPCT1066
DPCT1067
DPCT1068
DPCT1069
DPCT1070
DPCT1071
DPCT1072
DPCT1073
DPCT1074
DPCT1075
DPCT1076
DPCT1077
DPCT1078
DPCT1079
DPCT1080
DPCT1081
DPCT1082
DPCT1083
DPCT1084
DPCT1085
DPCT1086
DPCT1087
DPCT1088
Message
Detailed Help
Suggestions to Fix
DPCT1089
DPCT1090
DPCT1091
DPCT1092
DPCT1093
DPCT1094
DPCT1095
DPCT1096
DPCT1097
DPCT1098
DPCT1099
DPCT1100
Visible to Intel only — GUID: GUID-CCDCCD2E-EF76-4259-8085-CE9A6F366EA4
DPCT1088
Message
The macro definition has multiple migration results in the dimension of free queries function that could not be unified. You may need to modify the code.
Detailed Help
The Intel® DPC++ Compatibility Tool was unable to migrate the code correctly. You need to modify the code manually.
For example, this original code:
// original code: #define TB(x) cg::thread_block x = cg::this_thread_block() __global__ void kernel1() { int id = threadIdx.x; TB(a); } __global__ void kernel3() { int id = threadIdx.z; TB(b); }
migrated with options --assume-nd-range-dim=1 and --use-experimental-features=free-function-queries, results in the following migrated DPC++ code:
#define TB(x) auto x = sycl::this_group< Placeholder /* Fix the dimension manually */>() // It should be this_group<1>() when used in kernel1 and this_group<3>() when used in kernel3 void kernel1() { int id = sycl::this_nd_item<1>().get_local_id(0); TB(a); } void kernel3() { int id = sycl::this_nd_item<3>().get_local_id(0); TB(b); }
which is manually adjusted to:
// fixed DPC++ code: #define TB(x, dimensions) auto x = sycl::this_group< dimensions >() void kernel1() { int id = sycl::this_nd_item<1>().get_local_id(0); TB(a, 1); } void kernel3() { int id = sycl::this_nd_item<3>().get_local_id(0); TB(b, 3); }
Suggestions to Fix
Rewrite the code manually.