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