compute-runtime/shared/source/command_stream/csr_deps.h

27 lines
498 B
C++

/*
* Copyright (C) 2019-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/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