Skip to content

Commit

Permalink
chore: added missed declaration for backend_convert_outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
RSMNYS committed Jan 6, 2025
1 parent f222a14 commit b14424e
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ class StableDiffusionPipeline : public Pipeline {
void backend_convert_inputs(mlperf_backend_ptr_t backend_ptr, int bytes,
int width, int height, uint8_t *data) override;

void backend_convert_outputs(
mlperf_backend_ptr_t backend_ptr, int bytes, int width, int height,
uint8_t* data) override;

void *backend_get_buffer(size_t n) override;

void backend_release_buffer(void *p) override;
Expand Down

0 comments on commit b14424e

Please sign in to comment.