File: host_function_interface.h

package info (click to toggle)
intel-compute-runtime 26.05.37020.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 83,596 kB
  • sloc: cpp: 976,037; lisp: 2,096; sh: 704; makefile: 162
file content (43 lines) | stat: -rw-r--r-- 976 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
 * Copyright (C) 2025 Intel Corporation
 *
 * SPDX-License-Identifier: MIT
 *
 */

#pragma once

#include "shared/source/helpers/non_copyable_or_moveable.h"

#include <functional>
#include <memory>
#include <mutex>
#include <stop_token>
#include <thread>

namespace NEO {

class GraphicsAllocation;
class HostFunctionStreamer;
struct HostFunction;

class HostFunctionWorker : public NonCopyableAndNonMovableClass {
  public:
    explicit HostFunctionWorker(bool skipHostFunctionExecution)
        : skipHostFunctionExecution(skipHostFunctionExecution) {
    }

    virtual ~HostFunctionWorker() = default;
    virtual void start(HostFunctionStreamer *streamer) = 0;
    virtual void finish() = 0;
    virtual void submit(uint32_t nHostFunctions) noexcept = 0;

  protected:
    std::unique_ptr<std::jthread> worker;
    std::mutex workerMutex;
    bool skipHostFunctionExecution = false;
};

static_assert(NonCopyableAndNonMovable<HostFunctionWorker>);

} // namespace NEO