AMD rocAL API#
The AMD rocAL is designed to efficiently decode and process images and videos from a variety of storage formats and modify them through a processing graph programmable by the user. More...
Functions | |
RocalContext ROCAL_API_CALL | rocalCreate (size_t batch_size, RocalProcessMode affinity, int gpu_id=0, size_t cpu_thread_count=1, size_t prefetch_queue_depth=3, RocalTensorOutputType output_tensor_data_type=RocalTensorOutputType::ROCAL_FP32) |
rocalCreate creates the context for a new augmentation pipeline. Initializes all the required internals for the pipeline More... | |
RocalStatus ROCAL_API_CALL | rocalVerify (RocalContext context) |
rocalVerify function to verify the graph for all the inputs and outputs More... | |
RocalStatus ROCAL_API_CALL | rocalRun (RocalContext context) |
rocalRun function to process and run the built and verified graph. More... | |
RocalStatus ROCAL_API_CALL | rocalRelease (RocalContext rocal_context) |
rocalRelease function to free all the resources allocated during the graph creation process. More... | |
Detailed Description
The AMD rocAL is designed to efficiently decode and process images and videos from a variety of storage formats and modify them through a processing graph programmable by the user.
Function Documentation
◆ rocalCreate()
RocalContext ROCAL_API_CALL rocalCreate | ( | size_t | batch_size, |
RocalProcessMode | affinity, | ||
int | gpu_id = 0 , |
||
size_t | cpu_thread_count = 1 , |
||
size_t | prefetch_queue_depth = 3 , |
||
RocalTensorOutputType | output_tensor_data_type = RocalTensorOutputType::ROCAL_FP32 |
||
) |
rocalCreate creates the context for a new augmentation pipeline. Initializes all the required internals for the pipeline
- Parameters
-
[in] batch_size [in] affinity RocalProcessMode: Defines whether rocal data loading should be on the CPU or GPU. [in] gpu_id [in] cpu_thread_count [in] prefetch_queue_depth [in] output_tensor_data_type RocalTensorOutputType: Defines whether the output of rocal tensor is FP32 or FP16.
- Returns
- A RocalContext - The context for the pipeline
◆ rocalRelease()
RocalStatus ROCAL_API_CALL rocalRelease | ( | RocalContext | rocal_context | ) |
rocalRelease function to free all the resources allocated during the graph creation process.
- Parameters
-
[in] context
- Returns
- A RocalStatus - A status code indicating the success or failure.
◆ rocalRun()
RocalStatus ROCAL_API_CALL rocalRun | ( | RocalContext | context | ) |
rocalRun function to process and run the built and verified graph.
- Parameters
-
[in] context
- Returns
- A RocalStatus - A status code indicating the success or failure
◆ rocalVerify()
RocalStatus ROCAL_API_CALL rocalVerify | ( | RocalContext | context | ) |
rocalVerify function to verify the graph for all the inputs and outputs
- Parameters
-
[in] context
- Returns
- A RocalStatus - A status code indicating the success or failure