Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 8 additions & 1 deletion .ci_support/migrations/cutensor2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,14 @@ __migrator:
kind: version
migration_number: 1
bump_number: 1
use_local: True
commit_message: |
Rebuild for cuTENSOR 2.x support

This migrator updates the dependency on `cutensor` to 2.x. Since 2.x has API
breaking changes, be sure your package has the latest support tested before
merging. Otherwise, please keep the PR open (and better, in draft status) as
instructed [here](https://conda-forge.org/docs/maintainer/knowledge_base.html#migrators-and-migrations)
until the package is ready to migrate.

cutensor:
- 2
5 changes: 4 additions & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% set name = "cupy" %}
{% set version = "13.0.0" %}
{% set sha256 = "2f04e7857f692a713360dc9c3b06709806ab8404fca39b5af9721c04a2979aae" %}
{% set build_num = 1 %}
{% set build_num = 2 %}

{% set target_name = "x86_64-linux" %} # [linux64]
{% set target_name = "ppc64le-linux" %} # [ppc64le]
Expand Down Expand Up @@ -57,6 +57,9 @@ outputs:
- libcurand # [(cuda_compiler_version or "").startswith("12")]
- libcusolver # [(cuda_compiler_version or "").startswith("12")]
- libcusparse # [(cuda_compiler_version or "").startswith("12")]
# see discussions/references in conda-forge/cupy-feedstock#247
- cuda-version >=12.0,<13.0a0 # [(cuda_compiler_version or "").startswith("12")]
- cuda-version >=11.0,<12.0a0 # [(cuda_compiler_version or "").startswith("11")]
test:
requires:
# need the libcuda stub for import test
Expand Down