Skip to content

Commit

Permalink
Fixed clang-format that only showed up on the bots.
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Woloszyn <[email protected]>
  • Loading branch information
AWoloszyn committed Dec 11, 2024
1 parent 89a9358 commit b6fcb58
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions runtime/src/iree/hal/drivers/hip/memory_pools.c
Original file line number Diff line number Diff line change
Expand Up @@ -264,11 +264,10 @@ iree_status_t iree_hal_hip_memory_pools_prepare_buffer(
iree_hal_buffer_t* buffer = NULL;

iree_status_t status = iree_hal_hip_buffer_wrap(
placement, params.type, params.access, params.usage,
allocation_size, /*byte_offset=*/0,
/*byte_length=*/allocation_size, IREE_HAL_HIP_BUFFER_TYPE_ASYNC,
/*device_ptr*/ NULL, /*host_ptr=*/NULL, release_callback,
pools->host_allocator, &buffer);
placement, params.type, params.access, params.usage, allocation_size,
/*byte_offset=*/0, /*byte_length=*/allocation_size,
IREE_HAL_HIP_BUFFER_TYPE_ASYNC, /*device_ptr*/ NULL, /*host_ptr=*/NULL,
release_callback, pools->host_allocator, &buffer);

if (iree_status_is_ok(status)) {
*out_buffer = buffer;
Expand Down

0 comments on commit b6fcb58

Please sign in to comment.