"src/include/Sequence.hpp" did not exist on "5e5c27a63b1637556a17e17546147da6cb6d732e"
runtime.h 570 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

/*!
 * \file tl/runtime/runtime.h
 * \brief Runtime functions.
 *
 */

#ifndef TVM_TL_RUNTIME_RUNTIME_H_
#define TVM_TL_RUNTIME_RUNTIME_H_

namespace tvm {
namespace tl {

16
#if (__CUDACC_VER_MAJOR__ >= 12)
17
18
19
20
constexpr const char *tvm_tensormap_create_tiled =
    "__tvm_tensormap_create_tiled";
constexpr const char *tvm_tensormap_create_im2col =
    "__tvm_tensormap_create_im2col";
21
#endif // (__CUDACC_VER_MAJOR__ >= 12)
22
23
} // namespace tl
} // namespace tvm
24

25
#endif //  TVM_TL_RUNTIME_RUNTIME_H_