Skip to content

Commit 280852a

Browse files
committed
[REFACTOR][RUNTIME] Fix include ordering per clang-format
Apply clang-format ordering fixes to include directives changed by the runtime reorganization commits. All changes are include reorderings only.
1 parent d6aebea commit 280852a

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/runtime/extra/contrib/nvshmem/memory_allocator.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
#include <thread>
2626

2727
#include "../../../cuda/cuda_common.h"
28-
#include "../../disco/utils.h"
2928
#include "../../../memory/pooled_allocator.h"
29+
#include "../../disco/utils.h"
3030

3131
namespace tvm {
3232
namespace runtime {

src/runtime/opencl/opencl_common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@
7373
#include "../file_utils.h"
7474
#include "../metadata.h"
7575
#include "../pack_args.h"
76-
#include "texture.h"
7776
#include "../thread_storage_scope.h"
77+
#include "texture.h"
7878

7979
namespace tvm {
8080
namespace runtime {

src/runtime/vulkan/vulkan_device_api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
#include <string>
2727
#include <vector>
2828

29-
#include "thread_map.h"
3029
#include "../workspace_pool.h"
30+
#include "thread_map.h"
3131
#include "vulkan/vulkan_core.h"
3232
#include "vulkan_device.h"
3333
#include "vulkan_instance.h"

web/emcc/wasm_runtime.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
#include <tvm/ffi/reflection/registry.h>
3333
#include <tvm/runtime/logging.h>
3434

35-
#include "src/runtime/extra/contrib/sort/sort.cc"
3635
#include "src/runtime/cpu_device_api.cc"
3736
#include "src/runtime/device_api.cc"
37+
#include "src/runtime/extra/contrib/sort/sort.cc"
3838
#include "src/runtime/file_utils.cc"
3939
#include "src/runtime/logging.cc"
4040
#include "src/runtime/rpc/rpc_channel.cc"

0 commit comments

Comments
 (0)