mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-25 21:42:53 +08:00
15 lines
234 B
C++
15 lines
234 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/memory_manager/memory_manager.h"
|
|
|
|
namespace NEO {
|
|
uint32_t MemoryManager::getBanksCount() {
|
|
return 1u;
|
|
}
|
|
} // namespace NEO
|