workqueue.h 2.6 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
struct WorkQueueOptions {
25 26 27 28 29 30 31 32
  WorkQueueOptions(size_t num_threads, bool allow_spinning, bool track_task)
      : num_threads(num_threads),
        allow_spinning(allow_spinning),
        track_task(track_task) {}

  size_t num_threads;
  bool allow_spinning;
  bool track_task;
L
liutiexing 已提交
33 34
};

35 36
class WorkQueue {
 public:
L
liutiexing 已提交
37
  explicit WorkQueue(const WorkQueueOptions& options) : options_(options) {}
38 39 40 41 42 43 44 45 46

  WorkQueue(const WorkQueue&) = delete;

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

  virtual ~WorkQueue() = default;

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

L
liutiexing 已提交
47 48
  // set WorkQueueOptions.track_task = true before call this
  // interface, otherwise will abort()
49 50
  virtual void WaitQueueEmpty() = 0;

L
liutiexing 已提交
51 52 53 54
  virtual size_t NumThreads() const = 0;

 protected:
  WorkQueueOptions options_;
55 56
};

L
liutiexing 已提交
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 82 83 84 85 86
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);
87

L
liutiexing 已提交
88 89
std::unique_ptr<WorkQueueGroup> CreateWorkQueueGroup(
    const std::vector<WorkQueueOptions>& queues_options);
90 91 92

}  // namespace framework
}  // namespace paddle