-
Notifications
You must be signed in to change notification settings - Fork 416
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] trailing newline on gpu name #1303
Comments
Please test |
Works, thanks :)
|
@CarterLi do you plan to cut a new patch release with this fix? |
Just made some changes to |
This is the new output on my pi3b (aarch64) on d77f0fe:
[
{
"type": "CPU",
"result": {
"cpu": "BCM2837",
"vendor": "Broadcom",
"cores": {
"physical": 4,
"logical": 4,
"online": 4
},
"frequency": {
"base": 0,
"max": 1200
},
"coreTypes": [],
"temperature": null
}
},
{
"type": "GPU",
"result": [
{
"index": null,
"coreCount": null,
"coreUsage": null,
"memory": {
"dedicated": {
"total": null,
"used": null
},
"shared": {
"total": null,
"used": null
}
},
"driver": "vc4-drm",
"name": "bcm2835-vc4",
"temperature": null,
"type": "Integrated",
"vendor": "Broadcom",
"platformApi": "DRM (card0)",
"frequency": 0,
"deviceId": 0
}
]
},
{
"type": "Board",
"result": {
"name": "3-model-b",
"vendor": "raspberrypi",
"version": "",
"serial": ""
}
}
]
Output on: d97999d: [
{
"type": "CPU",
"result": {
"cpu": "Cortex-A53*4",
"vendor": "ARM",
"cores": {
"physical": 4,
"logical": 4,
"online": 4
},
"frequency": {
"base": 0,
"max": 1200
},
"coreTypes": [],
"temperature": null
}
},
{
"type": "GPU",
"result": [
{
"index": null,
"coreCount": null,
"coreUsage": null,
"memory": {
"dedicated": {
"total": null,
"used": null
},
"shared": {
"total": null,
"used": null
}
},
"driver": "vc4-drm",
"name": "bcm2835-vc4",
"temperature": null,
"type": "Integrated",
"vendor": "Brcm",
"platformApi": "DRM (card0)",
"frequency": 0,
"deviceId": 0
}
]
},
{
"type": "Board",
"result": {
"name": "3-model-b",
"vendor": "raspberrypi",
"version": "",
"serial": ""
}
}
] Difference is in the CPU which now gets identifies as GPU vendor is now Broadcom rather than Brcm |
General description of bug:
Often helpful information:
Output on
2.26.1
The output on
2.25.0
The text was updated successfully, but these errors were encountered: