Visible to Intel only — GUID: GUID-EB58ED4D-3C63-44E8-9774-507B5B6F4C79
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
DPCT1089
DPCT1090
DPCT1091
DPCT1092
DPCT1093
Message
Detailed Help
Suggestions to Fix
DPCT1094
DPCT1095
DPCT1096
DPCT1097
DPCT1098
DPCT1099
DPCT1100
Visible to Intel only — GUID: GUID-EB58ED4D-3C63-44E8-9774-507B5B6F4C79
DPCT1093
Message
The <Device ID> device may be not the one intended for use. Adjust the selected device if needed.
Detailed Help
The cudaSetDevice function sets the device to run the code on. After migration to SYCL*, the logic for device selection may need to be updated.
For example, this original CUDA* code:
int main( int argc, char** argv) { cudaSetDevice(1); // Device 1 is the best choice in the original code. foo(argc, argv); }
results in the following migrated SYCL code:
int main( int argc, char** argv) { /* DPCT1093 */ dpct::dev_mgr::instance().select_device(1); // Device 1 maybe not the best choice in SYCL. foo(argc, argv); }
which is manually adjusted to:
int main( int argc, char** argv) { dpct::dev_mgr::instance().select_device(0); foo(argc, argv); }
Suggestions to Fix
Review and adjust the device selection logic if needed.