Lines Matching defs:limits
228 tcu::PlatformMemoryLimits limits;
230 context.getTestContext().getPlatform().getMemoryLimits(limits);
232 log << TestLog::Message << "totalSystemMemory = " << prettySize(limits.totalSystemMemory) << " (" << limits.totalSystemMemory << ")\n"
233 << "totalDeviceLocalMemory = " << prettySize(limits.totalDeviceLocalMemory) << " (" << limits.totalDeviceLocalMemory << ")\n"
234 << "deviceMemoryAllocationGranularity = " << limits.deviceMemoryAllocationGranularity << "\n"
235 << "devicePageSize = " << limits.devicePageSize << "\n"
236 << "devicePageTableEntrySize = " << limits.devicePageTableEntrySize << "\n"
237 << "devicePageTableHierarchyLevels = " << limits.devicePageTableHierarchyLevels << "\n"
240 TCU_CHECK(limits.totalSystemMemory > 0);
241 TCU_CHECK(limits.deviceMemoryAllocationGranularity > 0);
242 TCU_CHECK(deIsPowerOfTwo64(limits.devicePageSize));