Lines Matching full:mt
255 for mt in self.req_mt:
256 name = f'{self._binary}\n{mt.name}'
261 column.append(mt.compat_props[driver][prop])
275 * compare machines: ./scripts/compare-machine-types.py --mt pc-q35-2.12 \
278 --mt pc-q35-6.2 pc-q35-7.0 --qemu-binary build/qemu-system-x86_64 \
335 mt_args_group.add_argument('--mt', nargs="*", type=str,
342 def mt_comp(mt: Machine) -> Tuple[str, int, int, int]:
346 if '-' not in mt.name or '.' not in mt.name:
347 return mt.name, 0, 0, 0
349 socket, ver = mt.name.rsplit('-', 1)
380 for mt in mt_defs:
381 if mt.name in req_mt:
382 matched_mt.append(mt)
394 for mt in config.req_mt:
395 compat_props = mt.compat_props
482 configurations.append(Configuration(vm, args.mt, args.all))