cpu_provider_factory.h 397 B

12345678910111213141516171819
  1. // Copyright (c) Microsoft Corporation. All rights reserved.
  2. // Licensed under the MIT License.
  3. #include "onnxruntime_c_api.h"
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. /**
  8. * \param use_arena zero: false. non-zero: true.
  9. */
  10. ORT_EXPORT
  11. ORT_API_STATUS(OrtSessionOptionsAppendExecutionProvider_CPU, _In_ OrtSessionOptions* options, int use_arena)
  12. ORT_ALL_ARGS_NONNULL;
  13. #ifdef __cplusplus
  14. }
  15. #endif