Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into feature/onnxruntime…
Browse files Browse the repository at this point in the history
…-dist-names
  • Loading branch information
kazssym committed Jan 19, 2025
2 parents 7c1ee2f + ded71c2 commit e6df5ac
Show file tree
Hide file tree
Showing 11 changed files with 56 additions and 45 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_pr_documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
echo ${{ env.COMMIT_SHA }} > ./commit_sha
echo ${{ env.PR_NUMBER }} > ./pr_number
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: doc-build-artifact
path: optimum-doc-build/
5 changes: 3 additions & 2 deletions .github/workflows/test_export_onnx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.9']
python-version: ["3.9"]
os: [ubuntu-20.04]

runs-on: ${{ matrix.os }}
Expand All @@ -27,13 +27,14 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies for pytorch export
run: |
pip install .[tests,exporters]
pip install .[tests,exporters,diffusers]
- name: Test with unittest
working-directory: tests
run: |
pytest exporters/onnx/test_onnx_*.py -s -n auto -m "not tensorflow_test and not timm_test" --durations=0
- name: Install dependencies for tensorflow export
run: |
pip uninstall diffusers -y
pip install .[tests,exporters-tf]
- name: Test with unittest
working-directory: tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_export_onnx_cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9]
python-version: ["3.9"]
os: [ubuntu-20.04]

runs-on: ${{ matrix.os }}
Expand All @@ -27,7 +27,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies for pytorch export
run: |
pip install .[tests,exporters]
pip install .[tests,exporters,diffusers]
- name: Test with unittest
working-directory: tests
run: |
Expand Down
41 changes: 21 additions & 20 deletions .github/workflows/test_exporters_slow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,27 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.9']
python-version: ["3.9"]

runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies for pytorch export
run: |
pip install .[tests,exporters]
- name: Test with unittest
working-directory: tests
run: |
RUN_SLOW=1 pytest exporters -s -m "not tensorflow_test and run_slow" --durations=0
- name: Install dependencies for tensorflow export
run: |
pip install .[tests,exporters-tf]
- name: Test with unittest
working-directory: tests
run: |
RUN_SLOW=1 pytest exporters -s -m "tensorflow_test and run_slow" --durations=0
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies for pytorch export
run: |
pip install .[tests,exporters,diffusers]
- name: Test with unittest
working-directory: tests
run: |
RUN_SLOW=1 pytest exporters -s -m "not tensorflow_test and run_slow" --durations=0
- name: Install dependencies for tensorflow export
run: |
pip uninstall diffusers -y
pip install .[tests,exporters-tf]
- name: Test with unittest
working-directory: tests
run: |
RUN_SLOW=1 pytest exporters -s -m "tensorflow_test and run_slow" --durations=0
2 changes: 1 addition & 1 deletion .github/workflows/test_onnx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install .[tests,exporters]
pip install .[tests,exporters,diffusers]
- name: Test with unittest
working-directory: tests
run: |
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/test_onnxruntime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,23 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: "3.9"

- name: Install dependencies
run: |
pip install --upgrade pip
pip install --no-cache-dir torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
pip install .[tests,onnxruntime]
pip install .[tests,onnxruntime,diffusers]
- name: Install transformers ${{ matrix.transformers-version }}
if: ${{ matrix.transformers-version != 'latest' }}
run: pip install transformers==${{ matrix.transformers-version }}
run: |
pip install "transformers==${{ matrix.transformers-version }}"
- name: Downgrade diffusers
if: matrix.transformers-version == '4.36.*'
run: |
pip install "diffusers<0.32.0"
- name: Test with pytest (in series)
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_onnxruntime_slow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.9']
python-version: ["3.9"]
os: [ubuntu-20.04]

runs-on: ${{ matrix.os }}
Expand All @@ -26,7 +26,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies for export
run: |
pip install .[tests,onnxruntime]
pip install .[tests,onnxruntime,diffusers]
- name: Test with unittest
working-directory: tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion optimum/exporters/onnx/model_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def inputs(self) -> Dict[str, Dict[int, str]]:


