Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% set cuda_enabled = cuda_compiler_version != "None" %}
{% set build_ext = "cuda" if cuda_enabled else "cpu" %}
{% set version = "1.22.2" %}
{% set version = "1.23.2" %}
{% set suffix = "" %} # [suffix == None]
{% set build = 0 %}

Expand All @@ -20,7 +20,7 @@ package:

source:
url: https://github.com/microsoft/onnxruntime/archive/refs/tags/v{{ version }}.tar.gz
sha256: 6f82b949636df0c964cc6f1ef4f1b39b397dce456f92b204d87b46d258687b41
sha256: 99bcf964ce4e869d823c99b2294562a9050cbfa8e76ec81c8683cb3c7e19c2b4
patches:
- patches/0001-Don-t-call-pip-on-windows.patch
# Workaround for https://github.com/conda-forge/onnxruntime-feedstock/pull/56#issuecomment-1586080419
Expand All @@ -40,7 +40,7 @@ source:
build:
number: {{ build }}
# don't build cuda versions with novec
skip: true # [ (cuda_compiler_version != "None") and (suffix == "-novec") ]
skip: true # [ (cuda_compiler_version != "None") and (suffix == "-novec")]
# cross-compilation of linux-aarch64 cuda builds are currently broken
skip: true # [(cuda_compiler_version != "None") and aarch64]
# Since 1.11, power9 seems to be required.
Expand Down
Loading