2019-01-25 17:20:32 +08:00
|
|
|
/*
|
2020-01-22 23:22:30 +08:00
|
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
2019-01-25 17:20:32 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/command_stream/csr_deps.h"
|
2019-02-27 18:39:32 +08:00
|
|
|
|
2020-02-23 05:50:57 +08:00
|
|
|
#include "opencl/source/helpers/timestamp_packet.h"
|
2019-01-25 17:20:32 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2019-09-04 17:34:23 +08:00
|
|
|
|
|
|
|
void CsrDependencies::makeResident(CommandStreamReceiver &commandStreamReceiver) const {
|
|
|
|
for (auto ×tampPacketContainer : *this) {
|
|
|
|
timestampPacketContainer->makeResident(commandStreamReceiver);
|
|
|
|
}
|
|
|
|
}
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|