File tree Expand file tree Collapse file tree 5 files changed +0
-8
lines changed Expand file tree Collapse file tree 5 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -8387,7 +8387,6 @@ urCommandBufferAppendUSMMemcpyExp(
83878387/// - ::UR_RESULT_ERROR_INVALID_SIZE
83888388/// + `patternSize == 0 || size == 0`
83898389/// + `patternSize > size`
8390- /// + `(patternSize & (patternSize - 1)) != 0`
83918390/// + `size % patternSize != 0`
83928391/// + If `size` is higher than the allocation size of `ptr`
83938392/// - ::UR_RESULT_ERROR_INVALID_MEM_OBJECT
Original file line number Diff line number Diff line change @@ -408,7 +408,6 @@ returns:
408408 - $X_RESULT_ERROR_INVALID_SIZE :
409409 - " `patternSize == 0 || size == 0`"
410410 - " `patternSize > size`"
411- - " `(patternSize & (patternSize - 1)) != 0`"
412411 - " `size % patternSize != 0`"
413412 - " If `size` is higher than the allocation size of `ptr`"
414413 - $X_RESULT_ERROR_INVALID_MEM_OBJECT
Original file line number Diff line number Diff line change @@ -8085,10 +8085,6 @@ __urdlllocal ur_result_t UR_APICALL urCommandBufferAppendUSMFillExp(
80858085 return UR_RESULT_ERROR_INVALID_SIZE;
80868086 }
80878087
8088- if ((patternSize & (patternSize - 1 )) != 0 ) {
8089- return UR_RESULT_ERROR_INVALID_SIZE;
8090- }
8091-
80928088 if (size % patternSize != 0 ) {
80938089 return UR_RESULT_ERROR_INVALID_SIZE;
80948090 }
Original file line number Diff line number Diff line change @@ -7539,7 +7539,6 @@ ur_result_t UR_APICALL urCommandBufferAppendUSMMemcpyExp(
75397539// / - ::UR_RESULT_ERROR_INVALID_SIZE
75407540// / + `patternSize == 0 || size == 0`
75417541// / + `patternSize > size`
7542- // / + `(patternSize & (patternSize - 1)) != 0`
75437542// / + `size % patternSize != 0`
75447543// / + If `size` is higher than the allocation size of `ptr`
75457544// / - ::UR_RESULT_ERROR_INVALID_MEM_OBJECT
Original file line number Diff line number Diff line change @@ -6403,7 +6403,6 @@ ur_result_t UR_APICALL urCommandBufferAppendUSMMemcpyExp(
64036403// / - ::UR_RESULT_ERROR_INVALID_SIZE
64046404// / + `patternSize == 0 || size == 0`
64056405// / + `patternSize > size`
6406- // / + `(patternSize & (patternSize - 1)) != 0`
64076406// / + `size % patternSize != 0`
64086407// / + If `size` is higher than the allocation size of `ptr`
64096408// / - ::UR_RESULT_ERROR_INVALID_MEM_OBJECT
You can’t perform that action at this time.
0 commit comments