@@ -1139,28 +1139,28 @@ ur_result_t urDeviceGetInfo(
1139
1139
return ReturnValue (false );
1140
1140
}
1141
1141
case UR_DEVICE_INFO_BINDLESS_SAMPLED_IMAGE_FETCH_1D_USM_EXP: {
1142
- // L0 does not support fetching 1D USM sampled image data.
1143
- return ReturnValue (false );
1142
+ // L0 does support fetching 1D USM sampled image data.
1143
+ return ReturnValue (true );
1144
1144
}
1145
1145
case UR_DEVICE_INFO_BINDLESS_SAMPLED_IMAGE_FETCH_1D_EXP: {
1146
- // L0 does not not support fetching 1D non-USM sampled image data.
1146
+ // L0 does not support fetching 1D non-USM sampled image data.
1147
1147
return ReturnValue (false );
1148
1148
}
1149
1149
case UR_DEVICE_INFO_BINDLESS_SAMPLED_IMAGE_FETCH_2D_USM_EXP: {
1150
- // L0 does not support fetching 2D USM sampled image data.
1151
- return ReturnValue (false );
1150
+ // L0 does support fetching 2D USM sampled image data.
1151
+ return ReturnValue (true );
1152
1152
}
1153
1153
case UR_DEVICE_INFO_BINDLESS_SAMPLED_IMAGE_FETCH_2D_EXP: {
1154
- // L0 does not support fetching 2D non-USM sampled image data.
1155
- return ReturnValue (false );
1154
+ // L0 does support fetching 2D non-USM sampled image data.
1155
+ return ReturnValue (true );
1156
1156
}
1157
1157
case UR_DEVICE_INFO_BINDLESS_SAMPLED_IMAGE_FETCH_3D_EXP: {
1158
- // L0 does not support fetching 3D non-USM sampled image data.
1159
- return ReturnValue (false );
1158
+ // L0 does support fetching 3D non-USM sampled image data.
1159
+ return ReturnValue (true );
1160
1160
}
1161
1161
case UR_DEVICE_INFO_IMAGE_ARRAY_SUPPORT_EXP: {
1162
- // L0 does not support image arrays
1163
- return ReturnValue (false );
1162
+ // L0 does support image arrays
1163
+ return ReturnValue (true );
1164
1164
}
1165
1165
case UR_DEVICE_INFO_BINDLESS_UNIQUE_ADDRESSING_PER_DIM_EXP: {
1166
1166
// L0 does not support unique addressing per dimension
@@ -1171,7 +1171,7 @@ ur_result_t urDeviceGetInfo(
1171
1171
return ReturnValue (false );
1172
1172
}
1173
1173
case UR_DEVICE_INFO_BINDLESS_SAMPLE_2D_USM_EXP: {
1174
- // L0 does not support sampling 1D USM sampled image data.
1174
+ // L0 does not support sampling 2D USM sampled image data.
1175
1175
return ReturnValue (false );
1176
1176
}
1177
1177
case UR_DEVICE_INFO_PROGRAM_SET_SPECIALIZATION_CONSTANTS:
0 commit comments