forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.h
More file actions
20 lines (16 loc) · 680 Bytes
/
api.h
File metadata and controls
20 lines (16 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2021 The IREE Authors
//
// Licensed under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#ifndef IREE_RUNTIME_API_H_
#define IREE_RUNTIME_API_H_
// Lower-level APIs:
#include "iree/base/api.h" // IWYU pragma: export
#include "iree/hal/api.h" // IWYU pragma: export
#include "iree/vm/api.h" // IWYU pragma: export
// Runtime API:
#include "iree/runtime/call.h" // IWYU pragma: export
#include "iree/runtime/instance.h" // IWYU pragma: export
#include "iree/runtime/session.h" // IWYU pragma: export
#endif // IREE_RUNTIME_API_H_