mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 18:37:46 +08:00
fix: add missing member initializations
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
b4733dedb7
commit
1963ea69e5
@@ -154,16 +154,16 @@ class CompilerInterface {
|
||||
using fclDevCtxUptr = CIF::RAII::UPtr_t<IGC::FclOclDeviceCtxTagOCL>;
|
||||
|
||||
std::unique_ptr<OsLibrary> igcLib;
|
||||
CIF::RAII::UPtr_t<CIF::CIFMain> igcMain = nullptr;
|
||||
CIF::RAII::UPtr_t<CIF::CIFMain> igcMain;
|
||||
std::map<const Device *, igcDevCtxUptr> igcDeviceContexts;
|
||||
std::string igcRevision;
|
||||
size_t igcLibSize;
|
||||
time_t igcLibMTime;
|
||||
size_t igcLibSize{};
|
||||
time_t igcLibMTime{};
|
||||
|
||||
std::unique_ptr<OsLibrary> fclLib;
|
||||
CIF::RAII::UPtr_t<CIF::CIFMain> fclMain = nullptr;
|
||||
CIF::RAII::UPtr_t<CIF::CIFMain> fclMain;
|
||||
std::map<const Device *, fclDevCtxUptr> fclDeviceContexts;
|
||||
CIF::RAII::UPtr_t<IGC::FclOclTranslationCtxTagOCL> fclBaseTranslationCtx = nullptr;
|
||||
CIF::RAII::UPtr_t<IGC::FclOclTranslationCtxTagOCL> fclBaseTranslationCtx;
|
||||
|
||||
MOCKABLE_VIRTUAL IGC::FclOclDeviceCtxTagOCL *getFclDeviceCtx(const Device &device);
|
||||
MOCKABLE_VIRTUAL IGC::IgcOclDeviceCtxTagOCL *getIgcDeviceCtx(const Device &device);
|
||||
|
||||
@@ -213,7 +213,7 @@ class Device : public ReferenceTrackedObject<Device> {
|
||||
EngineGroupsT regularEngineGroups;
|
||||
std::vector<SubDevice *> subdevices;
|
||||
|
||||
PreemptionMode preemptionMode;
|
||||
PreemptionMode preemptionMode = PreemptionMode::Disabled;
|
||||
ExecutionEnvironment *executionEnvironment = nullptr;
|
||||
aub_stream::EngineType engineInstancedType = aub_stream::EngineType::NUM_ENGINES;
|
||||
uint32_t defaultEngineIndex = 0;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2021-2022 Intel Corporation
|
||||
* Copyright (C) 2021-2023 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -48,7 +48,7 @@ class SWTagsManager {
|
||||
void allocateBXMLHeap(Device &device);
|
||||
void allocateSWTagHeap(Device &device);
|
||||
|
||||
MemoryManager *memoryManager;
|
||||
MemoryManager *memoryManager{};
|
||||
GraphicsAllocation *tagHeap = nullptr;
|
||||
GraphicsAllocation *bxmlHeap = nullptr;
|
||||
unsigned int currentHeapOffset = 0;
|
||||
|
||||
Reference in New Issue
Block a user