events_waiter.h 1.24 KB
Newer Older
openvino-pushbot's avatar
openvino-pushbot committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
// Copyright (c) 2016 Intel Corporation
//
// 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 "ocl_toolkit.h"
20
#include "event_impl.h"
21 22
#include <vector>
#include <memory>
openvino-pushbot's avatar
openvino-pushbot committed
23

24 25 26
namespace cldnn {
namespace gpu {
class events_waiter : public context_holder {
openvino-pushbot's avatar
openvino-pushbot committed
27
public:
28
    explicit events_waiter(std::shared_ptr<gpu_toolkit> context) : context_holder(context) {}
openvino-pushbot's avatar
openvino-pushbot committed
29

30
    event_impl::ptr run(int queue_id, const std::vector<event_impl::ptr>& dependencies) {
openvino-pushbot's avatar
openvino-pushbot committed
31 32 33
        if (dependencies.size() == 1)
            return dependencies[0];

34
        return context()->enqueue_marker(queue_id, dependencies);
openvino-pushbot's avatar
openvino-pushbot committed
35 36
    }
};
37 38
}  // namespace gpu
}  // namespace cldnn