class ModernBertOnnxConfig(DistilBertOnnxConfig):
pass
MIN_TRANSFORMERS_VERSION = version.parse("4.48.0")


class MPNetOnnxConfig(DistilBertOnnxConfig):
Expand Down
2 changes: 2 additions & 0 deletions optimum/subpackages.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ def load_namespace_modules(namespace: str, module: str):
dist_name = dist.metadata["Name"]
if not dist_name.startswith(f"{namespace}-"):
continue
if dist_name == f"{namespace}-benchmark":
continue
package_import_name = dist_name.replace("-", ".")
module_import_name = f"{package_import_name}.{module}"
if module_import_name in sys.modules:
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
"Pillow",
"sacremoses",
"torchvision",
"diffusers>=0.17.0,<0.32.0",
"torchaudio",
"einops",
"timm",
Expand Down Expand Up @@ -89,7 +88,7 @@
"executorch>=0.4.0",
"transformers>=4.46",
],
"diffusers": ["diffusers<0.32.0"],
"diffusers": ["diffusers"],
"intel": "optimum-intel>=1.18.0",
"openvino": "optimum-intel[openvino]>=1.18.0",
"nncf": "optimum-intel[nncf]>=1.18.0",
Expand Down
24 changes: 13 additions & 11 deletions tests/onnxruntime/test_diffusion.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ def _generate_prompts(batch_size=1):
"guidance_scale": 7.5,
"output_type": "np",
}

return inputs


Expand Down Expand Up @@ -105,8 +106,7 @@ class ORTPipelineForText2ImageTest(ORTModelTestMixin):
def generate_inputs(self, height=128, width=128, batch_size=1):
inputs = _generate_prompts(batch_size=batch_size)

inputs["height"] = height
inputs["width"] = width
inputs["height"], inputs["width"] = height, width

return inputs

Expand Down Expand Up @@ -224,17 +224,19 @@ def test_shape(self, model_arch: str):
elif output_type == "pt":
self.assertEqual(outputs.shape, (batch_size, 3, height, width))
else:
expected_height = height // pipeline.vae_scale_factor
expected_width = width // pipeline.vae_scale_factor

if model_arch == "flux":
expected_height = height // (pipeline.vae_scale_factor * 2)
expected_width = width // (pipeline.vae_scale_factor * 2)
channels = pipeline.transformer.config.in_channels
expected_shape = (batch_size, expected_height * expected_width, channels)
elif model_arch == "stable-diffusion-3":
out_channels = pipeline.transformer.config.out_channels
expected_shape = (batch_size, out_channels, expected_height, expected_width)
else:
out_channels = pipeline.unet.config.out_channels
expected_height = height // pipeline.vae_scale_factor
expected_width = width // pipeline.vae_scale_factor
out_channels = (
pipeline.unet.config.out_channels
if getattr(pipeline, "unet", None) is not None
else pipeline.transformer.config.out_channels
)
expected_shape = (batch_size, out_channels, expected_height, expected_width)

self.assertEqual(outputs.shape, expected_shape)
Expand Down Expand Up @@ -363,6 +365,7 @@ def generate_inputs(self, height=128, width=128, batch_size=1, channel=3, input_
height=height, width=width, batch_size=batch_size, channel=channel, input_type=input_type
)

inputs["height"], inputs["width"] = height, width
inputs["strength"] = 0.75

return inputs
Expand Down Expand Up @@ -602,9 +605,8 @@ def generate_inputs(self, height=128, width=128, batch_size=1, channel=3, input_
height=height, width=width, batch_size=batch_size, channel=1, input_type=input_type
)

inputs["height"], inputs["width"] = height, width
inputs["strength"] = 0.75
inputs["height"] = height
inputs["width"] = width

return inputs

Expand Down

0 comments on commit e6df5ac

Please sign in to comment.