Sha256: f7678567339bc800e71bd46ef878028213117c478ebafc956898dd10a340c42a

Contents?: true

Size: 1.38 KB

Versions: 5

Compression:

Stored size: 1.38 KB

Contents

// Copyright 2023 The gRPC Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include <grpc/support/port_platform.h>

#include <stddef.h>

#include <memory>

#include <grpc/support/cpu.h>

#include "src/core/lib/event_engine/thread_pool/original_thread_pool.h"
#include "src/core/lib/event_engine/thread_pool/thread_pool.h"
#include "src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h"
#include "src/core/lib/experiments/experiments.h"
#include "src/core/lib/gpr/useful.h"

namespace grpc_event_engine {
namespace experimental {

std::shared_ptr<ThreadPool> MakeThreadPool(size_t reserve_threads) {
  if (grpc_core::IsWorkStealingEnabled()) {
    return std::make_shared<WorkStealingThreadPool>(
        grpc_core::Clamp(gpr_cpu_num_cores(), 2u, 16u));
  }
  return std::make_shared<OriginalThreadPool>(reserve_threads);
}

}  // namespace experimental
}  // namespace grpc_event_engine

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
grpc-1.57.0 src/core/lib/event_engine/thread_pool/thread_pool_factory.cc
grpc-1.57.0.pre1 src/core/lib/event_engine/thread_pool/thread_pool_factory.cc
grpc-1.56.2 src/core/lib/event_engine/thread_pool/thread_pool_factory.cc
grpc-1.56.0 src/core/lib/event_engine/thread_pool/thread_pool_factory.cc
grpc-1.56.0.pre3 src/core/lib/event_engine/thread_pool/thread_pool_factory.cc