@@ -574,17 +574,22 @@ Expected<InfoTreeNode> L0DeviceTy::obtainInfoImpl() {
574574 Info.add (" Driver Version" , " Unknown" , " " , DeviceInfo::DRIVER_VERSION);
575575 Info.add (" Device PCI ID" , getPCIId ());
576576 Info.add (" Device UUID" , getUuid ().data ());
577- Info.add (" Number of total EUs" , getNumEUs ());
577+ Info.add (" Number of total EUs" , getNumEUs (), " " , DeviceInfo::MAX_COMPUTE_UNITS );
578578 Info.add (" Number of threads per EU" , getNumThreadsPerEU ());
579579 Info.add (" EU SIMD width" , getSIMDWidth ());
580580 Info.add (" Number of EUs per subslice" , getNumEUsPerSubslice ());
581581 Info.add (" Number of subslices per slice" , getNumSubslicesPerSlice ());
582582 Info.add (" Number of slices" , getNumSlices ());
583+ Info.add (" Max Group size" , getMaxGroupSize (), " " ,
584+ DeviceInfo::MAX_GROUP_WORK_SIZE);
583585 Info.add (" Local memory size (bytes)" , getMaxSharedLocalMemory ());
584- Info.add (" Global memory size (bytes)" , getGlobalMemorySize (), " " , DeviceInfo::GLOBAL_MEM_SIZE);
586+ Info.add (" Global memory size (bytes)" , getGlobalMemorySize (), " " ,
587+ DeviceInfo::GLOBAL_MEM_SIZE);
585588 Info.add (" Cache size (bytes)" , getCacheSize ());
586- Info.add (" Max Memory Allocation Size (bytes)" , getMaxMemAllocSize (), " " , DeviceInfo::MAX_MEM_ALLOC_SIZE);
587- Info.add (" Max clock frequency (MHz)" , getClockRate (), " " , DeviceInfo::MAX_CLOCK_FREQUENCY);
589+ Info.add (" Max Memory Allocation Size (bytes)" , getMaxMemAllocSize (), " " ,
590+ DeviceInfo::MAX_MEM_ALLOC_SIZE);
591+ Info.add (" Max clock frequency (MHz)" , getClockRate (), " " ,
592+ DeviceInfo::MAX_CLOCK_FREQUENCY);
588593 return Info;
589594}
590595
0 commit comments