nncase.h 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. /* Copyright 2019 Canaan Inc.
  2. *
  3. * Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. *
  7. * http://www.apache.org/licenses/LICENSE-2.0
  8. *
  9. * Unless required by applicable law or agreed to in writing, software
  10. * distributed under the License is distributed on an "AS IS" BASIS,
  11. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. * See the License for the specific language governing permissions and
  13. * limitations under the License.
  14. */
  15. #ifndef _NNCASE_H
  16. #define _NNCASE_H
  17. #include "kpu.h"
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. int nncase_load_kmodel(kpu_model_context_t *ctx, const uint8_t *buffer);
  22. int nncase_get_output(kpu_model_context_t *ctx, uint32_t index, uint8_t **data, size_t *size);
  23. void nncase_model_free(kpu_model_context_t *ctx);
  24. int nncase_run_kmodel(kpu_model_context_t *ctx, const uint8_t *src, dmac_channel_number_t dma_ch, kpu_done_callback_t done_callback, void *userdata);
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28. #endif