baselines/GeM_baseline.py [136:143]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if 'Linux' in platform.platform():
            os.system(
                'echo hardware_image_description: '
                '$( cat /proc/cpuinfo | grep ^"model name" | tail -1 ), '
                '$( cat /proc/cpuinfo | grep ^processor | wc -l ) cores'
            )
        else:
            print("hardware_image_description:", platform.machine(), "nb of threads:", args.nproc)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



baselines/gist_baseline.py [127:134]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if 'Linux' in platform.platform():
        os.system(
            'echo hardware_image_description: '
            '$( cat /proc/cpuinfo | grep ^"model name" | tail -1 ), '
            '$( cat /proc/cpuinfo | grep ^processor | wc -l ) cores'
        )
    else:
        print("hardware_image_description:", platform.machine(), "nb of threads:", args.nproc)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



