mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Change-Id: Iaec903af420f0a92f7d86e484c83300fb9c531ad Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
27 lines
484 B
C++
27 lines
484 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "utilities/stackvec.h"
|
|
|
|
namespace NEO {
|
|
|
|
class TimestampPacketContainer;
|
|
class CommandStreamReceiver;
|
|
|
|
class CsrDependencies : public StackVec<TimestampPacketContainer *, 32> {
|
|
public:
|
|
enum class DependenciesType {
|
|
OnCsr,
|
|
OutOfCsr,
|
|
All
|
|
};
|
|
|
|
void makeResident(CommandStreamReceiver &commandStreamReceiver) const;
|
|
};
|
|
} // namespace NEO
|