workqueue.h 2.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
//
// 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.

#pragma once

#include <functional>
#include <memory>
L
liutiexing 已提交
19
#include <vector>
20 21 22 23

namespace paddle {
namespace framework {

L
liutiexing 已提交
24 25 26 27 28 29
struct WorkQueueOptions {
  size_t num_threads{0};
  bool allow_spinning{true};
  bool track_task{false};
};

30 31
class WorkQueue {
 public:
L
liutiexing 已提交
32
  explicit WorkQueue(const WorkQueueOptions& options) : options_(options) {}
33 34 35 36 37 38 39 40 41

  WorkQueue(const WorkQueue&) = delete;

  WorkQueue& operator=(const WorkQueue&) = delete;

  virtual ~WorkQueue() = default;

  virtual void AddTask(std::function<void()> fn) = 0;

L
liutiexing 已提交
42 43
  // set WorkQueueOptions.track_task = true before call this
  // interface, otherwise will abort()
44 45
  virtual void WaitQueueEmpty() = 0;

L
liutiexing 已提交
46 47 48 49
  virtual size_t NumThreads() const = 0;

 protected:
  WorkQueueOptions options_;
50 51
};

L
liutiexing 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
class WorkQueueGroup {
 public:
  explicit WorkQueueGroup(const std::vector<WorkQueueOptions>& queues_options)
      : queues_options_(queues_options) {}

  WorkQueueGroup(const WorkQueueGroup&) = delete;

  WorkQueueGroup& operator=(const WorkQueueGroup&) = delete;

  virtual ~WorkQueueGroup() = default;

  virtual void AddTask(size_t queue_idx, std::function<void()> fn) = 0;

  // set WorkQueueOptions.track_task = true for at least one of queues
  // before call this interface, otherwise will abort()
  virtual void WaitQueueGroupEmpty() = 0;

  virtual size_t QueueNumThreads(size_t queue_idx) const = 0;

  virtual size_t QueueGroupNumThreads() const = 0;

 protected:
  std::vector<WorkQueueOptions> queues_options_;
};

std::unique_ptr<WorkQueue> CreateSingleThreadedWorkQueue(
    const WorkQueueOptions& options);

std::unique_ptr<WorkQueue> CreateMultiThreadedWorkQueue(
    const WorkQueueOptions& options);
82

L
liutiexing 已提交
83 84
std::unique_ptr<WorkQueueGroup> CreateWorkQueueGroup(
    const std::vector<WorkQueueOptions>& queues_options);
85 86 87

}  // namespace framework
}  // namespace paddle