HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
basic_types.h
Go to the documentation of this file.
1 // Copyright (c) Microsoft Corporation. All rights reserved.
2 // Licensed under the MIT License.
3 
4 #pragma once
5 
6 #include <cstdint>
7 
8 namespace onnxruntime {
9 
10 /** A computed hash value. */
11 using HashValue = uint64_t;
12 
13 /** The type of an argument (input or output).*/
14 enum class ArgType : uint8_t {
15  kInput,
16  kOutput,
17 };
18 
19 } // namespace onnxruntime
uint64_t HashValue
Definition: basic_types.h:11