@@ -251,7 +251,7 @@ umf_result_t umfLevelZeroMemoryProviderParamsCreate(
251251 umf_level_zero_memory_provider_params_handle_t * hParams ) {
252252 libumfInit ();
253253 if (!hParams ) {
254- LOG_ERR ("Level zero memory provider params handle is NULL" );
254+ LOG_ERR ("Level Zero memory provider params handle is NULL" );
255255 return UMF_RESULT_ERROR_INVALID_ARGUMENT ;
256256 }
257257
@@ -287,12 +287,12 @@ umf_result_t umfLevelZeroMemoryProviderParamsSetContext(
287287 umf_level_zero_memory_provider_params_handle_t hParams ,
288288 ze_context_handle_t hContext ) {
289289 if (!hParams ) {
290- LOG_ERR ("Level zero memory provider params handle is NULL" );
290+ LOG_ERR ("Level Zero memory provider params handle is NULL" );
291291 return UMF_RESULT_ERROR_INVALID_ARGUMENT ;
292292 }
293293
294294 if (!hContext ) {
295- LOG_ERR ("Level zero context handle is NULL" );
295+ LOG_ERR ("Level Zero context handle is NULL" );
296296 return UMF_RESULT_ERROR_INVALID_ARGUMENT ;
297297 }
298298
@@ -305,7 +305,7 @@ umf_result_t umfLevelZeroMemoryProviderParamsSetDevice(
305305 umf_level_zero_memory_provider_params_handle_t hParams ,
306306 ze_device_handle_t hDevice ) {
307307 if (!hParams ) {
308- LOG_ERR ("Level zero memory provider params handle is NULL" );
308+ LOG_ERR ("Level Zero memory provider params handle is NULL" );
309309 return UMF_RESULT_ERROR_INVALID_ARGUMENT ;
310310 }
311311
@@ -318,7 +318,7 @@ umf_result_t umfLevelZeroMemoryProviderParamsSetMemoryType(
318318 umf_level_zero_memory_provider_params_handle_t hParams ,
319319 umf_usm_memory_type_t memoryType ) {
320320 if (!hParams ) {
321- LOG_ERR ("Level zero memory provider params handle is NULL" );
321+ LOG_ERR ("Level Zero memory provider params handle is NULL" );
322322 return UMF_RESULT_ERROR_INVALID_ARGUMENT ;
323323 }
324324
@@ -331,7 +331,7 @@ umf_result_t umfLevelZeroMemoryProviderParamsSetDeviceOrdinal(
331331 umf_level_zero_memory_provider_params_handle_t hParams ,
332332 uint32_t deviceOrdinal ) {
333333 if (!hParams ) {
334- LOG_ERR ("Level zero memory provider params handle is NULL" );
334+ LOG_ERR ("Level Zero memory provider params handle is NULL" );
335335 return UMF_RESULT_ERROR_INVALID_ARGUMENT ;
336336 }
337337 hParams -> device_ordinal = deviceOrdinal ;
@@ -343,7 +343,7 @@ umf_result_t umfLevelZeroMemoryProviderParamsSetResidentDevices(
343343 umf_level_zero_memory_provider_params_handle_t hParams ,
344344 ze_device_handle_t * hDevices , uint32_t deviceCount ) {
345345 if (!hParams ) {
346- LOG_ERR ("Level zero memory provider params handle is NULL" );
346+ LOG_ERR ("Level Zero memory provider params handle is NULL" );
347347 return UMF_RESULT_ERROR_INVALID_ARGUMENT ;
348348 }
349349
@@ -362,7 +362,7 @@ umf_result_t umfLevelZeroMemoryProviderParamsSetFreePolicy(
362362 umf_level_zero_memory_provider_params_handle_t hParams ,
363363 umf_level_zero_memory_provider_free_policy_t policy ) {
364364 if (!hParams ) {
365- LOG_ERR ("Level zero memory provider params handle is NULL" );
365+ LOG_ERR ("Level Zero memory provider params handle is NULL" );
366366 return UMF_RESULT_ERROR_INVALID_ARGUMENT ;
367367 }
368368
0 commit comments