compute-runtime/shared/test/unit_test/direct_submission/dispatchers/dispatcher_fixture.h

23 lines
404 B
C
Raw Normal View History

/*
* Copyright (C) 2020-2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/command_stream/linear_stream.h"
#include "shared/test/common/fixtures/device_fixture.h"
namespace NEO {
class DispatcherFixture : public DeviceFixture {
public:
void SetUp();
void TearDown();
NEO::LinearStream cmdBuffer;
void *bufferAllocation;
};
} // namespace NEO