🚀 The feature, motivation and pitch
When deploying and verifying Qwen-Image-2512, I found that the quality of the raw images on the NPU(910B)was lower than that on the NVIDIA(A800)under the same request.
The request information is as follows:
response = requests.post(
"http://localhost:8080/v1/images/generations",
json={
"prompt": "a black and white cat wearing a princess tiara",
"size": "512x512",
"num_inference_steps": 50,
"seed": 42,
"n": 1
}
)
The image generated by A800 is as follows:
The image generated by 910B is as follows:
Is there a slight difference in the accuracy of the generated data?
Alternatives
No response
Additional context
No response
Before submitting a new issue...