We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Flux.1 image generation has a relatively unfinished image output that inferenced on iGPU than CPU.
Config for iGPU inference and the output:
from optimum.intel.openvino import OVDiffusionPipeline model_dir = model_base_dir / "INT4" if use_quantized_models.value else model_base_dir / "FP16" ov_config = {"INFERENCE_PRECISION_HINT" : "f16", "ACTIVATIONS_SCALE_FACTOR": "8.0", "CACHE_DIR" : ""} ov_pipe = OVDiffusionPipeline.from_pretrained(model_dir, device=device.value, ov_config=ov_config)
Config for CPU inference and the output:
from optimum.intel.openvino import OVDiffusionPipeline model_dir = model_base_dir / "INT4" if use_quantized_models.value else model_base_dir / "FP16" ov_pipe = OVDiffusionPipeline.from_pretrained(model_dir, device=device.value)
Expected behavior Output that inferenced on iGPU should also complete a sign with the whole texts.
Installation instructions (Please mark the checkbox) [ yes ] I followed the installation guide at https://github.com/openvinotoolkit/openvino_notebooks#-installation-guide to install the notebooks.
The text was updated successfully, but these errors were encountered:
What version of OpenVINO are you using?
Sorry, something went wrong.
This is known issue to be fixed. We seem to have an issue in sdpa. (cc. @e-ddykim)
onnx 1.17.0 openai 1.57.1 opencv-python 4.10.0.84 openvino 2025.0.0 (local Build with the PR #27265 ) openvino-genai 2024.6.0.0rc3 openvino-telemetry 2024.1.0 openvino-tokenizers 2024.6.0.0 optimum 1.24.0.dev0 optimum-intel 1.22.0.dev0+58aec63
geunhwan
p-durandin
No branches or pull requests
Describe the bug
Flux.1 image generation has a relatively unfinished image output that inferenced on iGPU than CPU.
Config for iGPU inference and the output:
Config for CPU inference and the output:
Expected behavior
Output that inferenced on iGPU should also complete a sign with the whole texts.
Installation instructions (Please mark the checkbox)
[ yes ] I followed the installation guide at https://github.com/openvinotoolkit/openvino_notebooks#-installation-guide to install the notebooks.
The text was updated successfully, but these errors were encountered: