file_path
stringlengths
3
280
file_language
stringclasses
66 values
content
stringlengths
1
1.04M
repo_name
stringlengths
5
92
repo_stars
int64
0
154k
repo_description
stringlengths
0
402
repo_primary_language
stringclasses
108 values
developer_username
stringlengths
1
25
developer_name
stringlengths
0
30
developer_company
stringlengths
0
82
src/ray/common/id_def.h
C/C++ Header
// This header file is used to avoid code duplication. // It can be included multiple times in id.h, and each inclusion // could use a different definition of the DEFINE_UNIQUE_ID macro. // Macro definition format: DEFINE_UNIQUE_ID(id_type). // NOTE: This file should NOT be included in any file other than id.h. DEFINE...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/id_test.cc
C++
#include "gtest/gtest.h" #include "ray/common/common_protocol.h" #include "ray/common/task/task_spec.h" namespace ray { void TestReturnObjectId(const TaskID &task_id, int64_t return_index, uint8_t transport_type) { // Round trip test for computing the object ID for a task's return value, ...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/ray_config.h
C/C++ Header
#ifndef RAY_CONFIG_H #define RAY_CONFIG_H #include <sstream> #include <unordered_map> #include "ray/util/logging.h" class RayConfig { /// -----------Include ray_config_def.h to define config items.---------------- /// A helper macro that defines a config item. /// In particular, this generates a private field called...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/ray_config_def.h
C/C++ Header
// This header file is used to avoid code duplication. // It can be included multiple times in ray_config.h, and each inclusion // could use a different definition of the RAY_CONFIG macro. // Macro definition format: RAY_CONFIG(type, name, default_value). // NOTE: This file should NOT be included in any file other than...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/ray_object.cc
C++
#include "ray/common/ray_object.h" namespace ray { std::shared_ptr<LocalMemoryBuffer> MakeErrorMetadataBuffer(rpc::ErrorType error_type) { std::string meta = std::to_string(static_cast<int>(error_type)); auto metadata = const_cast<uint8_t *>(reinterpret_cast<const uint8_t *>(meta.data())); auto meta_buffer = ...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/ray_object.h
C/C++ Header
#ifndef RAY_COMMON_RAY_OBJECT_H #define RAY_COMMON_RAY_OBJECT_H #include "ray/common/buffer.h" #include "ray/protobuf/gcs.pb.h" #include "ray/util/logging.h" namespace ray { /// Binary representation of a ray object, consisting of buffer pointers to data and /// metadata. A ray object may have both data and metadata...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/scheduling/cluster_resource_scheduler.cc
C++
#include "cluster_resource_scheduler.h" std::string NodeResources::DebugString() { std::stringstream buffer; buffer << " node predefined resources {"; for (size_t i = 0; i < this->capacities.size(); i++) { buffer << "(" << this->capacities[i].total << ":" << this->capacities[i].available << ") ";...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/scheduling/cluster_resource_scheduler.h
C/C++ Header
#ifndef RAY_COMMON_SCHEDULING_SCHEDULING_H #define RAY_COMMON_SCHEDULING_SCHEDULING_H #include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_set.h" #include "ray/common/scheduling/scheduling_ids.h" #include "ray/common/task/scheduling_resources.h" #include "ray/util/logging.h" #include <iostream...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/scheduling/scheduling_ids.cc
C++
#include "scheduling_ids.h" int64_t StringIdMap::Get(const std::string &string_id) { auto it = string_to_int_.find(string_id); if (it == string_to_int_.end()) { return -1; } else { return it->second; } }; std::string StringIdMap::Get(uint64_t id) { std::string id_string; auto it = int_to_string_.f...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/scheduling/scheduling_ids.h
C/C++ Header
#ifndef RAY_COMMON_SCHEDULING_SCHEDULING_IDS_H #define RAY_COMMON_SCHEDULING_SCHEDULING_IDS_H #include "absl/container/flat_hash_map.h" #include "ray/util/logging.h" #include <string> /// Limit the ID range to test for collisions. #define MAX_ID_TEST 8 /// Class to map string IDs to unique integer IDs and back. cla...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/scheduling/scheduling_test.cc
C++
#include "gmock/gmock.h" #include "gtest/gtest.h" #include <string> #include "ray/common/scheduling/cluster_resource_scheduler.h" #include "ray/common/scheduling/scheduling_ids.h" #ifdef UNORDERED_VS_ABSL_MAPS_EVALUATION #include <chrono> #include "absl/container/flat_hash_map.h" #endif // UNORDERED_VS_ABSL_MAPS_EV...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/status.cc
C++
// Copyright (c) 2011 The LevelDB Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. See the AUTHORS file for names of contributors. // // A Status encapsulates the result of an operation. It may indicate success, // or it may indicate ...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/status.h
C/C++ Header
// Copyright (c) 2011 The LevelDB Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. See the AUTHORS file for names of contributors. // // A Status encapsulates the result of an operation. It may indicate success, // or it may indicate ...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/task/scheduling_resources.cc
C++
#include "scheduling_resources.h" #include <cmath> #include <sstream> #include "ray/util/logging.h" namespace ray { FractionalResourceQuantity::FractionalResourceQuantity() { resource_quantity_ = 0; } FractionalResourceQuantity::FractionalResourceQuantity(double resource_quantity) { // We check for nonnegativeit...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/task/scheduling_resources.h
C/C++ Header
#ifndef RAY_COMMON_TASK_SCHEDULING_RESOURCES_H #define RAY_COMMON_TASK_SCHEDULING_RESOURCES_H #include <string> #include <unordered_map> #include <unordered_set> #include <vector> #include "ray/raylet/format/node_manager_generated.h" namespace ray { /// Conversion factor that is the amount in internal units is equi...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/task/task.cc
C++
#include <sstream> #include "task.h" namespace ray { const TaskExecutionSpecification &Task::GetTaskExecutionSpec() const { return task_execution_spec_; } const TaskSpecification &Task::GetTaskSpecification() const { return task_spec_; } void Task::IncrementNumForwards() { task_execution_spec_.IncrementNumForwar...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/task/task.h
C/C++ Header
#ifndef RAY_COMMON_TASK_TASK_H #define RAY_COMMON_TASK_TASK_H #include <inttypes.h> #include "ray/common/task/task_common.h" #include "ray/common/task/task_execution_spec.h" #include "ray/common/task/task_spec.h" namespace ray { typedef std::function<void(const std::shared_ptr<void>, const std::string &, int, ...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/task/task_common.h
C/C++ Header
#ifndef RAY_COMMON_TASK_TASK_COMMON_H #define RAY_COMMON_TASK_TASK_COMMON_H #include "ray/protobuf/common.pb.h" namespace ray { // NOTE(hchen): Below we alias `ray::rpc::Language|TaskType)` in `ray` namespace. // The reason is because other code should use them as if they were defined in this // `task_common.h` fil...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/task/task_execution_spec.cc
C++
#include <sstream> #include "ray/common/task/task_execution_spec.h" namespace ray { size_t TaskExecutionSpecification::NumForwards() const { return message_->num_forwards(); } void TaskExecutionSpecification::IncrementNumForwards() { message_->set_num_forwards(message_->num_forwards() + 1); } std::string TaskE...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/task/task_execution_spec.h
C/C++ Header
#ifndef RAY_COMMON_TASK_TASK_EXECUTION_SPEC_H #define RAY_COMMON_TASK_TASK_EXECUTION_SPEC_H #include <vector> #include "ray/common/grpc_util.h" #include "ray/common/id.h" #include "ray/common/task/task_common.h" namespace ray { /// Wrapper class of protobuf `TaskExecutionSpec`, see `common.proto` for details. class...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/task/task_spec.cc
C++
#include <sstream> #include "ray/common/task/task_spec.h" #include "ray/util/logging.h" namespace ray { absl::Mutex TaskSpecification::mutex_; std::unordered_map<SchedulingClassDescriptor, SchedulingClass> TaskSpecification::sched_cls_to_id_; std::unordered_map<SchedulingClass, SchedulingClassDescriptor> Tas...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/task/task_spec.h
C/C++ Header
#ifndef RAY_COMMON_TASK_TASK_SPEC_H #define RAY_COMMON_TASK_TASK_SPEC_H #include <cstddef> #include <string> #include <unordered_map> #include <vector> #include "absl/synchronization/mutex.h" #include "ray/common/grpc_util.h" #include "ray/common/id.h" #include "ray/common/task/scheduling_resources.h" #include "ray/c...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/common/task/task_util.h
C/C++ Header
#ifndef RAY_COMMON_TASK_TASK_UTIL_H #define RAY_COMMON_TASK_TASK_UTIL_H #include "ray/common/buffer.h" #include "ray/common/ray_object.h" #include "ray/common/task/task_spec.h" #include "ray/protobuf/common.pb.h" namespace ray { /// Helper class for building a `TaskSpecification` object. class TaskSpecBuilder { pub...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/actor_handle.cc
C++
#include "ray/core_worker/actor_handle.h" #include <memory> namespace { ray::rpc::ActorHandle CreateInnerActorHandle( const class ActorID &actor_id, const class JobID &job_id, const ObjectID &initial_cursor, const Language actor_language, bool is_direct_call, const std::vector<std::string> &actor_creatio...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/actor_handle.h
C/C++ Header
#ifndef RAY_CORE_WORKER_ACTOR_HANDLE_H #define RAY_CORE_WORKER_ACTOR_HANDLE_H #include <gtest/gtest_prod.h> #include "ray/common/id.h" #include "ray/common/task/task_util.h" #include "ray/core_worker/common.h" #include "ray/core_worker/context.h" #include "ray/protobuf/core_worker.pb.h" #include "ray/protobuf/gcs.pb....
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/actor_manager.cc
C++
#include "ray/core_worker/actor_manager.h" #include "ray/gcs/pb_util.h" #include "ray/gcs/redis_accessor.h" namespace ray { void ActorManager::PublishTerminatedActor(const TaskSpecification &actor_creation_task) { auto actor_id = actor_creation_task.ActorCreationId(); auto data = gcs::CreateActorTableData(actor_c...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/actor_manager.h
C/C++ Header
#ifndef RAY_CORE_WORKER_ACTOR_MANAGER_H #define RAY_CORE_WORKER_ACTOR_MANAGER_H #include "ray/core_worker/actor_handle.h" #include "ray/gcs/redis_gcs_client.h" namespace ray { // Interface for testing. class ActorManagerInterface { public: virtual void PublishTerminatedActor(const TaskSpecification &actor_creatio...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/common.cc
C++
#include "ray/core_worker/common.h" namespace ray { std::string WorkerTypeString(WorkerType type) { if (type == WorkerType::DRIVER) { return "driver"; } else if (type == WorkerType::WORKER) { return "worker"; } RAY_CHECK(false); return ""; } std::string LanguageString(Language language) { if (lan...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/common.h
C/C++ Header
#ifndef RAY_CORE_WORKER_COMMON_H #define RAY_CORE_WORKER_COMMON_H #include <string> #include "ray/common/id.h" #include "ray/common/ray_object.h" #include "ray/common/task/task_spec.h" #include "ray/raylet/raylet_client.h" #include "ray/util/util.h" namespace ray { using WorkerType = rpc::WorkerType; // Return a s...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/context.cc
C++
#include "ray/core_worker/context.h" namespace ray { /// per-thread context for core worker. struct WorkerThreadContext { WorkerThreadContext() : current_task_id_(TaskID::ForFakeTask()), task_index_(0), put_index_(0) {} int GetNextTaskIndex() { return ++task_index_; } int GetNextPutIndex() { return ++p...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/context.h
C/C++ Header
#ifndef RAY_CORE_WORKER_CONTEXT_H #define RAY_CORE_WORKER_CONTEXT_H #include <boost/thread.hpp> #include "ray/common/task/task_spec.h" #include "ray/core_worker/common.h" namespace ray { struct WorkerThreadContext; class WorkerContext { public: WorkerContext(WorkerType worker_type, const JobID &job_id); cons...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/core_worker.cc
C++
#include "ray/core_worker/core_worker.h" #include <cstdlib> #include "boost/fiber/all.hpp" #include "ray/common/ray_config.h" #include "ray/common/task/task_util.h" #include "ray/core_worker/context.h" #include "ray/core_worker/transport/direct_actor_transport.h" #include "ray/core_worker/transport/raylet_transport.h...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/core_worker.h
C/C++ Header
#ifndef RAY_CORE_WORKER_CORE_WORKER_H #define RAY_CORE_WORKER_CORE_WORKER_H #include "absl/base/optimization.h" #include "absl/container/flat_hash_map.h" #include "ray/common/buffer.h" #include "ray/core_worker/actor_handle.h" #include "ray/core_worker/actor_manager.h" #include "ray/core_worker/common.h" #include "ray...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/future_resolver.cc
C++
#include "ray/core_worker/future_resolver.h" namespace ray { void FutureResolver::ResolveFutureAsync(const ObjectID &object_id, const TaskID &owner_id, const rpc::Address &owner_address) { RAY_CHECK(object_id.IsDirectCallType()); absl::MutexLock lock(&mu_); auto it = owne...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/future_resolver.h
C/C++ Header
#ifndef RAY_CORE_WORKER_FUTURE_RESOLVER_H #define RAY_CORE_WORKER_FUTURE_RESOLVER_H #include <memory> #include "ray/common/id.h" #include "ray/core_worker/store_provider/memory_store/memory_store.h" #include "ray/protobuf/core_worker.pb.h" #include "ray/rpc/worker/core_worker_client.h" namespace ray { // Resolve va...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/lib/java/jni_init.cc
C++
#include "ray/core_worker/lib/java/jni_utils.h" jclass java_boolean_class; jmethodID java_boolean_init; jclass java_double_class; jmethodID java_double_double_value; jclass java_list_class; jmethodID java_list_size; jmethodID java_list_get; jmethodID java_list_add; jclass java_array_list_class; jmethodID java_array...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/lib/java/jni_utils.h
C/C++ Header
#ifndef RAY_COMMON_JAVA_JNI_UTILS_H #define RAY_COMMON_JAVA_JNI_UTILS_H #include <jni.h> #include "ray/common/buffer.h" #include "ray/common/id.h" #include "ray/common/ray_object.h" #include "ray/common/status.h" /// Boolean class extern jclass java_boolean_class; /// Constructor of Boolean class extern jmethodID jav...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/lib/java/org_ray_runtime_RayNativeRuntime.cc
C++
#include "ray/core_worker/lib/java/org_ray_runtime_RayNativeRuntime.h" #include <jni.h> #include <sstream> #include "ray/common/id.h" #include "ray/core_worker/core_worker.h" #include "ray/core_worker/lib/java/jni_utils.h" thread_local JNIEnv *local_env = nullptr; thread_local jobject local_java_task_executor = nullpt...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/lib/java/org_ray_runtime_RayNativeRuntime.h
C/C++ Header
/* DO NOT EDIT THIS FILE - it is machine generated */ #include <jni.h> /* Header for class org_ray_runtime_RayNativeRuntime */ #ifndef _Included_org_ray_runtime_RayNativeRuntime #define _Included_org_ray_runtime_RayNativeRuntime #ifdef __cplusplus extern "C" { #endif /* * Class: org_ray_runtime_RayNativeRuntime ...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/lib/java/org_ray_runtime_actor_NativeRayActor.cc
C++
#include "ray/core_worker/lib/java/org_ray_runtime_actor_NativeRayActor.h" #include <jni.h> #include "ray/common/id.h" #include "ray/core_worker/common.h" #include "ray/core_worker/core_worker.h" #include "ray/core_worker/lib/java/jni_utils.h" inline ray::CoreWorker &GetCoreWorker(jlong nativeCoreWorkerPointer) { re...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/lib/java/org_ray_runtime_actor_NativeRayActor.h
C/C++ Header
/* DO NOT EDIT THIS FILE - it is machine generated */ #include <jni.h> /* Header for class org_ray_runtime_actor_NativeRayActor */ #ifndef _Included_org_ray_runtime_actor_NativeRayActor #define _Included_org_ray_runtime_actor_NativeRayActor #ifdef __cplusplus extern "C" { #endif /* * Class: org_ray_runtime_actor_...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/lib/java/org_ray_runtime_context_NativeWorkerContext.cc
C++
#include "ray/core_worker/lib/java/org_ray_runtime_context_NativeWorkerContext.h" #include <jni.h> #include "ray/common/id.h" #include "ray/core_worker/context.h" #include "ray/core_worker/core_worker.h" #include "ray/core_worker/lib/java/jni_utils.h" inline ray::WorkerContext &GetWorkerContextFromPointer(jlong native...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/lib/java/org_ray_runtime_context_NativeWorkerContext.h
C/C++ Header
/* DO NOT EDIT THIS FILE - it is machine generated */ #include <jni.h> /* Header for class org_ray_runtime_context_NativeWorkerContext */ #ifndef _Included_org_ray_runtime_context_NativeWorkerContext #define _Included_org_ray_runtime_context_NativeWorkerContext #ifdef __cplusplus extern "C" { #endif /* * Class: o...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/lib/java/org_ray_runtime_object_NativeObjectStore.cc
C++
#include "ray/core_worker/lib/java/org_ray_runtime_object_NativeObjectStore.h" #include <jni.h> #include "ray/common/id.h" #include "ray/core_worker/common.h" #include "ray/core_worker/core_worker.h" #include "ray/core_worker/lib/java/jni_utils.h" #ifdef __cplusplus extern "C" { #endif JNIEXPORT jbyteArray JNICALL Ja...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/lib/java/org_ray_runtime_object_NativeObjectStore.h
C/C++ Header
/* DO NOT EDIT THIS FILE - it is machine generated */ #include <jni.h> /* Header for class org_ray_runtime_object_NativeObjectStore */ #ifndef _Included_org_ray_runtime_object_NativeObjectStore #define _Included_org_ray_runtime_object_NativeObjectStore #ifdef __cplusplus extern "C" { #endif /* * Class: org_ray_ru...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/lib/java/org_ray_runtime_task_NativeTaskExecutor.cc
C++
#include "ray/core_worker/lib/java/org_ray_runtime_task_NativeTaskExecutor.h" #include <jni.h> #include "ray/common/id.h" #include "ray/core_worker/common.h" #include "ray/core_worker/core_worker.h" #include "ray/core_worker/lib/java/jni_utils.h" #include "ray/raylet/raylet_client.h" #ifdef __cplusplus extern "C" { #e...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/lib/java/org_ray_runtime_task_NativeTaskExecutor.h
C/C++ Header
/* DO NOT EDIT THIS FILE - it is machine generated */ #include <jni.h> /* Header for class org_ray_runtime_task_NativeTaskExecutor */ #ifndef _Included_org_ray_runtime_task_NativeTaskExecutor #define _Included_org_ray_runtime_task_NativeTaskExecutor #ifdef __cplusplus extern "C" { #endif #undef org_ray_runtime_task_Na...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/lib/java/org_ray_runtime_task_NativeTaskSubmitter.cc
C++
#include "ray/core_worker/lib/java/org_ray_runtime_task_NativeTaskSubmitter.h" #include <jni.h> #include "ray/common/id.h" #include "ray/core_worker/common.h" #include "ray/core_worker/core_worker.h" #include "ray/core_worker/lib/java/jni_utils.h" inline ray::CoreWorker &GetCoreWorker(jlong nativeCoreWorkerPointer) { ...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/lib/java/org_ray_runtime_task_NativeTaskSubmitter.h
C/C++ Header
/* DO NOT EDIT THIS FILE - it is machine generated */ #include <jni.h> /* Header for class org_ray_runtime_task_NativeTaskSubmitter */ #ifndef _Included_org_ray_runtime_task_NativeTaskSubmitter #define _Included_org_ray_runtime_task_NativeTaskSubmitter #ifdef __cplusplus extern "C" { #endif /* * Class: org_ray_ru...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/profiling.cc
C++
#include "ray/core_worker/profiling.h" #include <chrono> namespace ray { namespace worker { ProfileEvent::ProfileEvent(const std::shared_ptr<Profiler> &profiler, const std::string &event_type) : profiler_(profiler) { rpc_event_.set_event_type(event_type); rpc_event_.set_start_time...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/profiling.h
C/C++ Header
#ifndef RAY_CORE_WORKER_PROFILING_H #define RAY_CORE_WORKER_PROFILING_H #include "absl/base/thread_annotations.h" #include "absl/synchronization/mutex.h" #include "absl/time/clock.h" #include "ray/core_worker/context.h" #include "ray/gcs/redis_gcs_client.h" namespace ray { namespace worker { class Profiler { publi...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/reference_count.cc
C++
#include "ray/core_worker/reference_count.h" namespace ray { void ReferenceCounter::AddBorrowedObject(const ObjectID &object_id, const TaskID &owner_id, const rpc::Address &owner_address) { absl::MutexLock lock(&mutex_); auto it = o...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/reference_count.h
C/C++ Header
#ifndef RAY_CORE_WORKER_REF_COUNT_H #define RAY_CORE_WORKER_REF_COUNT_H #include "absl/base/thread_annotations.h" #include "absl/container/flat_hash_map.h" #include "absl/synchronization/mutex.h" #include "ray/common/id.h" #include "ray/protobuf/common.pb.h" #include "ray/util/logging.h" namespace ray { /// Class us...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/reference_count_test.cc
C++
#include "ray/core_worker/reference_count.h" #include <vector> #include "gtest/gtest.h" #include "ray/common/ray_object.h" #include "ray/core_worker/store_provider/memory_store/memory_store.h" namespace ray { class ReferenceCountTest : public ::testing::Test { protected: std::unique_ptr<ReferenceCounter> rc; v...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/store_provider/memory_store/memory_store.cc
C++
#include <condition_variable> #include "ray/common/ray_config.h" #include "ray/core_worker/context.h" #include "ray/core_worker/core_worker.h" namespace ray { /// A class that represents a `Get` request. class GetRequest { public: GetRequest(absl::flat_hash_set<ObjectID> object_ids, size_t num_objects, ...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/store_provider/memory_store/memory_store.h
C/C++ Header
#ifndef RAY_CORE_WORKER_MEMORY_STORE_H #define RAY_CORE_WORKER_MEMORY_STORE_H #include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_set.h" #include "absl/synchronization/mutex.h" #include "ray/common/id.h" #include "ray/common/status.h" #include "ray/core_worker/common.h" #include "ray/core_work...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/store_provider/plasma_store_provider.cc
C++
#include "ray/core_worker/store_provider/plasma_store_provider.h" #include "ray/common/ray_config.h" #include "ray/core_worker/context.h" #include "ray/core_worker/core_worker.h" #include "ray/protobuf/gcs.pb.h" namespace ray { CoreWorkerPlasmaStoreProvider::CoreWorkerPlasmaStoreProvider( const std::string &stor...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/store_provider/plasma_store_provider.h
C/C++ Header
#ifndef RAY_CORE_WORKER_PLASMA_STORE_PROVIDER_H #define RAY_CORE_WORKER_PLASMA_STORE_PROVIDER_H #include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_set.h" #include "plasma/client.h" #include "ray/common/buffer.h" #include "ray/common/id.h" #include "ray/common/status.h" #include "ray/core_work...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/task_manager.cc
C++
#include "ray/core_worker/task_manager.h" #include "ray/util/util.h" namespace ray { // Start throttling task failure logs once we hit this threshold. const int64_t kTaskFailureThrottlingThreshold = 50; // Throttle task failure logs to once this interval. const int64_t kTaskFailureLoggingFrequencyMillis = 5000; vo...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/task_manager.h
C/C++ Header
#ifndef RAY_CORE_WORKER_TASK_MANAGER_H #define RAY_CORE_WORKER_TASK_MANAGER_H #include "absl/base/thread_annotations.h" #include "absl/container/flat_hash_map.h" #include "absl/synchronization/mutex.h" #include "ray/common/id.h" #include "ray/common/task/task.h" #include "ray/core_worker/actor_manager.h" #include "ray...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/test/core_worker_test.cc
C++
#include "ray/core_worker/core_worker.h" #include <boost/asio.hpp> #include <boost/asio/error.hpp> #include <boost/bind.hpp> #include <thread> #include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_set.h" #include "gmock/gmock.h" #include "gtest/gtest.h" #include "hiredis/async.h" #include "hire...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/test/direct_actor_transport_test.cc
C++
#include "gmock/gmock.h" #include "gtest/gtest.h" #include "ray/common/task/task_spec.h" #include "ray/core_worker/store_provider/memory_store/memory_store.h" #include "ray/core_worker/transport/direct_task_transport.h" #include "ray/raylet/raylet_client.h" #include "ray/rpc/worker/core_worker_client.h" #include "src/r...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/test/direct_task_transport_test.cc
C++
#include "ray/core_worker/transport/direct_task_transport.h" #include "gtest/gtest.h" #include "ray/common/task/task_spec.h" #include "ray/common/task/task_util.h" #include "ray/core_worker/store_provider/memory_store/memory_store.h" #include "ray/raylet/raylet_client.h" #include "ray/rpc/worker/core_worker_client.h" ...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/test/mock_worker.cc
C++
#define BOOST_BIND_NO_PLACEHOLDERS #include "ray/core_worker/context.h" #include "ray/core_worker/core_worker.h" #include "src/ray/util/test_util.h" using namespace std::placeholders; namespace ray { /// A mock C++ worker used by core_worker_test.cc to verify the task submission/execution /// interfaces in both sing...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/test/scheduling_queue_test.cc
C++
#include <thread> #include "gtest/gtest.h" #include "ray/core_worker/transport/direct_actor_transport.h" namespace ray { class MockWaiter : public DependencyWaiter { public: MockWaiter() {} void Wait(const std::vector<ObjectID> &dependencies, std::function<void()> on_dependencies_available) overrid...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/test/task_manager_test.cc
C++
#include "ray/core_worker/task_manager.h" #include "gtest/gtest.h" #include "ray/common/task/task_spec.h" #include "ray/core_worker/actor_manager.h" #include "ray/core_worker/reference_count.h" #include "ray/core_worker/store_provider/memory_store/memory_store.h" #include "ray/util/test_util.h" namespace ray { TaskS...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/transport/dependency_resolver.cc
C++
#include "ray/core_worker/transport/dependency_resolver.h" namespace ray { struct TaskState { TaskState(TaskSpecification t, absl::flat_hash_map<ObjectID, std::shared_ptr<RayObject>> deps) : task(t), local_dependencies(deps), dependencies_remaining(deps.size()) {} /// The task to be run. TaskS...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/transport/dependency_resolver.h
C/C++ Header
#ifndef RAY_CORE_WORKER_DEPENDENCY_RESOLVER_H #define RAY_CORE_WORKER_DEPENDENCY_RESOLVER_H #include <memory> #include "ray/common/id.h" #include "ray/common/task/task_spec.h" #include "ray/core_worker/store_provider/memory_store/memory_store.h" #include "ray/core_worker/task_manager.h" namespace ray { // This clas...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/transport/direct_actor_transport.cc
C++
#include "ray/core_worker/transport/direct_actor_transport.h" #include <thread> #include "ray/common/task/task.h" using ray::rpc::ActorTableData; namespace ray { Status CoreWorkerDirectActorTaskSubmitter::KillActor(const ActorID &actor_id) { absl::MutexLock lock(&mu_); pending_force_kills_.insert(actor_id); ...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/transport/direct_actor_transport.h
C/C++ Header
#ifndef RAY_CORE_WORKER_DIRECT_ACTOR_TRANSPORT_H #define RAY_CORE_WORKER_DIRECT_ACTOR_TRANSPORT_H #include <boost/asio/thread_pool.hpp> #include <boost/fiber/all.hpp> #include <boost/thread.hpp> #include <list> #include <queue> #include <set> #include <utility> #include "absl/base/thread_annotations.h" #include "absl...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/transport/direct_task_transport.cc
C++
#include "ray/core_worker/transport/direct_task_transport.h" #include "ray/core_worker/transport/dependency_resolver.h" #include "ray/core_worker/transport/direct_actor_transport.h" namespace ray { Status CoreWorkerDirectTaskSubmitter::SubmitTask(TaskSpecification task_spec) { RAY_LOG(DEBUG) << "Submit task " << t...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/transport/direct_task_transport.h
C/C++ Header
#ifndef RAY_CORE_WORKER_DIRECT_TASK_H #define RAY_CORE_WORKER_DIRECT_TASK_H #include <google/protobuf/repeated_field.h> #include "absl/base/thread_annotations.h" #include "absl/synchronization/mutex.h" #include "ray/common/id.h" #include "ray/common/ray_object.h" #include "ray/core_worker/context.h" #include "ray/cor...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/transport/raylet_transport.cc
C++
#include "ray/core_worker/transport/raylet_transport.h" #include "ray/common/common_protocol.h" #include "ray/common/task/task.h" namespace ray { CoreWorkerRayletTaskReceiver::CoreWorkerRayletTaskReceiver( const WorkerID &worker_id, std::shared_ptr<raylet::RayletClient> &raylet_client, const TaskHandler &tas...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/core_worker/transport/raylet_transport.h
C/C++ Header
#ifndef RAY_CORE_WORKER_RAYLET_TRANSPORT_H #define RAY_CORE_WORKER_RAYLET_TRANSPORT_H #include <list> #include "ray/common/ray_object.h" #include "ray/raylet/raylet_client.h" #include "ray/rpc/worker/core_worker_server.h" namespace ray { class CoreWorkerRayletTaskReceiver { public: using TaskHandler = std:...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/accessor.h
C/C++ Header
#ifndef RAY_GCS_ACCESSOR_H #define RAY_GCS_ACCESSOR_H #include "ray/common/id.h" #include "ray/gcs/callback.h" #include "ray/gcs/entry_change_notification.h" #include "ray/protobuf/gcs.pb.h" namespace ray { namespace gcs { /// \class ActorInfoAccessor /// `ActorInfoAccessor` is a sub-interface of `GcsClient`. /// T...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/asio.cc
C++
#include "asio.h" #include "ray/util/logging.h" RedisAsioClient::RedisAsioClient(boost::asio::io_service &io_service, ray::gcs::RedisAsyncContext &redis_async_context) : redis_async_context_(redis_async_context), io_service_(io_service), socket_(io_service), read...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/asio.h
C/C++ Header
// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/callback.h
C/C++ Header
#ifndef RAY_GCS_CALLBACK_H #define RAY_GCS_CALLBACK_H #if defined(__clang__) && defined(_MSC_VER) // TODO(mehrdadn): Remove this Windows (clang-cl) workaround once we upgrade to // Boost > 1.68: https://lists.boost.org/Archives/boost/2018/09/243420.php #include <boost/type_traits.hpp> #endif #include <boost/optional/o...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/entry_change_notification.h
C/C++ Header
#ifndef RAY_GCS_ENTRY_CHANGE_NOTIFICATION_H #define RAY_GCS_ENTRY_CHANGE_NOTIFICATION_H #include <ray/protobuf/gcs.pb.h> #include <vector> namespace ray { namespace gcs { /// \class EntryChangeNotification /// EntryChangeNotification class is a template class which represent /// notification of entry change from GC...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_client.h
C/C++ Header
#ifndef RAY_GCS_GCS_CLIENT_H #define RAY_GCS_GCS_CLIENT_H #include <boost/asio.hpp> #include <memory> #include <string> #include <vector> #include "ray/common/status.h" #include "ray/gcs/accessor.h" #include "ray/util/logging.h" namespace ray { namespace gcs { /// \class GcsClientOptions /// GCS client's options (c...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/actor_info_handler_impl.cc
C++
#include "actor_info_handler_impl.h" #include "ray/util/logging.h" namespace ray { namespace rpc { void DefaultActorInfoHandler::HandleGetActorInfo( const rpc::GetActorInfoRequest &request, rpc::GetActorInfoReply *reply, rpc::SendReplyCallback send_reply_callback) { ActorID actor_id = ActorID::FromBinary(re...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/actor_info_handler_impl.h
C/C++ Header
#ifndef RAY_GCS_ACTOR_INFO_HANDLER_IMPL_H #define RAY_GCS_ACTOR_INFO_HANDLER_IMPL_H #include "ray/gcs/redis_gcs_client.h" #include "ray/rpc/gcs_server/gcs_rpc_server.h" namespace ray { namespace rpc { /// This implementation class of `ActorInfoHandler`. class DefaultActorInfoHandler : public rpc::ActorInfoHandler { ...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/error_info_handler_impl.cc
C++
#include "error_info_handler_impl.h" namespace ray { namespace rpc { void DefaultErrorInfoHandler::HandleReportJobError( const ReportJobErrorRequest &request, ReportJobErrorReply *reply, SendReplyCallback send_reply_callback) { JobID job_id = JobID::FromBinary(request.error_data().job_id()); std::string t...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/error_info_handler_impl.h
C/C++ Header
#ifndef RAY_GCS_ERROR_INFO_HANDLER_IMPL_H #define RAY_GCS_ERROR_INFO_HANDLER_IMPL_H #include "ray/gcs/redis_gcs_client.h" #include "ray/rpc/gcs_server/gcs_rpc_server.h" namespace ray { namespace rpc { /// This implementation class of `ErrorInfoHandler`. class DefaultErrorInfoHandler : public rpc::ErrorInfoHandler { ...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/gcs_server.cc
C++
#include "gcs_server.h" #include "actor_info_handler_impl.h" #include "error_info_handler_impl.h" #include "job_info_handler_impl.h" #include "node_info_handler_impl.h" #include "object_info_handler_impl.h" #include "stats_handler_impl.h" #include "task_info_handler_impl.h" #include "worker_info_handler_impl.h" namesp...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/gcs_server.h
C/C++ Header
#ifndef RAY_GCS_GCS_SERVER_H #define RAY_GCS_GCS_SERVER_H #include <ray/gcs/redis_gcs_client.h> #include <ray/rpc/gcs_server/gcs_rpc_server.h> namespace ray { namespace gcs { struct GcsServerConfig { std::string grpc_server_name = "GcsServer"; uint16_t grpc_server_port = 0; uint16_t grpc_server_thread_num = 1;...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/gcs_server_main.cc
C++
#include <iostream> #include "ray/common/ray_config.h" #include "ray/gcs/gcs_server/gcs_server.h" #include "ray/util/util.h" #include "gflags/gflags.h" DEFINE_string(redis_address, "", "The ip address of redis."); DEFINE_int32(redis_port, -1, "The port of redis."); DEFINE_string(config_list, "", "The config list of ...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/job_info_handler_impl.cc
C++
#include "job_info_handler_impl.h" namespace ray { namespace rpc { void DefaultJobInfoHandler::HandleAddJob(const rpc::AddJobRequest &request, rpc::AddJobReply *reply, rpc::SendReplyCallback send_reply_callback) { JobID job_id = JobID:...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/job_info_handler_impl.h
C/C++ Header
#ifndef RAY_GCS_JOB_INFO_HANDLER_IMPL_H #define RAY_GCS_JOB_INFO_HANDLER_IMPL_H #include "ray/gcs/redis_gcs_client.h" #include "ray/rpc/gcs_server/gcs_rpc_server.h" namespace ray { namespace rpc { /// This implementation class of `JobInfoHandler`. class DefaultJobInfoHandler : public rpc::JobInfoHandler { public: ...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/node_info_handler_impl.cc
C++
#include "node_info_handler_impl.h" #include "ray/util/logging.h" namespace ray { namespace rpc { void DefaultNodeInfoHandler::HandleRegisterNode( const rpc::RegisterNodeRequest &request, rpc::RegisterNodeReply *reply, rpc::SendReplyCallback send_reply_callback) { ClientID node_id = ClientID::FromBinary(req...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/node_info_handler_impl.h
C/C++ Header
#ifndef RAY_GCS_NODE_INFO_HANDLER_IMPL_H #define RAY_GCS_NODE_INFO_HANDLER_IMPL_H #include "ray/gcs/redis_gcs_client.h" #include "ray/rpc/gcs_server/gcs_rpc_server.h" namespace ray { namespace rpc { /// This implementation class of `NodeInfoHandler`. class DefaultNodeInfoHandler : public rpc::NodeInfoHandler { publ...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/object_info_handler_impl.cc
C++
#include "object_info_handler_impl.h" #include "ray/util/logging.h" namespace ray { namespace rpc { void DefaultObjectInfoHandler::HandleGetObjectLocations( const GetObjectLocationsRequest &request, GetObjectLocationsReply *reply, SendReplyCallback send_reply_callback) { ObjectID object_id = ObjectID::FromB...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/object_info_handler_impl.h
C/C++ Header
#ifndef RAY_GCS_OBJECT_INFO_HANDLER_IMPL_H #define RAY_GCS_OBJECT_INFO_HANDLER_IMPL_H #include "ray/gcs/redis_gcs_client.h" #include "ray/rpc/gcs_server/gcs_rpc_server.h" namespace ray { namespace rpc { /// This implementation class of `ObjectInfoHandler`. class DefaultObjectInfoHandler : public rpc::ObjectInfoHandl...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/stats_handler_impl.cc
C++
#include "stats_handler_impl.h" namespace ray { namespace rpc { void DefaultStatsHandler::HandleAddProfileData(const AddProfileDataRequest &request, AddProfileDataReply *reply, SendReplyCallback send_reply_callback) { Clie...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/stats_handler_impl.h
C/C++ Header
#ifndef RAY_GCS_STATS_HANDLER_IMPL_H #define RAY_GCS_STATS_HANDLER_IMPL_H #include "ray/gcs/redis_gcs_client.h" #include "ray/rpc/gcs_server/gcs_rpc_server.h" namespace ray { namespace rpc { /// This implementation class of `StatsHandler`. class DefaultStatsHandler : public rpc::StatsHandler { public: explicit De...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/task_info_handler_impl.cc
C++
#include "task_info_handler_impl.h" namespace ray { namespace rpc { void DefaultTaskInfoHandler::HandleAddTask(const AddTaskRequest &request, AddTaskReply *reply, SendReplyCallback send_reply_callback) { JobID job_id = JobID::From...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/task_info_handler_impl.h
C/C++ Header
#ifndef RAY_GCS_TASK_INFO_HANDLER_IMPL_H #define RAY_GCS_TASK_INFO_HANDLER_IMPL_H #include "ray/gcs/redis_gcs_client.h" #include "ray/rpc/gcs_server/gcs_rpc_server.h" namespace ray { namespace rpc { /// This implementation class of `TaskInfoHandler`. class DefaultTaskInfoHandler : public rpc::TaskInfoHandler { publ...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/test/gcs_server_rpc_test.cc
C++
#include "gtest/gtest.h" #include "ray/gcs/gcs_server/gcs_server.h" #include "ray/rpc/gcs_server/gcs_rpc_client.h" #include "ray/util/test_util.h" namespace ray { static std::string redis_server_executable; static std::string redis_client_executable; static std::string libray_redis_module_path; class GcsServerTest :...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/worker_info_handler_impl.cc
C++
#include "worker_info_handler_impl.h" namespace ray { namespace rpc { void DefaultWorkerInfoHandler::HandleReportWorkerFailure( const ReportWorkerFailureRequest &request, ReportWorkerFailureReply *reply, SendReplyCallback send_reply_callback) { Address worker_address = request.worker_failure().worker_addres...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta
src/ray/gcs/gcs_server/worker_info_handler_impl.h
C/C++ Header
#ifndef RAY_GCS_WORKER_INFO_HANDLER_IMPL_H #define RAY_GCS_WORKER_INFO_HANDLER_IMPL_H #include "ray/gcs/redis_gcs_client.h" #include "ray/rpc/gcs_server/gcs_rpc_server.h" namespace ray { namespace rpc { /// This implementation class of `WorkerInfoHandler`. class DefaultWorkerInfoHandler : public rpc::WorkerInfoHandl...
zhuohan123/hoplite-rllib
3
Python
zhuohan123
Zhuohan Li
vLLM / Meta