Skip to content

Commit

Permalink
fix: added missed interface implementation for pixel
Browse files Browse the repository at this point in the history
  • Loading branch information
RSMNYS committed Jan 7, 2025
1 parent 3d58e5a commit 6170627
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,10 @@ void SingleModelPipeline::backend_convert_inputs(
mlperf_backend_ptr_t backend_ptr, int bytes, int width, int height,
uint8_t* data) {}

void SingleModelPipeline::backend_convert_outputs(
mlperf_backend_ptr_t backend_ptr, int bytes, int width, int height,
uint8_t *data) {}

void* SingleModelPipeline::backend_get_buffer(size_t n) {
return ::operator new(n);
}
Expand Down

0 comments on commit 6170627

Please sign in to comment.