mirror of
https://github.com/wassname/ray.git
synced 2026-07-01 08:53:44 +08:00
ci: Redo format.sh --all script & backfill lint fixes (#9956)
This commit is contained in:
+1
-1
@@ -1,7 +1,7 @@
|
||||
|
||||
#include <ray/api.h>
|
||||
|
||||
#include <ray/api/ray_config.h>
|
||||
|
||||
#include "runtime/abstract_ray_runtime.h"
|
||||
|
||||
namespace ray {
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
|
||||
#include "abstract_ray_runtime.h"
|
||||
|
||||
#include <cassert>
|
||||
|
||||
#include <ray/api.h>
|
||||
#include <ray/api/ray_config.h>
|
||||
#include <ray/api/ray_exception.h>
|
||||
|
||||
#include <cassert>
|
||||
|
||||
#include "../util/address_helper.h"
|
||||
#include "../util/process_helper.h"
|
||||
#include "local_mode_ray_runtime.h"
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <mutex>
|
||||
|
||||
#include <ray/api/ray_config.h>
|
||||
#include <ray/api/ray_runtime.h>
|
||||
|
||||
#include <msgpack.hpp>
|
||||
#include <mutex>
|
||||
|
||||
#include "./object/object_store.h"
|
||||
#include "./task/task_executor.h"
|
||||
#include "./task/task_submitter.h"
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
#include "local_mode_ray_runtime.h"
|
||||
|
||||
#include <ray/api.h>
|
||||
|
||||
#include "../util/address_helper.h"
|
||||
#include "./object/local_mode_object_store.h"
|
||||
#include "./object/object_store.h"
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <unordered_map>
|
||||
|
||||
#include "abstract_ray_runtime.h"
|
||||
#include "ray/core.h"
|
||||
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
#include "native_ray_runtime.h"
|
||||
|
||||
#include <ray/api.h>
|
||||
|
||||
#include "../util/address_helper.h"
|
||||
#include "./object/native_object_store.h"
|
||||
#include "./object/object_store.h"
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <unordered_map>
|
||||
|
||||
#include "abstract_ray_runtime.h"
|
||||
#include "ray/core.h"
|
||||
|
||||
|
||||
@@ -1,12 +1,14 @@
|
||||
|
||||
#include "local_mode_object_store.h"
|
||||
|
||||
#include <ray/api/ray_exception.h>
|
||||
|
||||
#include <algorithm>
|
||||
#include <chrono>
|
||||
#include <list>
|
||||
#include <thread>
|
||||
|
||||
#include <ray/api/ray_exception.h>
|
||||
#include "../abstract_ray_runtime.h"
|
||||
#include "local_mode_object_store.h"
|
||||
|
||||
namespace ray {
|
||||
namespace api {
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
#pragma once
|
||||
|
||||
#include <unordered_map>
|
||||
#include "ray/core.h"
|
||||
|
||||
#include "../local_mode_ray_runtime.h"
|
||||
#include "object_store.h"
|
||||
#include "ray/core.h"
|
||||
|
||||
namespace ray {
|
||||
namespace api {
|
||||
|
||||
@@ -1,12 +1,14 @@
|
||||
|
||||
#include "native_object_store.h"
|
||||
|
||||
#include <ray/api/ray_exception.h>
|
||||
|
||||
#include <algorithm>
|
||||
#include <chrono>
|
||||
#include <list>
|
||||
#include <thread>
|
||||
|
||||
#include <ray/api/ray_exception.h>
|
||||
#include "../abstract_ray_runtime.h"
|
||||
#include "native_object_store.h"
|
||||
|
||||
namespace ray {
|
||||
namespace api {
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
#pragma once
|
||||
|
||||
#include <unordered_map>
|
||||
#include "ray/core.h"
|
||||
|
||||
#include "../native_ray_runtime.h"
|
||||
#include "object_store.h"
|
||||
#include "ray/core.h"
|
||||
|
||||
namespace ray {
|
||||
namespace api {
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
|
||||
#include <ray/api/wait_result.h>
|
||||
|
||||
#include <memory>
|
||||
#include <msgpack.hpp>
|
||||
|
||||
namespace ray {
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <msgpack.hpp>
|
||||
|
||||
#include "ray/core.h"
|
||||
|
||||
namespace ray {
|
||||
|
||||
@@ -1,11 +1,13 @@
|
||||
|
||||
#include "local_mode_task_submitter.h"
|
||||
|
||||
#include <ray/api/ray_exception.h>
|
||||
|
||||
#include <boost/asio/post.hpp>
|
||||
#include <memory>
|
||||
|
||||
#include <ray/api/ray_exception.h>
|
||||
#include "../../util/address_helper.h"
|
||||
#include "../abstract_ray_runtime.h"
|
||||
#include "local_mode_task_submitter.h"
|
||||
|
||||
namespace ray {
|
||||
namespace api {
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
#include <boost/asio/thread_pool.hpp>
|
||||
#include <memory>
|
||||
#include <queue>
|
||||
|
||||
#include "../local_mode_ray_runtime.h"
|
||||
#include "absl/synchronization/mutex.h"
|
||||
#include "invocation_spec.h"
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
#include "native_task_submitter.h"
|
||||
|
||||
#include <ray/api/ray_exception.h>
|
||||
|
||||
#include "../../util/address_helper.h"
|
||||
#include "../abstract_ray_runtime.h"
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
#include <boost/asio/thread_pool.hpp>
|
||||
#include <memory>
|
||||
#include <queue>
|
||||
|
||||
#include "../native_ray_runtime.h"
|
||||
#include "invocation_spec.h"
|
||||
#include "ray/core.h"
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
|
||||
#include "task_executor.h"
|
||||
|
||||
#include <memory>
|
||||
|
||||
#include "../../util/address_helper.h"
|
||||
#include "../abstract_ray_runtime.h"
|
||||
#include "task_executor.h"
|
||||
|
||||
namespace ray {
|
||||
namespace api {
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
|
||||
#include "absl/synchronization/mutex.h"
|
||||
#include "invocation_spec.h"
|
||||
#include "ray/core.h"
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
#pragma once
|
||||
|
||||
#include <ray/api/ray_runtime.h>
|
||||
|
||||
#include <memory>
|
||||
|
||||
#include <ray/api/ray_runtime.h>
|
||||
#include "invocation_spec.h"
|
||||
|
||||
namespace ray {
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include <ray/api.h>
|
||||
|
||||
#include <future>
|
||||
#include <thread>
|
||||
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include <ray/api.h>
|
||||
|
||||
#include <chrono>
|
||||
#include <thread>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user