mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-01 04:23:00 +08:00
15 lines
232 B
C++
15 lines
232 B
C++
|
|
/*
|
||
|
|
* Copyright (C) 2019 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "runtime/memory_manager/memory_manager.h"
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
uint32_t MemoryManager::getBanksCount() {
|
||
|
|
return 1u;
|
||
|
|
}
|
||
|
|
} // namespace NEO
|