Files
compute-runtime/core/command_stream/csr_deps.h
Mateusz Jablonski 370424a1e0 Change core inlcudes
Change-Id: Iaec903af420f0a92f7d86e484c83300fb9c531ad
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2020-02-23 18:46:50 +01:00

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