mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-25 13:33:02 +08:00
Enable hw path in the memory manager multi device test
Resolves: NEO-4136 Change-Id: I95b1de2804b61516bda9d6eb76d30ea9752d0771 Signed-off-by: Jobczyk, Lukasz <lukasz.jobczyk@intel.com> Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
This commit is contained in:
committed by
sys_ocldev
parent
c959f00212
commit
1d44699adb
@@ -57,6 +57,8 @@ Gmm::Gmm(GmmClientContext *clientContext, GMM_RESOURCE_INFO *inputGmm) : clientC
|
||||
gmmResourceInfo.reset(GmmResourceInfo::create(clientContext, inputGmm));
|
||||
}
|
||||
|
||||
Gmm::~Gmm() = default;
|
||||
|
||||
Gmm::Gmm(GmmClientContext *clientContext, ImageInfo &inputOutputImgInfo, StorageInfo storageInfo) : clientContext(clientContext) {
|
||||
this->resourceParams = {};
|
||||
setupImageResourceParams(inputOutputImgInfo);
|
||||
|
||||
@@ -23,7 +23,7 @@ class GmmClientContext;
|
||||
|
||||
class Gmm {
|
||||
public:
|
||||
virtual ~Gmm() = default;
|
||||
virtual ~Gmm();
|
||||
Gmm() = delete;
|
||||
Gmm(GmmClientContext *clientContext, ImageInfo &inputOutputImgInfo, StorageInfo storageInfo);
|
||||
Gmm(GmmClientContext *clientContext, const void *alignedPtr, size_t alignedSize, bool uncacheable);
|
||||
|
||||
Reference in New Issue
Block a user