PortPilot
Benchmark · pre-generated, always available← back to leaderboard
Migration Readiness Report

cupy/cupy

https://github.com/cupy/cupy
Manual blockers present

1. Analyze the Request:
Repo:* cupy/cupy
ROCm readiness score:* 51/100 (Manual blockers present)
Findings:* A (works as-is): 43, B (mechanical): 2044, C (manual blocker): 12
Task:* Write a 3-4 sentence advisory summary of ROCm readiness and first steps.
Constraints:* Advisory tone (never claim auto-fixed), concrete, concise, technically accurate, 3-4 sentences.

2. Analyze the Data:
* Score 51/100 indicates a moderate readiness, but heavily skewed by mechanical issues.
* Bucket A (43): Small number of files/kernels work as-is.
* Bucket B (2044): Huge number of mechanical replacements needed (e.g., cuda -> hip, header changes, API renames). CuPy actually has a HIP backend, but maybe this scan was against the CUDA codebase without considering the HIP backend, or it's evaluating the raw CUDA code. Regardless, the scan shows 2044 mechanical blockers.
* Bucket C (12): 12 manual blockers. These are the critical path items (e.g., unsupported intrinsics, complex kernel logic, missing ROCm equivalents).

3. Drafting the Summary:
Sentence

43Works as-is
2044Mechanical change
12Manual blocker
Findings
2099
Python files
743
Files scanned
1187
Custom CUDA kernels
detected

Detected but out of scope (not analyzed): C, C/C++ header

Findings by file

2099 findings · 621 files
cupy_backends/cuda/libs/__init__.py· 1
C
cuda-python low-level driver API
from cuda import pathfinder as _pathfinder
:9

cuda.pathfinder is a cuda-python utility for discovering CUDA shared libraries (libcudart, libcublas, etc.) on the system. On ROCm there is no equivalent package; AMD libraries are typically located via ROCM_PATH or standard system paths. This import will fail on ROCm and must be replaced with ROCm-aware library discovery or guarded behind a backend conditional.

RecommendRewrite driver-API calls against the HIP runtime.

Suggested change · advisory
--- a/cupy_backends/cuda/libs/__init__.py
+++ b/cupy_backends/cuda/libs/__init__.py
@@ -9,1 +9,7 @@
-from cuda import pathfinder as _pathfinder
+# Advisory: cuda.pathfinder has no ROCm equivalent. Guard or replace
+# with ROCm library discovery (e.g., via HIP_PATH / ROCM_PATH).
+try:
+ from cuda import pathfinder as _pathfinder
+except ImportError:
+ _pathfinder = None # ROCm path: use os.environ.get('ROCM_PATH', '/opt/rocm')
cupy/_environment.py· 8
C
cuda-python low-level driver API
from cuda.pathfinder import (
:157

The cuda.pathfinder module is part of the cuda-python package and is used to locate CUDA toolkit installations at runtime. On ROCm, there is no direct equivalent; path discovery is typically done via the ROCM_PATH environment variable or the default /opt/rocm location. This import and any downstream usage must be replaced with ROCm-specific path resolution logic.

RecommendRewrite driver-API calls against the HIP runtime.

Suggested change · advisory
--- a/cupy/_environment.py
+++ b/cupy/_environment.py
@@ -157,1 +157,1 @@
-from cuda.pathfinder import (
+# Advisory: cuda.pathfinder has no ROCm equivalent; replace with ROCm path
+# discovery logic, e.g. os.environ.get('ROCM_PATH', '/opt/rocm')
+# from cuda.pathfinder import (
C
cuda-python low-level driver API
from cuda.pathfinder import find_nvidia_binary_utility
:201

This import relies on the NVIDIA-specific cuda.pathfinder package to locate NVIDIA binary utilities, which has no ROCm equivalent. On AMD Instinct targets, this pathfinding logic must be replaced with ROCm-specific tool discovery (e.g., via hipconfig or rocm-path) or guarded behind a backend conditional so the module does not fail at import time.

RecommendRewrite driver-API calls against the HIP runtime.

Suggested change · advisory
--- a/cupy/_environment.py
+++ b/cupy/_environment.py
@@ -199,7 +199,11 @@
# Advisory only: replace NVIDIA-specific pathfinder with ROCm equivalent
-from cuda.pathfinder import find_nvidia_binary_utility
+try:
+ from cuda.pathfinder import find_nvidia_binary_utility
+except ImportError:
+ # ROCm migration: no cuda.pathfinder equivalent; use hipconfig/rocm-path
+ find_nvidia_binary_utility = None
C
cuda-python low-level driver API
from cuda.pathfinder import (
:403

The cuda.pathfinder module is a cuda-python utility for locating CUDA toolkit installations and shared libraries at runtime. On ROCm there is no direct equivalent package; path discovery must be replaced with ROCm-specific logic (e.g., ROCM_PATH env var or /opt/rocm fallback). This is a runtime/environment change that affects how backend libraries are located, not just a simple import swap.

RecommendRewrite driver-API calls against the HIP runtime.

Suggested change · advisory
--- a/cupy/_environment.py
+++ b/cupy/_environment.py
@@ -403,7 +403,11 @@
- from cuda.pathfinder import (
- _is_windows, find_cuda_include_dir, find_nvidia_dynamic_lib_dir,
- )
+ # Advisory: cuda.pathfinder has no ROCm equivalent. Replace with
+ # ROCm path discovery using ROCM_PATH env var or /opt/rocm fallback.
+ import os
+ _rocm_path = os.environ.get('ROCM_PATH', '/opt/rocm')
+ # TODO: replace find_cuda_include_dir / find_nvidia_dynamic_lib_dir
+ # with ROCm-specific include/lib path resolution under _rocm_path.
A
Device string "cuda"
cuda_version = config['cuda']
:419

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
cupy_cuda_lib_path, config['cuda'], lib, version, x,
:435

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
_get_cutensor_from_wheel(min_pypi_version, config['cuda']) +
:441

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
_get_nccl_from_wheel(min_pypi_version, config['cuda']) +
:446

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
cuda = config['cuda']
:572

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

cupy/cuda/__init__.py· 51
B
CuPy dependency
import cupy as _cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._environment import get_cuda_path # NOQA
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._environment import get_nvcc_path # NOQA
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._environment import get_rocm_path # NOQA
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._environment import get_hipcc_path # NOQA
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import compiler # NOQA
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device # NOQA
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import function # NOQA
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import memory # NOQA
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import memory_hook # NOQA
:17

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import memory_hooks # NOQA
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import pinned_memory # NOQA
:19

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import profiler # NOQA
:20

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import stream # NOQA
:21

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import texture # NOQA
:22

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cub # NOQA
:38

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import thrust # NOQA
:47

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy.cuda.jitify as jitify
:71

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

C
cuda-python low-level driver API
from cuda import pathfinder
:78

cuda-python's pathfinder module is a CUDA-specific utility for locating CUDA shared libraries at runtime; there is no ROCm equivalent. On AMD Instinct, library discovery should use ROCM_PATH or rpath-based resolution instead, so this import must be removed or stubbed behind a HIP/ROCm code path.

RecommendRewrite driver-API calls against the HIP runtime.

Suggested change · advisory
--- a/cupy/cuda/__init__.py
+++ b/cupy/cuda/__init__.py
@@ -75,7 +75,11 @@
# Advisory: `cuda.pathfinder` has no ROCm equivalent.
# Replace with ROCM_PATH-based discovery or guard behind a CUDA-only path.
-from cuda import pathfinder
+try:
+ from cuda import pathfinder
+except ImportError:
+ # ROCm migration: no pathfinder equivalent; use ROCM_PATH env or rpath.
+ pathfinder = None
B
CuPy dependency
from cupy.cuda.device import Device # NOQA
:127

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.device import get_cublas_handle # NOQA
:128

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.device import get_device_id # NOQA
:129

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.function import Function # NOQA
:130

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.function import Module # NOQA
:131

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory import alloc # NOQA
:132

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory import BaseMemory # NOQA
:133

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory import malloc_managed # NOQA
:134

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory import malloc_async # NOQA
:135

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory import ManagedMemory # NOQA
:136

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory import Memory # NOQA
:137

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory import MemoryAsync # NOQA
:138

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory import MemoryPointer # NOQA
:139

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory import MemoryPool # NOQA
:140

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory import MemoryAsyncPool # NOQA
:141

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory import PythonFunctionAllocator # NOQA
:142

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory import CFunctionAllocator # NOQA
:143

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory import set_allocator # NOQA
:144

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory import get_allocator # NOQA
:145

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory import UnownedMemory # NOQA
:146

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory_hook import MemoryHook # NOQA
:147

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.pinned_memory import alloc_pinned_memory # NOQA
:148

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.pinned_memory import PinnedMemory # NOQA
:149

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.pinned_memory import PinnedMemoryPointer # NOQA
:150

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.pinned_memory import PinnedMemoryPool # NOQA
:151

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.pinned_memory import set_pinned_memory_allocator # NOQA
:152

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.stream import Event # NOQA
:153

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.stream import get_current_stream # NOQA
:154

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.stream import get_elapsed_time # NOQA
:155

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.stream import Stream # NOQA
:156

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.stream import ExternalStream # NOQA
:157

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.graph import Graph # NOQA
:158

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/cuda/compiler.py· 12
B
CuPy dependency
from cupy.cuda import device
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import function
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda._compiler_cache import (
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _environment
:24

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _util
:25

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import core
:203

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import get_cuda_path
:268

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import jitify
:311

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import core
:316

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import get_nvcc_path
:442

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

C
Inline PTX assembly
options = options + ('-o', 'preprocess.ptx')
:542

PTX is NVIDIA-specific IR and has no direct ROCm equivalent; the compilation pipeline must target AMDGPU ISA via clang/llvm instead of nvcc/ptxas. This option string is part of a CUDA-only preprocessing/compilation path that will not function on AMD Instinct GPUs and must be replaced with ROCm's compiler invocation (e.g., clang with -target amdgcn-amd-amdhsa).

RecommendRewrite the PTX block in HIP or a portable high-level equivalent.

Suggested change · advisory
--- a/cupy/cuda/compiler.py
+++ b/cupy/cuda/compiler.py
@@ -542,7 +542,11 @@
- options = options + ('-o', 'preprocess.ptx')
+ # Advisory: PTX is NVIDIA-only; on ROCm use clang targeting AMDGPU.
+ # Replace PTX output with AMDGPU ISA / bitcode output path.
+ if _is_rocm():
+ options = options + ('-o', 'preprocess.amdgcn')
+ else:
+ options = options + ('-o', 'preprocess.ptx')
C
Inline PTX assembly
ls.add_ptr_data(ptx, 'cupy.ptx')
:693

PTX is NVIDIA-specific intermediate assembly with no direct ROCm equivalent; AMD uses GCN/AMDGPU ISA or HIP IR instead. This code path in the compiler module will not function on AMD Instinct GPUs and must be redirected to a HIP/ROCm compilation pipeline or guarded behind a backend check.

RecommendRewrite the PTX block in HIP or a portable high-level equivalent.

Suggested change · advisory
--- a/cupy/cuda/compiler.py
+++ b/cupy/cuda/compiler.py
@@ -690,7 +690,11 @@
- ls.add_ptr_data(ptx, 'cupy.ptx')
+ # Advisory: PTX is NVIDIA-only; on ROCm, use HIP/AMDGPU ISA instead.
+ # Consider branching on backend (CUDA vs HIP/ROCm) here.
+ if not _is_rocm_backend():
+ ls.add_ptr_data(ptx, 'cupy.ptx')
+ else:
+ raise RuntimeError('PTX path not supported on ROCm; use HIP compilation instead')
cupyx/_runtime.py· 7
B
CuPy dependency
import cupy
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

C
cuda-python low-level driver API
from cuda import pathfinder
:17

The cuda.pathfinder module is part of cuda-python and is used to locate CUDA shared libraries at runtime; there is no direct ROCm equivalent. This import must be removed or replaced with ROCm-specific library discovery (e.g., standard ROCm paths under /opt/rocm or environment variables like ROCM_PATH).

RecommendRewrite driver-API calls against the HIP runtime.

Suggested change · advisory
--- a/cupyx/_runtime.py
+++ b/cupyx/_runtime.py
@@ -14,7 +14,6 @@
-# Advisory: cuda.pathfinder has no ROCm equivalent; remove or replace
-# with ROCm library path discovery (e.g., os.environ.get('ROCM_PATH', '/opt/rocm'))
-from cuda import pathfinder
+# from cuda import pathfinder # Removed: no ROCm equivalent
+# TODO: replace with ROCm library discovery if runtime path lookup is needed
C
cuda-python low-level driver API
import cuda.bindings
:150

The cuda.bindings import is the cuda-python low-level driver/runtime binding package; on ROCm the analog is hipPython's rocm.bindings module. This is a bucket-C low-level API surface, so all downstream driver calls (e.g., cuDriverGetVersion, cuDeviceGet, cuMemAlloc) must be mapped to their HIP equivalents (hipDriverGetVersion, hipDeviceGet, hipMalloc) — not just the import line. Verify the hipPython package version exposes the same binding surface before committing the change.

RecommendRewrite driver-API calls against the HIP runtime.

Suggested change · advisory
--- a/cupyx/_runtime.py
+++ b/cupyx/_runtime.py
@@ -150,1 +150,1 @@
-import cuda.bindings
+import rocm.bindings # advisory: hipPython analog of cuda.bindings
C
cuda-python low-level driver API
import cuda
:153

The import cuda statement pulls in cuda-python's low-level driver API bindings, which have no direct ROCm equivalent package. On ROCm, this import will fail at runtime and must either be replaced with a HIP/ROCm Python binding (e.g., rhipy or amdsmi where applicable) or guarded behind a backend-detection conditional so the module remains importable on AMD Instinct systems.

RecommendRewrite driver-API calls against the HIP runtime.

Suggested change · advisory
--- a/cupyx/_runtime.py
+++ b/cupyx/_runtime.py
@@ -153,1 +153,5 @@
-import cuda
+# Advisory: cuda-python has no ROCm equivalent; guard or replace.
+try:
+ import cuda
+except ImportError:
+ cuda = None # ROCm: use rhipy/amdsmi bindings where needed
B
CuPy dependency
from cupy.cuda import cufft
:182

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy.cuda.thrust as thrust
:223

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy.cuda.jitify as jitify
:268

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_include.py· 2
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

C
cuda-python low-level driver API
from cuda.pathfinder import find_nvidia_header_directory
:57

cuda.pathfinder is an NVIDIA-specific utility for locating CUDA headers and has no ROCm equivalent. On AMD Instinct, this import will fail at collection time, so the test should be guarded or skipped for ROCm builds. Advisory only — verify whether this test is relevant to the ROCm path before applying.

RecommendRewrite driver-API calls against the HIP runtime.

Suggested change · advisory
--- a/tests/cupy_tests/core_tests/test_include.py
+++ b/tests/cupy_tests/core_tests/test_include.py
@@ -54,6 +54,9 @@
@pytest.mark.skipif(
+ os.environ.get('HIP_PLATFORM') == 'amd',
+ reason='cuda.pathfinder is NVIDIA-specific; no ROCm equivalent')
+@pytest.mark.skipif(
not cuda_path_available,
reason='cuda.pathfinder is not available')
def test_include_cupy_complex():
tests/cupy_tests/core_tests/test_raw.py· 8
B
CuPy dependency
import cupy
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:17

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _util
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _accelerator
:19

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import compiler
:20

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import _compiler_cache
:21

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import memory
:22

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

C
Inline PTX assembly
file_path += '.ptx'
:632

PTX is NVIDIA-specific intermediate assembly and is not executable on AMD Instinct GPUs; ROCm uses AMDGPU ISA / code objects (e.g., .hsaco or .co). This test path that loads a .ptx file will fail on ROCm unless a corresponding ROCm code object is provided or the test is conditionally skipped.

RecommendRewrite the PTX block in HIP or a portable high-level equivalent.

Suggested change · advisory
--- tests/cupy_tests/core_tests/test_raw.py
+++ tests/cupy_tests/core_tests/test_raw.py
@@ -629,7 +629,11 @@
# ... existing context ...
- file_path += '.ptx'
+ if cupy.cuda.runtime.is_hip:
+ # Advisory: PTX is NVIDIA-only; use a ROCm code object instead
+ file_path += '.hsaco'
+ else:
+ file_path += '.ptx'
cupy/__init__.py· 365
B
CuPy dependency
from cupy import _environment
:8

CuPy is a CUDA-centric array library; this internal _environment import sets up CUDA paths and runtime detection. For ROCm, you should use the cupy-rocm build (or CuPy's HIP backend) where _environment is adapted for HIP, or replace CuPy with an ROCm-compatible alternative such as PyTorch on HIP or rocarray.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

Suggested change · advisory
--- cupy/__init__.py
+++ cupy/__init__.py
@@ -5,7 +5,11 @@
# Advisory: CuPy's _environment module is CUDA-specific. On ROCm,
# use the cupy-rocm build where this module is HIP-aware, or guard
# the import so non-CUDA backends do not fail.
-from cupy import _environment
+try:
+ from cupy import _environment
+except ImportError:
+ # ROCm/HIP backend may not provide _environment; skip CUDA-specific setup
+ pass
B
CuPy dependency
from cupy import _version
:9

CuPy is a CUDA-oriented array library, but it does have an experimental ROCm/HIP backend that can be installed via cupy-rocm-* packages. No source change is strictly required if the ROCm-compatible build of CuPy is installed in the environment; otherwise the dependency must be replaced with an alternative such as PyTorch or Numba-ROCm.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core # NOQA
:18

CuPy itself ships CUDA-specific and ROCm-specific wheels; the import path from cupy import _core is unchanged, but the underlying binary must be the ROCm build (cupy-rocm) rather than the default CUDA build. No source edit is needed here—migration impact is purely environmental (install the correct wheel matching the AMD Instinct ROCm version).

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cuda # NOQA
:30

CuPy is a CUDA-centric array library; on ROCm you must use the ROCm-enabled CuPy build (cupy-rocm) which provides a cupy.cuda compatibility shim backed by HIP. No source change is strictly required if the ROCm CuPy wheel is installed, but verify that cupy.cuda APIs your code relies on are implemented in the HIP backend.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

Suggested change · advisory
--- a/cupy/__init__.py
+++ b/cupy/__init__.py
@@ -30,1 +30,3 @@
-from cupy import cuda # NOQA
+# Advisory: ensure cupy-rocm is installed; cupy.cuda is shimmed to HIP in ROCm builds.
+# If unavailable, fall back to a conditional import or raise a clear RuntimeError.
+from cupy import cuda # NOQA
B
CuPy dependency
from cupy import fft # NOQA
:50

CuPy itself supports ROCm when built against HIP (installed as cupy-rocm), so the from cupy import fft import can remain unchanged at the source level. The migration impact is purely environmental: the build/installation must target ROCm rather than CUDA, and runtime behavior of FFT routines should be validated against ROCm's hipFFT backend.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import linalg # NOQA
:51

CuPy itself is a CUDA-centric library, but it has experimental ROCm/HIP support when built with CUPYINSTALLUSE_HIP=1 against AMD's ROCm stack. The import line itself likely needs no source change, but the runtime/build environment must switch to a HIP-enabled CuPy build or be replaced with an alternative (e.g., PyTorch-ROCm, Numba-ROCm, or direct PyHIP) if CuPy's ROCm backend is insufficient.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import polynomial # NOQA
:52

CuPy itself must be built against ROCm/HIP rather than CUDA; the Python-level import path (cupy.polynomial) remains unchanged, but the underlying library binary and runtime backend differ. No source-level edit to this import line is needed—migration impact is at the build/install layer (install cupy-rocm or build CuPy from source with -DHIP=ON).

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import random # NOQA
:53

This is an internal CuPy import within CuPy's own package; the import statement itself does not change for ROCm. CuPy can be built against ROCm/HIP, so the migration impact is at the build/installation level (installing a ROCm-enabled CuPy wheel or building from source with HIP), not a source-level edit to this line.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import ndarray # NOQA
:56

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import ufunc # NOQA
:57

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.basic import astype # NOQA
:191

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.basic import empty # NOQA
:192

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.basic import empty_like # NOQA
:193

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.basic import eye # NOQA
:194

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.basic import full # NOQA
:195

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.basic import full_like # NOQA
:196

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.basic import identity # NOQA
:197

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.basic import ones # NOQA
:198

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.basic import ones_like # NOQA
:199

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.basic import zeros # NOQA
:200

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.basic import zeros_like # NOQA
:201

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.from_data import copy # NOQA
:203

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.from_data import array # NOQA
:204

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.from_data import asanyarray # NOQA
:205

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.from_data import asarray # NOQA
:206

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.from_data import ascontiguousarray # NOQA
:207

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.from_data import fromfile # NOQA
:208

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.from_data import fromfunction # NOQA
:209

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.from_data import fromiter # NOQA
:210

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.from_data import frombuffer # NOQA
:211

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.from_data import fromstring # NOQA
:212

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.from_data import loadtxt # NOQA
:213

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.from_data import genfromtxt # NOQA
:214

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.ranges import arange # NOQA
:216

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.ranges import linspace # NOQA
:217

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.ranges import logspace # NOQA
:218

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.ranges import meshgrid # NOQA
:219

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.ranges import mgrid # NOQA
:220

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.ranges import ogrid # NOQA
:221

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.matrix import diag # NOQA
:223

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.matrix import diagflat # NOQA
:224

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.matrix import tri # NOQA
:225

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.matrix import tril # NOQA
:226

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.matrix import triu # NOQA
:227

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.matrix import vander # NOQA
:228

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._functional.piecewise import piecewise # NOQA
:233

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._functional.vectorize import vectorize # NOQA
:234

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.lib._shape_base import apply_along_axis # NOQA
:235

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.lib._shape_base import apply_over_axes # NOQA
:236

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.lib._shape_base import put_along_axis # NOQA
:237

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.basic import copyto # NOQA
:242

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.shape import shape # NOQA
:244

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.shape import ravel # NOQA
:245

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.shape import reshape # NOQA
:246

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.transpose import moveaxis # NOQA
:248

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.transpose import rollaxis # NOQA
:249

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.transpose import swapaxes # NOQA
:250

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.transpose import transpose # NOQA
:251

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.transpose import matrix_transpose # NOQA
:252

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.dims import atleast_1d # NOQA
:257

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.dims import atleast_2d # NOQA
:258

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.dims import atleast_3d # NOQA
:259

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.dims import broadcast # NOQA
:260

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.dims import broadcast_arrays # NOQA
:261

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.dims import broadcast_to # NOQA
:262

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.dims import expand_dims # NOQA
:263

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.dims import squeeze # NOQA
:264

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.join import column_stack # NOQA
:266

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.join import concatenate # NOQA
:267

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.join import dstack # NOQA
:268

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.join import hstack # NOQA
:269

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.join import row_stack # NOQA
:270

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.join import stack # NOQA
:271

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.join import vstack # NOQA
:272

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.kind import asarray_chkfinite # NOQA
:277

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.kind import asfarray # NOQA
:278

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.kind import asfortranarray # NOQA
:279

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.kind import require # NOQA
:280

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.split import array_split # NOQA
:282

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.split import dsplit # NOQA
:283

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.split import hsplit # NOQA
:284

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.split import split # NOQA
:285

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.split import vsplit # NOQA
:286

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.tiling import repeat # NOQA
:288

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.tiling import tile # NOQA
:289

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.add_remove import delete # NOQA
:291

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.add_remove import append # NOQA
:292

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.add_remove import resize # NOQA
:293

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.add_remove import unique # NOQA
:294

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.add_remove import unique_all # NOQA
:295

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.add_remove import unique_counts # NOQA
:296

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.add_remove import unique_values # NOQA
:297

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.add_remove import unique_inverse # NOQA
:298

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.add_remove import trim_zeros # NOQA
:300

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.rearrange import flip # NOQA
:302

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.rearrange import fliplr # NOQA
:303

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.rearrange import flipud # NOQA
:304

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.rearrange import roll # NOQA
:305

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation.rearrange import rot90 # NOQA
:306

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._binary.elementwise import bitwise_and # NOQA
:315

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._binary.elementwise import bitwise_or # NOQA
:316

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._binary.elementwise import bitwise_xor # NOQA
:317

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._binary.elementwise import bitwise_not # NOQA
:318

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._binary.elementwise import bitwise_count # NOQA
:319

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._binary.elementwise import invert # NOQA
:320

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._binary.elementwise import left_shift # NOQA
:321

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._binary.elementwise import right_shift # NOQA
:322

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._binary.packing import packbits # NOQA
:329

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._binary.packing import unpackbits # NOQA
:330

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.core import min_scalar_type # NOQA
:387

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.generate import c_ # NOQA
:416

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.generate import indices # NOQA
:417

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.generate import ix_ # NOQA
:418

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.generate import mask_indices # NOQA
:419

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.generate import tril_indices # NOQA
:420

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.generate import tril_indices_from # NOQA
:421

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.generate import triu_indices # NOQA
:422

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.generate import triu_indices_from # NOQA
:423

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.generate import r_ # NOQA
:424

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.generate import ravel_multi_index # NOQA
:425

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.generate import unravel_index # NOQA
:426

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.indexing import choose # NOQA
:428

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.indexing import compress # NOQA
:429

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.indexing import diagonal # NOQA
:430

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.indexing import extract # NOQA
:431

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.indexing import select # NOQA
:432

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.indexing import take # NOQA
:433

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.indexing import take_along_axis # NOQA
:434

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.insert import place # NOQA
:436

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.insert import put # NOQA
:437

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.insert import putmask # NOQA
:438

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.insert import fill_diagonal # NOQA
:439

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.insert import diag_indices # NOQA
:440

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.insert import diag_indices_from # NOQA
:441

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing.iterate import flatiter # NOQA
:443

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._io.npz import load # NOQA
:453

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._io.npz import save # NOQA
:454

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._io.npz import savez # NOQA
:455

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._io.npz import savez_compressed # NOQA
:456

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._io.formatting import array_repr # NOQA
:458

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._io.formatting import array_str # NOQA
:459

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._io.formatting import array2string # NOQA
:460

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._io.formatting import format_float_positional # NOQA
:461

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._io.formatting import format_float_scientific # NOQA
:462

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._io.text import savetxt # NOQA
:464

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._einsum import einsum # NOQA
:484

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._product import cross # NOQA
:486

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._product import dot # NOQA
:487

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._product import inner # NOQA
:488

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._product import kron # NOQA
:489

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._product import matmul # NOQA
:490

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._product import outer # NOQA
:491

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._product import tensordot # NOQA
:492

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._product import vdot # NOQA
:493

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._norms import trace # NOQA
:495

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.comparison import allclose # NOQA
:500

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.comparison import array_equal # NOQA
:501

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.comparison import array_equiv # NOQA
:502

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.comparison import isclose # NOQA
:503

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.content import isfinite # NOQA
:505

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.content import isinf # NOQA
:506

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.content import isnan # NOQA
:507

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.content import isneginf # NOQA
:508

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.content import isposinf # NOQA
:509

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.truth import in1d # NOQA
:511

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.truth import isin # NOQA
:512

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.type_testing import iscomplex # NOQA
:514

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.type_testing import iscomplexobj # NOQA
:515

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.type_testing import isfortran # NOQA
:516

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.type_testing import isreal # NOQA
:517

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.type_testing import isrealobj # NOQA
:518

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.truth import in1d # NOQA
:520

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.truth import intersect1d # NOQA
:521

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.truth import isin # NOQA
:522

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.truth import setdiff1d # NOQA
:523

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.truth import setxor1d # NOQA
:524

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.truth import union1d # NOQA
:525

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.ops import logical_and # NOQA
:536

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.ops import logical_not # NOQA
:537

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.ops import logical_or # NOQA
:538

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.ops import logical_xor # NOQA
:539

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.comparison import equal # NOQA
:541

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.comparison import greater # NOQA
:542

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.comparison import greater_equal # NOQA
:543

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.comparison import less # NOQA
:544

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.comparison import less_equal # NOQA
:545

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.comparison import not_equal # NOQA
:546

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.truth import all # NOQA
:548

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic.truth import any # NOQA
:549

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.lib._polynomial import poly1d # NOQA
:554

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.lib._routines_poly import poly # NOQA
:555

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.lib._routines_poly import polyadd # NOQA
:556

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.lib._routines_poly import polysub # NOQA
:557

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.lib._routines_poly import polymul # NOQA
:558

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.lib._routines_poly import polyfit # NOQA
:559

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.lib._routines_poly import polyval # NOQA
:560

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.lib._routines_poly import roots # NOQA
:561

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.trigonometric import arccos # NOQA
:566

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.trigonometric import arcsin # NOQA
:567

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.trigonometric import arctan # NOQA
:568

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.trigonometric import arctan2 # NOQA
:569

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.trigonometric import cos # NOQA
:577

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.trigonometric import deg2rad # NOQA
:578

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.trigonometric import degrees # NOQA
:579

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.trigonometric import hypot # NOQA
:580

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.trigonometric import rad2deg # NOQA
:581

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.trigonometric import radians # NOQA
:582

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.trigonometric import sin # NOQA
:583

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.trigonometric import tan # NOQA
:584

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.trigonometric import unwrap # NOQA
:585

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.hyperbolic import arccosh # NOQA
:587

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.hyperbolic import arcsinh # NOQA
:588

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.hyperbolic import arctanh # NOQA
:589

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.hyperbolic import cosh # NOQA
:590

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.hyperbolic import sinh # NOQA
:591

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.hyperbolic import tanh # NOQA
:592

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.rounding import around # NOQA
:599

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.rounding import ceil # NOQA
:600

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.rounding import fix # NOQA
:601

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.rounding import floor # NOQA
:602

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.rounding import rint # NOQA
:603

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.rounding import round # NOQA
:604

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.rounding import round_ # NOQA
:605

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.rounding import trunc # NOQA
:606

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.sumprod import prod # NOQA
:608

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.sumprod import product # NOQA
:609

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.sumprod import sum # NOQA
:610

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.sumprod import cumprod # NOQA
:611

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.sumprod import cumproduct # NOQA
:612

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.sumprod import cumsum # NOQA
:613

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.sumprod import ediff1d # NOQA
:614

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.sumprod import nancumprod # NOQA
:615

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.sumprod import nancumsum # NOQA
:616

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.sumprod import nansum # NOQA
:617

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.sumprod import nanprod # NOQA
:618

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.sumprod import diff # NOQA
:619

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.sumprod import gradient # NOQA
:620

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.sumprod import trapezoid # NOQA
:621

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.window import bartlett # NOQA
:622

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.window import blackman # NOQA
:623

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.window import hamming # NOQA
:624

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.window import hanning # NOQA
:625

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.window import kaiser # NOQA
:626

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.explog import exp # NOQA
:628

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.explog import exp2 # NOQA
:629

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.explog import expm1 # NOQA
:630

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.explog import log # NOQA
:631

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.explog import log10 # NOQA
:632

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.explog import log1p # NOQA
:633

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.explog import log2 # NOQA
:634

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.explog import logaddexp # NOQA
:635

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.explog import logaddexp2 # NOQA
:636

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.special import i0 # NOQA
:638

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.special import sinc # NOQA
:639

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.floating import copysign # NOQA
:641

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.floating import frexp # NOQA
:642

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.floating import ldexp # NOQA
:643

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.floating import nextafter # NOQA
:644

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.floating import signbit # NOQA
:645

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.rational import gcd # NOQA
:647

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.rational import lcm # NOQA
:648

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import add # NOQA
:650

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import divide # NOQA
:651

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import divmod # NOQA
:652

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import floor_divide # NOQA
:653

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import float_power # NOQA
:654

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import fmod # NOQA
:655

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import modf # NOQA
:656

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import multiply # NOQA
:657

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import negative # NOQA
:658

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import positive # NOQA
:659

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import power # NOQA
:660

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import reciprocal # NOQA
:661

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import remainder # NOQA
:662

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import remainder as mod # NOQA
:663

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import subtract # NOQA
:664

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import true_divide # NOQA
:665

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import angle # NOQA
:669

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import conjugate as conj # NOQA
:670

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import conjugate # NOQA
:671

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import imag # NOQA
:672

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.arithmetic import real # NOQA
:673

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.misc import absolute as abs # NOQA
:675

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.misc import absolute # NOQA
:676

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.misc import cbrt # NOQA
:677

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.misc import clip # NOQA
:678

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.misc import fabs # NOQA
:679

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.misc import fmax # NOQA
:680

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.misc import fmin # NOQA
:681

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.misc import interp # NOQA
:682

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.misc import maximum # NOQA
:683

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.misc import minimum # NOQA
:684

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.misc import nan_to_num # NOQA
:685

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.misc import real_if_close # NOQA
:686

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.misc import sign # NOQA
:687

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.misc import heaviside # NOQA
:688

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.misc import sqrt # NOQA
:689

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.misc import square # NOQA
:690

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.misc import convolve # NOQA
:691

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._misc.byte_bounds import byte_bounds # NOQA
:696

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._misc.memory_ranges import may_share_memory # NOQA
:697

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._misc.memory_ranges import shares_memory # NOQA
:698

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._misc.who import who # NOQA
:699

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._padding.pad import pad # NOQA
:708

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting.count import count_nonzero # NOQA
:714

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting.search import argmax # NOQA
:716

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting.search import argmin # NOQA
:717

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting.search import argwhere # NOQA
:718

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting.search import flatnonzero # NOQA
:719

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting.search import nanargmax # NOQA
:720

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting.search import nanargmin # NOQA
:721

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting.search import nonzero # NOQA
:722

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting.search import searchsorted # NOQA
:723

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting.search import where # NOQA
:724

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting.sort import argpartition # NOQA
:726

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting.sort import argsort # NOQA
:727

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting.sort import lexsort # NOQA
:728

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting.sort import msort # NOQA
:729

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting.sort import sort_complex # NOQA
:730

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting.sort import partition # NOQA
:731

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting.sort import sort # NOQA
:732

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.correlation import corrcoef # NOQA
:737

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.correlation import cov # NOQA
:738

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.correlation import correlate # NOQA
:739

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.order import amax # NOQA
:741

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.order import amax as max # NOQA
:742

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.order import amin # NOQA
:743

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.order import amin as min # NOQA
:744

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.order import nanmax # NOQA
:745

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.order import nanmin # NOQA
:746

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.order import percentile # NOQA
:747

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.order import ptp # NOQA
:748

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.order import quantile # NOQA
:749

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.meanvar import median # NOQA
:751

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.meanvar import average # NOQA
:752

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.meanvar import mean # NOQA
:753

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.meanvar import std # NOQA
:754

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.meanvar import var # NOQA
:755

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.meanvar import nanmedian # NOQA
:756

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.meanvar import nanmean # NOQA
:757

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.meanvar import nanstd # NOQA
:758

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.meanvar import nanvar # NOQA
:759

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.histogram import bincount # NOQA
:761

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.histogram import digitize # NOQA
:762

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.histogram import histogram # NOQA
:763

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.histogram import histogram2d # NOQA
:764

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._statistics.histogram import histogramdd # NOQA
:765

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import exceptions # NOQA
:770

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import AxisError # NOQA
:771

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import ComplexWarning # NOQA
:772

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import ModuleDeprecationWarning # undocumented # NOQA
:773

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import RankWarning # NOQA
:774

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import TooHardError # NOQA
:775

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import VisibleDeprecationWarning # NOQA
:776

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import size # NOQA
:782

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._util import clear_memo # NOQA
:806

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._util import memoize # NOQA
:807

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import ElementwiseKernel # NOQA
:809

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import RawKernel # NOQA
:810

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import RawModule # NOQA
:811

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._reduction import ReductionKernel # NOQA
:812

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._dtype import make_aligned_dtype # NOQA
:814

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import fromDlpack # NOQA
:820

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import from_dlpack # NOQA
:821

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._kernel import _ufunc_doc_signature_formatter
:1133

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_binary/elementwise.py· 1
B
CuPy dependency
from cupy import _core
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_binary/packing.py· 2
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_core/__init__.py· 75
B
CuPy dependency
from cupy._core import core # NOQA
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import fusion # NOQA
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal # NOQA
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._accelerator import set_elementwise_accelerators # NOQA
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._accelerator import set_reduction_accelerators # NOQA
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._accelerator import set_routine_accelerators # NOQA
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._accelerator import get_elementwise_accelerators # NOQA
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._accelerator import get_reduction_accelerators # NOQA
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._accelerator import get_routine_accelerators # NOQA
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._kernel import create_ufunc # NOQA
:20

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._kernel import ElementwiseKernel # NOQA
:21

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._kernel import ufunc # NOQA
:22

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._kernel import _get_warpsize # NOQA
:23

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._kernel import _full_mask # NOQA
:24

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._kernel import _full_mask_hex # NOQA
:25

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._kernel import _is_hip_7_plus # NOQA
:26

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._reduction import create_reduction_func # NOQA
:27

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._reduction import ReductionKernel # NOQA
:28

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_binary import bitwise_and # NOQA
:29

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_binary import bitwise_or # NOQA
:30

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_binary import bitwise_xor # NOQA
:31

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_binary import bitwise_count # NOQA
:32

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_binary import invert # NOQA
:33

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_binary import left_shift # NOQA
:34

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_binary import right_shift # NOQA
:35

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_linalg import _mat_ptrs # NOQA
:36

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_linalg import dot # NOQA
:37

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_linalg import get_compute_type # NOQA
:38

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_linalg import matmul # NOQA
:39

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_linalg import set_compute_type # NOQA
:40

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_linalg import tensordot_core # NOQA
:41

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_logic import create_comparison # NOQA
:42

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_logic import equal # NOQA
:43

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_logic import greater # NOQA
:44

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_logic import greater_equal # NOQA
:45

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_logic import less # NOQA
:46

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_logic import less_equal # NOQA
:47

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_logic import not_equal # NOQA
:48

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_manipulation import array_split # NOQA
:49

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_manipulation import broadcast # NOQA
:50

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_manipulation import broadcast_to # NOQA
:51

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_manipulation import concatenate_method # NOQA
:52

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_manipulation import moveaxis # NOQA
:53

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_manipulation import rollaxis # NOQA
:54

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_manipulation import size # NOQA
:55

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_math import absolute # NOQA
:56

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_math import add # NOQA
:57

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_math import angle, angle_deg # NOQA
:58

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_math import conjugate # NOQA
:59

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_math import divide # NOQA
:60

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_math import floor_divide # NOQA
:61

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_math import multiply # NOQA
:62

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_math import negative # NOQA
:63

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_math import positive # NOQA
:64

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_math import power # NOQA
:65

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_math import remainder # NOQA
:66

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_math import sqrt # NOQA
:67

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_math import subtract # NOQA
:68

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_math import true_divide # NOQA
:69

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_statistics import nanmax # NOQA
:70

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_statistics import nanmin # NOQA
:71

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.core import _internal_ascontiguousarray # NOQA
:72

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.core import _internal_asfortranarray # NOQA
:73

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.core import array # NOQA
:74

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.core import ascontiguousarray # NOQA
:75

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.core import asfortranarray # NOQA
:76

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.core import divmod # NOQA
:77

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.core import elementwise_copy # NOQA
:78

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.core import ndarray # NOQA
:79

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.dlpack import fromDlpack # NOQA
:80

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.dlpack import from_dlpack # NOQA
:81

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.internal import complete_slice # NOQA
:82

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.internal import get_size # NOQA
:83

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.raw import RawKernel # NOQA
:84

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.raw import RawModule # NOQA
:85

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_core/_fusion_interface.py· 5
B
CuPy dependency
from cupy._core._dtype import get_dtype
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _fusion_thread_local
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import core
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._scalar import get_typename
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_core/_fusion_op.py· 8
B
CuPy dependency
from cupy._core import _codeblock
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._fusion_variable import _TraceVariable
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._fusion_variable import _TraceArray
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._fusion_variable import _VariableSet
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _fusion_thread_local
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _kernel
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _reduction
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._scalar import get_typename
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_core/_fusion_optimization.py· 2
B
CuPy dependency
from cupy._core import _fusion_variable
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _fusion_op
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_core/_gufuncs.py· 5
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy._core._routines_manipulation as _manipulation
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.internal import _normalize_axis_indices
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._dtype import get_dtype, _raise_if_invalid_cast
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_core/_ufuncs.py· 2
B
CuPy dependency
from cupy._core._kernel import create_ufunc
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._util import bf16_loop
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_core/include/cupy/atomics.cuh· 1
B
Custom CUDA kernels (.cu/.cuh)
CUDA kernel source
file

Hand-written .cu/.cuh kernels compile only with nvcc. AMD's HIPify tools translate the vast majority of CUDA C++ to HIP automatically.

RecommendRun hipify-perl over the .cu/.cuh sources and build with hipcc.

cupy/_core/include/cupy/bfloat16.cuh· 1
B
Custom CUDA kernels (.cu/.cuh)
CUDA kernel source
file

Hand-written .cu/.cuh kernels compile only with nvcc. AMD's HIPify tools translate the vast majority of CUDA C++ to HIP automatically.

RecommendRun hipify-perl over the .cu/.cuh sources and build with hipcc.

cupy/_core/include/cupy/carray.cuh· 1
B
Custom CUDA kernels (.cu/.cuh)
CUDA kernel source
file

Hand-written .cu/.cuh kernels compile only with nvcc. AMD's HIPify tools translate the vast majority of CUDA C++ to HIP automatically.

RecommendRun hipify-perl over the .cu/.cuh sources and build with hipcc.

cupy/_core/include/cupy/complex.cuh· 1
B
Custom CUDA kernels (.cu/.cuh)
CUDA kernel source
file

Hand-written .cu/.cuh kernels compile only with nvcc. AMD's HIPify tools translate the vast majority of CUDA C++ to HIP automatically.

RecommendRun hipify-perl over the .cu/.cuh sources and build with hipcc.

cupy/_core/include/cupy/float16.cuh· 1
B
Custom CUDA kernels (.cu/.cuh)
CUDA kernel source
file

Hand-written .cu/.cuh kernels compile only with nvcc. AMD's HIPify tools translate the vast majority of CUDA C++ to HIP automatically.

RecommendRun hipify-perl over the .cu/.cuh sources and build with hipcc.

cupy/_core/include/cupy/hip_workaround.cuh· 1
B
Custom CUDA kernels (.cu/.cuh)
CUDA kernel source
file

Hand-written .cu/.cuh kernels compile only with nvcc. AMD's HIPify tools translate the vast majority of CUDA C++ to HIP automatically.

RecommendRun hipify-perl over the .cu/.cuh sources and build with hipcc.

cupy/_core/include/cupy/structview.cuh· 1
B
Custom CUDA kernels (.cu/.cuh)
CUDA kernel source
file

Hand-written .cu/.cuh kernels compile only with nvcc. AMD's HIPify tools translate the vast majority of CUDA C++ to HIP automatically.

RecommendRun hipify-perl over the .cu/.cuh sources and build with hipcc.

cupy/_core/include/cupy/type_dispatcher.cuh· 1
B
Custom CUDA kernels (.cu/.cuh)
CUDA kernel source
file

Hand-written .cu/.cuh kernels compile only with nvcc. AMD's HIPify tools translate the vast majority of CUDA C++ to HIP automatically.

RecommendRun hipify-perl over the .cu/.cuh sources and build with hipcc.

cupy/_core/include/cupy/unstructured_void.cuh· 1
B
Custom CUDA kernels (.cu/.cuh)
CUDA kernel source
file

Hand-written .cu/.cuh kernels compile only with nvcc. AMD's HIPify tools translate the vast majority of CUDA C++ to HIP automatically.

RecommendRun hipify-perl over the .cu/.cuh sources and build with hipcc.

cupy/_creation/basic.py· 3
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.internal import _get_strides_for_order_K, _update_order_char
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.typing._types import (
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_creation/from_data.py· 2
B
CuPy dependency
from cupy import _core
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import fusion
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_creation/matrix.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_creation/ranges.py· 3
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._util import bf16_loop
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_functional/piecewise.py· 2
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_functional/vectorize.py· 1
B
CuPy dependency
from cupy import _core
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_indexing/generate.py· 3
B
CuPy dependency
import cupy
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation import from_data
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation import join
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_indexing/indexing.py· 2
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_indexing/insert.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_indexing/iterate.py· 3
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_io/formatting.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_io/npz.py· 1
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_io/text.py· 1
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_logic/comparison.py· 3
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic import content
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_logic/content.py· 3
B
CuPy dependency
from cupy import _core
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._util import bf16_loop
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_logic/ops.py· 2
B
CuPy dependency
from cupy._core import _kernel
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _routines_logic
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_logic/truth.py· 5
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _routines_logic as _logic
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _fusion_thread_local
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting import search as _search
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _util
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_logic/type_testing.py· 1
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_manipulation/add_remove.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_manipulation/basic.py· 5
B
CuPy dependency
from cupy import _core
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _fusion_interface
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import fusion
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting import search
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import stream
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_manipulation/dims.py· 3
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy._core._routines_manipulation as _manipulation
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_manipulation/join.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_manipulation/kind.py· 2
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_manipulation/rearrange.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_manipulation/shape.py· 1
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_manipulation/split.py· 1
B
CuPy dependency
from cupy import _core
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_manipulation/tiling.py· 2
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_manipulation/transpose.py· 2
B
CuPy dependency
from cupy import _core
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _routines_manipulation
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_math/arithmetic.py· 3
B
CuPy dependency
from cupy import _core
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import fusion
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._util import bf16_loop
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_math/explog.py· 3
B
CuPy dependency
from cupy import _core
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math import ufunc
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._util import bf16_loop
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_math/floating.py· 3
B
CuPy dependency
from cupy import _core
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math import ufunc
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._util import bf16_loop
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_math/hyperbolic.py· 1
B
CuPy dependency
from cupy._math import ufunc
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_math/misc.py· 6
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _routines_math as _math
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import fusion
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.lib import stride_tricks
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._util import bf16_loop
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_math/rational.py· 1
B
CuPy dependency
from cupy import _core
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_math/rounding.py· 4
B
CuPy dependency
from cupy import _core
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import fusion
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math import ufunc
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._util import bf16_loop
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_math/special.py· 3
B
CuPy dependency
from cupy import _core
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math import ufunc
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._util import bf16_loop
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_math/sumprod.py· 4
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _routines_math as _math
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _fusion_thread_local
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_math/trigonometric.py· 5
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math import sumprod
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math import ufunc
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._util import bf16_loop
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_math/ufunc.py· 2
B
CuPy dependency
from cupy import _core
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._util import bf16_loop
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_math/window.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_misc/byte_bounds.py· 1
B
CuPy dependency
from cupy._core._memory_range import get_bound as _get_bounds
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_misc/memory_ranges.py· 4
B
CuPy dependency
from cupy._core import _kernel
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _memory_range
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._manipulation import join
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._sorting import search
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_misc/who.py· 1
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_padding/pad.py· 1
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_sorting/count.py· 1
B
CuPy dependency
from cupy import _core
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_sorting/search.py· 6
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import fusion
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _util
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _routines_indexing as _indexing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _routines_statistics as _statistics
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_sorting/sort.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import thrust
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_statistics/correlation.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_statistics/histogram.py· 6
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _accelerator
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cub
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import common
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_statistics/meanvar.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _routines_statistics as _statistics
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/_statistics/order.py· 5
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _routines_statistics as _statistics
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _fusion_thread_local
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic import content
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/cublas.py· 4
B
CuPy dependency
import cupy
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import _util
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/cuda/cupy_cub.cu· 1
B
Custom CUDA kernels (.cu/.cuh)
CUDA kernel source
file

Hand-written .cu/.cuh kernels compile only with nvcc. AMD's HIPify tools translate the vast majority of CUDA C++ to HIP automatically.

RecommendRun hipify-perl over the .cu/.cuh sources and build with hipcc.

cupy/cuda/cupy_cufftXt.cu· 1
B
Custom CUDA kernels (.cu/.cuh)
CUDA kernel source
file

Hand-written .cu/.cuh kernels compile only with nvcc. AMD's HIPify tools translate the vast majority of CUDA C++ to HIP automatically.

RecommendRun hipify-perl over the .cu/.cuh sources and build with hipcc.

cupy/cuda/cupy_thrust.cu· 1
B
Custom CUDA kernels (.cu/.cuh)
CUDA kernel source
file

Hand-written .cu/.cuh kernels compile only with nvcc. AMD's HIPify tools translate the vast majority of CUDA C++ to HIP automatically.

RecommendRun hipify-perl over the .cu/.cuh sources and build with hipcc.

cupy/cuda/cutensor.py· 1
B
CuPy dependency
from cupy._environment import _preload_warning
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/cuda/memory_hooks/__init__.py· 4
B
CuPy dependency
from cupy.cuda.memory_hooks import debug_print # NOQA
:1

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory_hooks import line_profile # NOQA
:2

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory_hooks.debug_print import DebugPrintHook # NOQA
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory_hooks.line_profile import LineProfileHook # NOQA
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/cuda/memory_hooks/debug_print.py· 1
B
CuPy dependency
from cupy.cuda import memory_hook
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/cuda/memory_hooks/line_profile.py· 1
B
CuPy dependency
from cupy.cuda import memory_hook
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/cuda/nccl.py· 1
B
CuPy dependency
from cupy import _environment
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/fft/__init__.py· 19
B
CuPy dependency
from cupy.fft._config import config # NOQA
:1

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import fft # NOQA
:2

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import fft2 # NOQA
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import fftfreq # NOQA
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import fftn # NOQA
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import fftshift # NOQA
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import hfft # NOQA
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import ifft # NOQA
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import ifft2 # NOQA
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import ifftn # NOQA
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import ifftshift # NOQA
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import ihfft # NOQA
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import irfft # NOQA
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import irfft2 # NOQA
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import irfftn # NOQA
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import rfft # NOQA
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import rfft2 # NOQA
:17

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import rfftfreq # NOQA
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import rfftn # NOQA
:19

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/fft/_config.py· 3
B
CuPy dependency
from cupy import _util
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._cache import (get_plan_cache,
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._callback import (
:19

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/fft/_fft.py· 20
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft import config
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._cache import get_plan_cache
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:65

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:85

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:334

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:499

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:637

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:702

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:726

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:750

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:776

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:802

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:828

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:855

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:883

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:910

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:939

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:967

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:1005

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/lib/__init__.py· 1
B
CuPy dependency
from cupy.lib import stride_tricks # NOQA
:1

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/lib/_routines_poly.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import RankWarning
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/lib/_shape_base.py· 2
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/lib/stride_tricks.py· 1
B
CuPy dependency
import cupy as _cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/linalg/__init__.py· 22
B
CuPy dependency
from cupy.linalg._product import matrix_power # NOQA
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._product import linalg_cross as cross # NOQA
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._product import matmul # NOQA
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._product import matrix_transpose # NOQA
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._decomposition import cholesky # NOQA
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._decomposition import qr # NOQA
:19

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._decomposition import svd # NOQA
:20

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._eigenvalue import eigh # NOQA
:25

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._eigenvalue import eig # NOQA
:26

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._eigenvalue import eigvalsh # NOQA
:27

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._eigenvalue import eigvals # NOQA
:28

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._norms import norm # NOQA
:33

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._norms import cond # NOQA
:34

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._norms import det # NOQA
:35

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._norms import matrix_rank # NOQA
:36

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._norms import slogdet # NOQA
:37

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._solve import solve # NOQA
:42

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._solve import tensorsolve # NOQA
:43

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._solve import lstsq # NOQA
:44

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._solve import inv # NOQA
:45

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._solve import pinv # NOQA
:46

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._solve import tensorinv # NOQA
:47

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/linalg/_decomposition.py· 4
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import _util
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/linalg/_eigenvalue.py· 5
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import _util
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _dtype
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/linalg/_einsum_cutn.py· 4
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _util
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _accelerator
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.device import Handle
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/linalg/_einsum.py· 6
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _accelerator
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _util
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._einsum_opt import _greedy_path
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._einsum_opt import _optimal_path
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg._einsum_cutn import _try_use_cutensornet
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/linalg/_norms.py· 4
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import _decomposition
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import _util
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/linalg/_product.py· 6
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._gufuncs import _GUFunc
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import _solve
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import _util
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/linalg/_solve.py· 6
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import _decomposition
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import _util
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cublas import batched_gesv, get_batched_gesv_limit
:38

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/linalg/_util.py· 3
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy._util
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/polynomial/__init__.py· 2
B
CuPy dependency
from cupy.polynomial import polynomial # NOQA
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.polynomial import polyutils # NOQA
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/polynomial/polynomial.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/polynomial/polyutils.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/random/__init__.py· 58
B
CuPy dependency
import cupy as _cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._generator_api import Generator
:38

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy.random._generator_api
:55

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import beta # NOQA
:63

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import binomial # NOQA
:64

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import chisquare # NOQA
:65

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import dirichlet # NOQA
:66

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import exponential # NOQA
:67

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import f # NOQA
:68

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import gamma # NOQA
:69

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import geometric # NOQA
:70

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import gumbel # NOQA
:71

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import hypergeometric # NOQA
:72

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import laplace # NOQA
:73

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import logistic # NOQA
:74

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import lognormal # NOQA
:75

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import logseries # NOQA
:76

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import multivariate_normal # NOQA
:77

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import negative_binomial # NOQA
:78

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import noncentral_chisquare # NOQA
:79

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import noncentral_f # NOQA
:80

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import normal # NOQA
:81

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import pareto # NOQA
:82

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import poisson # NOQA
:83

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import power # NOQA
:84

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import rayleigh # NOQA
:85

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import standard_cauchy # NOQA
:86

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import standard_exponential # NOQA
:87

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import standard_gamma # NOQA
:88

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import standard_normal # NOQA
:89

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import standard_t # NOQA
:90

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import triangular # NOQA
:91

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import uniform # NOQA
:92

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import vonmises # NOQA
:93

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import wald # NOQA
:94

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import weibull # NOQA
:95

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._distributions import zipf # NOQA
:96

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._generator import get_random_state # NOQA
:97

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._generator import RandomState # NOQA
:98

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._generator import reset_states # NOQA
:99

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._generator import seed # NOQA
:100

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._generator import set_random_state # NOQA
:101

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._permutations import permutation # NOQA
:102

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._permutations import shuffle # NOQA
:103

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._sample import choice # NOQA
:104

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._sample import multinomial # NOQA
:105

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._sample import rand # NOQA
:106

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._sample import randint # NOQA
:107

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._sample import randn # NOQA
:108

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._sample import random_integers # NOQA
:109

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._sample import random_sample # NOQA
:110

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._sample import random_sample as random # NOQA
:111

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._sample import random_sample as ranf # NOQA
:112

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._sample import random_sample as sample # NOQA
:113

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._bit_generator import BitGenerator # NOQA
:114

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._bit_generator import XORWOW # NOQA
:115

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._bit_generator import MRG32k3a # NOQA
:116

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._bit_generator import Philox4x3210 # NOQA
:117

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/random/_distributions.py· 2
B
CuPy dependency
from cupy.random import _generator
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _util
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/random/_generator.py· 7
B
CuPy dependency
import cupy
:17

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cuda
:19

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device
:20

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random import _kernels
:21

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random._generator_api import FeistelBijection
:22

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _util
:23

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/random/_kernels.py· 1
B
CuPy dependency
from cupy import _core
:65

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/random/_permutations.py· 1
B
CuPy dependency
from cupy.random import _generator
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/random/_sample.py· 4
B
CuPy dependency
from cupy import _core
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation import basic
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random import _distributions
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random import _generator
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/random/cupy_distributions.cu· 1
B
Custom CUDA kernels (.cu/.cuh)
CUDA kernel source
file

Hand-written .cu/.cuh kernels compile only with nvcc. AMD's HIPify tools translate the vast majority of CUDA C++ to HIP automatically.

RecommendRun hipify-perl over the .cu/.cuh sources and build with hipcc.

cupy/random/cupy_distributions.cuh· 1
B
Custom CUDA kernels (.cu/.cuh)
CUDA kernel source
file

Hand-written .cu/.cuh kernels compile only with nvcc. AMD's HIPify tools translate the vast majority of CUDA C++ to HIP automatically.

RecommendRun hipify-perl over the .cu/.cuh sources and build with hipcc.

cupy/testing/__init__.py· 51
B
CuPy dependency
from cupy.testing._array import assert_allclose # NOQA
:1

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._array import assert_array_almost_equal # NOQA
:2

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._array import assert_array_almost_equal_nulp # NOQA
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._array import assert_array_equal # NOQA
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._array import assert_array_less # NOQA
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._array import assert_array_list_equal # NOQA
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._array import assert_array_max_ulp # NOQA
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._attr import multi_gpu # NOQA
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._attr import slow # NOQA
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._helper import assert_warns # NOQA
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._helper import numpy_satisfies # NOQA
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._helper import NumpyAliasBasicTestBase # NOQA
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._helper import NumpyAliasValuesTestBase # NOQA
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._helper import AssertFunctionIsCalled # NOQA
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._helper import shaped_arange # NOQA
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._helper import shaped_linspace # NOQA
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._helper import shaped_sparse_random # NOQA
:17

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._helper import shaped_random # NOQA
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._helper import generate_matrix # NOQA
:19

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._helper import shaped_reverse_arange # NOQA
:20

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._helper import with_requires # NOQA
:21

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._helper import installed # NOQA
:22

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import for_all_dtypes # NOQA
:23

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import for_all_dtypes_combination # NOQA
:24

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import for_CF_orders # NOQA
:25

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import for_complex_dtypes # NOQA
:26

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import for_contiguous_axes # NOQA
:27

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import for_dtypes # NOQA
:28

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import for_dtypes_combination # NOQA
:29

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import for_float_dtypes # NOQA
:30

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import for_int_dtypes # NOQA
:31

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import for_int_dtypes_combination # NOQA
:32

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import for_orders # NOQA
:33

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import for_signed_dtypes # NOQA
:34

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import for_signed_dtypes_combination # NOQA
:35

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import for_unsigned_dtypes # NOQA
:36

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import for_unsigned_dtypes_combination # NOQA
:37

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import numpy_cupy_allclose # NOQA
:38

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import numpy_cupy_array_almost_equal # NOQA
:39

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import numpy_cupy_array_almost_equal_nulp # NOQA
:40

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import numpy_cupy_array_equal # NOQA
:41

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import numpy_cupy_array_less # NOQA
:42

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import numpy_cupy_array_list_equal # NOQA
:43

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import numpy_cupy_array_max_ulp # NOQA
:44

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import numpy_cupy_equal # NOQA
:45

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import numpy_cupy_raises # NOQA
:46

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._parameterized import parameterize # NOQA
:47

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._parameterized import product # NOQA
:48

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._parameterized import product_dict # NOQA
:49

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._random import fix_random # NOQA
:50

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._random import generate_seed # NOQA
:51

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/testing/_array.py· 1
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/testing/_attr.py· 1
B
CuPy dependency
from cupy.testing._pytest_impl import is_available, check_available
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/testing/_helper.py· 3
B
CuPy dependency
import cupy
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._pytest_impl import is_available
:17

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/testing/_loops.py· 5
B
CuPy dependency
import cupy
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import AxisError
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import _array
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import _parameterized
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._pytest_impl import is_available
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/testing/_parameterized.py· 2
B
CuPy dependency
from cupy.testing import _bundle
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import _pytest_impl
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/testing/_protocol_helpers.py· 2
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cuda
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/testing/_pytest_impl.py· 1
B
CuPy dependency
import cupy.testing._parameterized
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/testing/_random.py· 1
B
CuPy dependency
import cupy
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/typing/__init__.py· 4
B
CuPy dependency
from cupy.typing._types import ArrayLike # NOQA
:1

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.typing._types import DTypeLike # NOQA
:2

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.typing._types import NBitBase # NOQA
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.typing._types import NDArray # NOQA
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupy/typing/_types.py· 1
B
CuPy dependency
from cupy._core import core
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/__init__.py· 2
B
CuPy dependency
from cupy._core.syncdetect import allow_synchronize # NOQA
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.syncdetect import DeviceSynchronized # NOQA
:19

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/_gufunc.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/_pinned_array.py· 3
B
CuPy dependency
from cupy import cuda
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation.basic import _new_like_order_and_strides
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/_rsqrt.py· 1
B
CuPy dependency
from cupy._core.core import create_ufunc
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/_texture.py· 4
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import texture
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/cusparse.py· 5
B
CuPy dependency
import cupy as _cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _dtype
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device as _device
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import stream as _stream
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _util
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/distributed/_init.py· 1
B
CuPy dependency
from cupy.cuda import nccl
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/distributed/_nccl_comm.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import nccl
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/distributed/array/_array.py· 8
B
CuPy dependency
import cupy
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.core import ndarray
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy._creation.from_data as _creation_from_data
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy._core._routines_math as _math
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy._core._routines_statistics as _statistics
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.device import Device
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.stream import Stream
:17

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.stream import get_current_stream
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/distributed/array/_chunk.py· 7
B
CuPy dependency
from cupy._core.core import ndarray
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy._creation.basic as _creation_basic
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy._manipulation.dims as _manipulation_dims
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.device import Device
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.stream import Event
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.stream import Stream
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.stream import get_current_stream
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/distributed/array/_data_transfer.py· 9
B
CuPy dependency
from cupy._core.core import ndarray
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy._creation.from_data as _creation_from_data
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy._creation.basic as _creation_basic
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.device import Device
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.stream import Event
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.stream import Stream
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.stream import get_current_stream
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import nccl
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.nccl import NcclCommunicator as _Communicator
:20

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/distributed/array/_elementwise.py· 6
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy._creation.basic as _creation_basic
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.core import ndarray
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.device import Device
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.stream import Stream
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.stream import get_current_stream
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/distributed/array/_linalg.py· 1
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/distributed/array/_modes.py· 1
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/distributed/array/_reduction.py· 1
B
CuPy dependency
import cupy._manipulation.dims as _manipulation_dims
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/jit/_builtin_funcs.py· 3
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

A
Device string "cuda"
elif env.mode == 'cuda':
:104

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

cupyx/jit/_compile.py· 4
B
CuPy dependency
from cupy.exceptions import ComplexWarning
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._codeblock import CodeBlock, _CodeType
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _kernel
:19

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._dtype import _raise_if_invalid_cast
:20

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/jit/_cuda_typerules.py· 8
B
CuPy dependency
import cupy
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic import ops
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math import arithmetic
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._logic import comparison
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._binary import elementwise
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

A
Device string "cuda"
if mode == 'cuda':
:106

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
if mode == 'cuda':
:125

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

cupyx/jit/_cuda_types.py· 2
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._scalar import get_typename
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/jit/_interface.py· 7
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import core
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.compiler import _get_arch
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.compiler import _get_nvrtc_version
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.compiler import _jitify_prep
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.compiler import _NVRTCProgram
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

A
Device string "cuda"
def rawkernel(*, mode='cuda', device=False):
:244

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

cupyx/jit/cg.py· 1
B
CuPy dependency
from cupy.cuda import runtime as _runtime
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/lapack.py· 2
B
CuPy dependency
import cupy as _cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device as _device
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/linalg/_solve.py· 2
B
CuPy dependency
from cupy.linalg import _util
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/linalg/sparse/_solve.py· 3
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import _util
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/optimizing/_optimize.py· 1
B
CuPy dependency
from cupy._core import _optimize_config
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/profiler/__init__.py· 1
B
CuPy dependency
from cupy.cuda import runtime as _runtime
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/profiler/_time_range.py· 1
B
CuPy dependency
from cupy import cuda
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/profiler/_time.py· 1
B
CuPy dependency
import cupy as _cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/__init__.py· 1
B
CuPy dependency
from cupy._core import ndarray as _ndarray
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/_lib/_util.py· 1
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/fft/__init__.py· 1
B
CuPy dependency
from cupy.fft import fftshift, ifftshift, fftfreq, rfftfreq
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/fft/_fft.py· 10
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import _fft, _default_fft_func, _swap_direction
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:96

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:130

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:229

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:267

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:309

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:344

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:452

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:494

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/fft/_fftlog.py· 1
B
CuPy dependency
import cupy
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/fft/_realtransforms.py· 4
B
CuPy dependency
import cupy
:40

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:41

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import _cook_shape
:42

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import AxisError
:44

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/fftpack/_fft.py· 13
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft import config
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import (_convert_fft_type, _default_fft_func, _fft,
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._cache import get_plan_cache
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:66

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:200

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:234

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:268

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:304

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:340

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:376

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:419

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:470

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/interpolate/_bspline.py· 3
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._scalar import get_typename
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/interpolate/_bspline2.py· 2
B
CuPy dependency
import cupy
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import solve
:475

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/interpolate/_cubic.py· 3
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import solve
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.misc import _legacy_sign
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/interpolate/_fitpack_repro.py· 1
B
CuPy dependency
import cupy
:26

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/interpolate/_interpnd.py· 2
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._scalar import get_typename
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/interpolate/_interpolate.py· 3
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal # NOQA
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._scalar import get_typename # NOQA
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/interpolate/_ndbspline.py· 1
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/interpolate/_ndgriddata.py· 1
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/interpolate/_polyint.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/interpolate/_rbfinterp.py· 1
B
CuPy dependency
import cupy as cp
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/interpolate/_rgi.py· 1
B
CuPy dependency
import cupy as cp
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/linalg/_array_utils.py· 2
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import _util
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/linalg/_decomp_lu.py· 5
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cublas
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import _util
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/linalg/_matfuncs.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import _util
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/linalg/_solve_triangular.py· 4
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cublas
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import _util
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/linalg/_special_matrices.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/linalg/_uarray.py· 2
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy.linalg as _cp_linalg
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/ndimage/_filters_core.py· 3
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/ndimage/_filters_generic.py· 2
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _util
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/ndimage/_filters.py· 3
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/ndimage/_fourier.py· 3
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/ndimage/_interp_kernels.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy._core.internal
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/ndimage/_interpolation.py· 4
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/ndimage/_measurements.py· 3
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _util
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/ndimage/_morphology.py· 2
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/ndimage/_pba_2d.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

A
Device string "cuda"
kernel_directory = os.path.join(os.path.dirname(__file__), "cuda")
:72

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

cupyx/scipy/ndimage/_pba_3d.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

A
Device string "cuda"
kernel_directory = os.path.join(os.path.dirname(__file__), "cuda")
:80

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

cupyx/scipy/ndimage/_spline_prefilter_core.py· 1
B
CuPy dependency
import cupy
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/ndimage/_util.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import AxisError
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_arraytools.py· 1
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_bsplines.py· 1
B
CuPy dependency
import cupy
:32

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_czt.py· 1
B
CuPy dependency
import cupy
:35

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_filter_design.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.polynomial.polynomial import (
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_fir_filter_design.py· 3
B
CuPy dependency
from cupy.fft import fft, ifft
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import solve, lstsq, LinAlgError
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_iir_filter_conversions.py· 1
B
CuPy dependency
import cupy
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_iir_filter_design.py· 1
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_iir_utils.py· 3
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.internal import _normalize_axis_index
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._scalar import get_typename
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_lti_conversion.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_ltisys.py· 1
B
CuPy dependency
import cupy
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_max_len_seq.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_optimize.py· 1
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_peak_finding.py· 2
B
CuPy dependency
import cupy
:31

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._scalar import get_typename
:33

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_polyutils.py· 1
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_resample.py· 1
B
CuPy dependency
import cupy
:34

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_savitzky_golay.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import lstsq
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_signaltools_core.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_signaltools.py· 3
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import lstsq
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_spectral_impl.py· 1
B
CuPy dependency
import cupy
:32

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_spectral.py· 1
B
CuPy dependency
import cupy
:31

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_splines.py· 3
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._scalar import get_typename
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core.internal import _normalize_axis_index
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_upfirdn.py· 1
B
CuPy dependency
import cupy
:31

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_waveforms.py· 2
B
CuPy dependency
import cupy
:30

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._scalar import get_typename
:31

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/_wavelets.py· 1
B
CuPy dependency
import cupy
:31

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/signal/windows/_windows.py· 1
B
CuPy dependency
import cupy
:32

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/sparse/_base.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/sparse/_compressed.py· 4
B
CuPy dependency
import cupy
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _scalar
:17

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation import basic
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/sparse/_construct.py· 1
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/sparse/_coo.py· 2
B
CuPy dependency
import cupy
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/sparse/_csc.py· 1
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/sparse/_csr.py· 2
B
CuPy dependency
import cupy
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/sparse/_data.py· 3
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import internal
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _util
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/sparse/_dia.py· 2
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/sparse/_extract.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/sparse/_index.py· 4
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/sparse/_sputils.py· 2
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._dtype import get_dtype
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/sparse/_util.py· 2
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import core
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/sparse/csgraph/_traversal.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/sparse/linalg/_eigen.py· 4
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cublas
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _dtype
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/sparse/linalg/_interface.py· 1
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/sparse/linalg/_iterative.py· 4
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cublas
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _dtype
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/sparse/linalg/_lobpcg.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy.linalg as linalg
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/sparse/linalg/_norm.py· 1
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/sparse/linalg/_solve.py· 5
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cublas
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import _util
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/spatial/_delaunay.py· 1
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/spatial/_kdtree_utils.py· 2
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._scalar import get_typename
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/spatial/_kdtree.py· 1
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/spatial/delaunay_2d/_kernels.py· 1
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/spatial/delaunay_2d/_tri.py· 1
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/spatial/distance.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/__init__.py· 2
B
CuPy dependency
from cupy._math.rounding import round # NOQA
:115

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._math.special import sinc # NOQA
:119

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_basic.py· 1
B
CuPy dependency
from cupy import _core
:28

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_bessel.py· 1
B
CuPy dependency
from cupy import _core
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_beta.py· 1
B
CuPy dependency
from cupy import _core
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_binom.py· 1
B
CuPy dependency
from cupy import _core
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_convex_analysis.py· 1
B
CuPy dependency
from cupy import _core
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_digamma.py· 1
B
CuPy dependency
from cupy import _core
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_ellip.py· 1
B
CuPy dependency
from cupy import _core
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_erf.py· 1
B
CuPy dependency
from cupy import _core
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_exp1.py· 1
B
CuPy dependency
from cupy import _core # NOQA
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_expi.py· 1
B
CuPy dependency
from cupy import _core # NOQA
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_expn.py· 1
B
CuPy dependency
from cupy import _core
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_gamma.py· 1
B
CuPy dependency
from cupy import _core
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_gammainc.py· 1
B
CuPy dependency
from cupy import _core
:22

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_gammaln.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_gammasgn.py· 1
B
CuPy dependency
from cupy import _core
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_lambertw.py· 1
B
CuPy dependency
from cupy import _core
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_loggamma.py· 1
B
CuPy dependency
from cupy import _core
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_logsoftmax.py· 1
B
CuPy dependency
import cupy as cp
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_logsumexp.py· 1
B
CuPy dependency
import cupy as cp
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_lpmv.py· 1
B
CuPy dependency
from cupy import _core
:22

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_poch.py· 1
B
CuPy dependency
from cupy import _core
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_polygamma.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_sici.py· 1
B
CuPy dependency
from cupy import _core
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_softmax.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_sph_harm.py· 1
B
CuPy dependency
from cupy import _core
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_spherical_bessel.py· 2
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_statistics.py· 1
B
CuPy dependency
from cupy import _core
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_stats_distributions.py· 1
B
CuPy dependency
from cupy import _core
:20

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_wright_bessel.py· 1
B
CuPy dependency
from cupy import _core
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_xlogy.py· 1
B
CuPy dependency
from cupy import _core
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_zeta.py· 1
B
CuPy dependency
from cupy import _core
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/special/_zetac.py· 1
B
CuPy dependency
from cupy import _core
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/stats/_distributions.py· 1
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/stats/_morestats.py· 1
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/stats/_stats_py.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/scipy/stats/_stats.py· 1
B
CuPy dependency
import cupy as cp
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/signal/_acoustics/_cepstrum.py· 1
B
CuPy dependency
import cupy
:23

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/signal/_convolution/_convolve.py· 1
B
CuPy dependency
import cupy
:28

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/signal/_filtering/_filtering.py· 3
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._scalar import get_typename
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _util
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/signal/_radartools/_beamformers.py· 1
B
CuPy dependency
import cupy as cp
:23

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/signal/_radartools/_radartools.py· 1
B
CuPy dependency
import cupy
:28

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

cupyx/time.py· 1
B
CuPy dependency
import cupy as _cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

docs/source/conf.py· 1
B
CuPy dependency
import cupy
:21

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/cg/cg.py· 1
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/cufft/callback/jit_r2c_c2r_string.py· 1
B
CuPy dependency
import cupy as cp
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/cufft/callback/jit_string.py· 1
B
CuPy dependency
import cupy as cp
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/cufft/callback/jit_string2.py· 1
B
CuPy dependency
import cupy as cp
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/cufft/callback/legacy.py· 1
B
CuPy dependency
import cupy as cp
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/cusparselt/matmul.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/custom_struct/builtin_vectors.py· 1
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/custom_struct/complex_struct.py· 1
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/custom_struct/packed_matrix.py· 1
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/cutensor/contraction.py· 1
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/cutensor/elementwise_binary.py· 1
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/cutensor/elementwise_trinary.py· 1
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/cutensor/reduction.py· 1
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/finance/black_scholes.py· 1
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/finance/monte_carlo_multigpu.py· 1
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/finance/monte_carlo.py· 1
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/gemm/sgemm.cu· 1
B
Custom CUDA kernels (.cu/.cuh)
CUDA kernel source
file

Hand-written .cu/.cuh kernels compile only with nvcc. AMD's HIPify tools translate the vast majority of CUDA C++ to HIP automatically.

RecommendRun hipify-perl over the .cu/.cuh sources and build with hipcc.

examples/gemm/sgemm.py· 1
B
CuPy dependency
import cupy as cp
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/gemm/utils.py· 1
B
CuPy dependency
import cupy as cp
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/gmm/gmm.py· 1
B
CuPy dependency
import cupy
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/interoperability/mpi4py_multiple_devices.py· 1
B
CuPy dependency
import cupy
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/jit/elmentwise_op.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/jit/reduction_atomic.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/jit/reduction_simple.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/kmeans/kmeans.py· 1
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/peer/peer_matrix.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/stream/cublas.py· 1
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/stream/cufft.py· 1
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/stream/cupy_event.py· 1
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/stream/cupy_kernel.py· 1
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/stream/cupy_memcpy.py· 1
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/stream/curand.py· 1
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/stream/cusolver.py· 1
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/stream/cusparse.py· 1
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/stream/map_reduce.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

examples/stream/thrust.py· 1
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/conftest.py· 3
B
CuPy dependency
import cupy as cp
:77

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy._core.numpy_allocator as ac
:81

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.compiler import _set_kernel_cache_backend
:95

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/_gcp_kernel_cache_backend.py· 2
B
CuPy dependency
from cupy.cuda.compiler import _get_cupy_cache_key
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda._compiler_cache import DiskKernelCacheBackend # noqa
:36

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/binary_tests/test_elementwise.py· 1
B
CuPy dependency
from cupy import testing
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/binary_tests/test_packing.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/fusion_tests/fusion_utils.py· 3
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import _wraps_partial_xp
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/fusion_tests/test_array.py· 1
B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/fusion_tests/test_example.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/fusion_tests/test_indexing.py· 1
B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/fusion_tests/test_kernel_cache.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/fusion_tests/test_misc.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/fusion_tests/test_optimization.py· 2
B
CuPy dependency
import cupy # NOQA
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/fusion_tests/test_reduction.py· 3
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import AxisError
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/fusion_tests/test_routines.py· 1
B
CuPy dependency
from cupy import testing
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/fusion_tests/test_ufunc.py· 1
B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_array_function.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_bfloat16.py· 3
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_carray.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_core.py· 4
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import core
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._protocol_helpers import (
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_cub_reduction.py· 6
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _environment
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _accelerator
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _cub_reduction
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import memory
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_dlpack.py· 3
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cuda
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_elementwise.py· 4
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cuda
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_flags.py· 3
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import flags
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_function.py· 5
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import core
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import compiler
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_gufuncs.py· 3
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._gufuncs import _GUFunc
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_internal.py· 1
B
CuPy dependency
from cupy._core import internal
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_iter.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_mdspan.py· 3
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._scalar import get_typename
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_multithreading.py· 2
B
CuPy dependency
import cupy
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.memory import alloc
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_ndarray_adv_indexing.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_ndarray_byteswap.py· 1
B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_ndarray_complex_ops.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_ndarray_contiguity.py· 1
B
CuPy dependency
from cupy import testing
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_ndarray_conversion.py· 3
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_ndarray_copy_and_view.py· 5
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import ComplexWarning
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _util
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._protocol_helpers import (
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_ndarray_cuda_array_interface.py· 3
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_ndarray_get.py· 3
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cuda
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_ndarray_indexing.py· 4
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._protocol_helpers import (
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import ComplexWarning
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_ndarray_math.py· 1
B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_ndarray_owndata.py· 1
B
CuPy dependency
from cupy import _core
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_ndarray_reduction.py· 4
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy._core._accelerator as _acc
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _cub_reduction
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_ndarray_scatter.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_ndarray_ufunc.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_ndarray_unary_op.py· 2
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_ndarray.py· 7
B
CuPy dependency
import cupy
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _util
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cuda
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import get_array_module
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:17

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import AxisError
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_nep50_examples.py· 1
B
CuPy dependency
import cupy as cp
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_reduction.py· 6
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy._core._accelerator as _acc
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _core
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import ComplexWarning, AxisError
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._protocol_helpers import (
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_scan.py· 4
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cuda
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core._routines_math import _scan_for_test as scan
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_structured.py· 3
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._protocol_helpers import DummyObjectWithCudaArrayInterface
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_syncdetect.py· 1
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_ufunc_methods.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/core_tests/test_userkernel.py· 4
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.texture import (ChannelFormatDescriptor, CUDAarray,
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/creation_tests/test_basic.py· 3
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import ComplexWarning
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/creation_tests/test_from_data.py· 3
B
CuPy dependency
import cupy
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cuda, testing
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._protocol_helpers import (
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/creation_tests/test_matrix.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/creation_tests/test_ranges.py· 2
B
CuPy dependency
import cupy
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/memory_hooks_tests/test_debug_print.py· 3
B
CuPy dependency
import cupy.cuda
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import memory
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import memory_hooks
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/memory_hooks_tests/test_line_profile.py· 2
B
CuPy dependency
from cupy.cuda import memory
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import memory_hooks
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_compiler_cache.py· 1
B
CuPy dependency
from cupy.cuda._compiler_cache import (
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_compiler.py· 2
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import compiler
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_cublas.py· 1
B
CuPy dependency
from cupy.cuda import cublas
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_cufft.py· 5
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft import config
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import _convert_fft_type
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_curand.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import curand
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_cusolver.py· 1
B
CuPy dependency
from cupy import cuda
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_cusparse.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cusparse
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_cutensor.py· 1
B
CuPy dependency
from cupy.cuda import cutensor
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_device.py· 3
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cuda
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_driver.py· 3
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import driver
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_graph.py· 3
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cuda
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_memory_hook.py· 3
B
CuPy dependency
import cupy.cuda
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import memory
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import memory_hook
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_memory.py· 6
B
CuPy dependency
import cupy.cuda
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import memory
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import stream as stream_module
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:17

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_nccl.py· 4
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cuda
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import nccl
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_nvrtc.py· 1
B
CuPy dependency
from cupy.cuda import nvrtc
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_nvtx.py· 1
B
CuPy dependency
from cupy import cuda
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_pinned_memory.py· 1
B
CuPy dependency
from cupy.cuda import pinned_memory
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_profile.py· 1
B
CuPy dependency
from cupy import cuda
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_runtime.py· 3
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import driver
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_stream.py· 4
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._creation import from_data
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cuda
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/cuda_tests/test_texture.py· 4
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.texture import (ChannelFormatDescriptor, CUDAarray,
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/fft_tests/test_cache.py· 6
B
CuPy dependency
import cupy
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft import config
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/fft_tests/test_callback.py· 4
B
CuPy dependency
import cupy
:20

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:21

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cufft
:22

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.device import get_compute_capability
:23

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/fft_tests/test_fft.py· 10
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft import config
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import (_default_fft_func, _fft, _fftn,
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import _wraps_partial
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft import fftn
:556

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft import fft
:629

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft import fft
:698

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft import rfft
:848

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:1225

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/functional_tests/test_piecewise.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/functional_tests/test_vectorize.py· 3
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/indexing_tests/test_generate.py· 5
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import driver
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._indexing import generate
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/indexing_tests/test_indexing.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/indexing_tests/test_insert.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/indexing_tests/test_iterate.py· 3
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import ComplexWarning
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/io_tests/test_base_n.py· 1
B
CuPy dependency
from cupy import testing
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/io_tests/test_formatting.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/io_tests/test_npz.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/io_tests/test_text.py· 1
B
CuPy dependency
import cupy
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/lib_tests/test_polynomial.py· 5
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import driver
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import RankWarning
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/lib_tests/test_shape_base.py· 3
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import AxisError
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/lib_tests/test_strided_tricks.py· 3
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.lib import stride_tricks
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/linalg_tests/test_decomposition.py· 6
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import driver
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.linalg import _util
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import _condition
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/linalg_tests/test_eigenvalue.py· 4
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import driver
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/linalg_tests/test_einsum.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/linalg_tests/test_norms.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/linalg_tests/test_product.py· 2
B
CuPy dependency
import cupy
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/linalg_tests/test_solve.py· 4
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import _condition
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cublas import get_batched_gesv_limit, set_batched_gesv_limit
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/logic_tests/test_comparison.py· 2
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/logic_tests/test_content.py· 1
B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/logic_tests/test_ops.py· 1
B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/logic_tests/test_truth.py· 1
B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/logic_tests/test_type_test.py· 1
B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/manipulation_tests/test_add_remove.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/manipulation_tests/test_basic.py· 4
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cuda
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import ComplexWarning
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/manipulation_tests/test_dims.py· 4
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import AxisError
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/manipulation_tests/test_join.py· 4
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cuda
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import AxisError
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/manipulation_tests/test_kind.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/manipulation_tests/test_rearrange.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/manipulation_tests/test_shape.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/manipulation_tests/test_split.py· 1
B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/manipulation_tests/test_tiling.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/manipulation_tests/test_transpose.py· 3
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import AxisError
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/math_tests/test_arithmetic.py· 3
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import ComplexWarning
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/math_tests/test_explog.py· 1
B
CuPy dependency
from cupy import testing
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/math_tests/test_floating.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/math_tests/test_hyperbolic.py· 1
B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/math_tests/test_matmul.py· 3
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _routines_linalg as _linalg
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/math_tests/test_misc.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/math_tests/test_rational.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/math_tests/test_rounding.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/math_tests/test_special.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/math_tests/test_sumprod.py· 6
B
CuPy dependency
import cupy
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy._core._accelerator as _acc
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy.cuda.cutensor
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _cub_reduction
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import AxisError
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/math_tests/test_trigonometric.py· 1
B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/math_tests/test_window.py· 1
B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/misc_tests/test_byte_bounds.py· 2
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/misc_tests/test_memory_ranges.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/misc_tests/test_who.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/padding_tests/test_pad.py· 3
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import ComplexWarning
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/polynomial_tests/test_polynomial.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/polynomial_tests/test_polyutils.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/random_tests/common_distributions.py· 3
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import _condition
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/random_tests/test_bit_generator.py· 3
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import random
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/random_tests/test_distributions.py· 3
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random import _distributions
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/random_tests/test_generator_api.py· 4
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import random
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import _condition
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/random_tests/test_generator.py· 7
B
CuPy dependency
import cupy
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cuda
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.random import _generator
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import _condition
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import _hypothesis
:17

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/random_tests/test_init.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/random_tests/test_permutations.py· 3
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import _condition
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/random_tests/test_random.py· 2
B
CuPy dependency
from cupy import random
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/random_tests/test_sample.py· 6
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cuda
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import random
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import _condition
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import _hypothesis
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/sorting_tests/test_count.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/sorting_tests/test_search.py· 4
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy._core._accelerator as _acc
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _cub_reduction
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/sorting_tests/test_sort.py· 3
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import AxisError
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/statistics_tests/test_correlation.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/statistics_tests/test_histogram.py· 3
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _accelerator
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/statistics_tests/test_meanvar.py· 3
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import AxisError
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/statistics_tests/test_order.py· 4
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy._core._accelerator as _acc
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cuda
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/test_cublas.py· 3
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cublas
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/test_init.py· 2
B
CuPy dependency
import cupy
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:17

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/test_ndim.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/test_numpy_interop.py· 2
B
CuPy dependency
import cupy
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/test_type_routines.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/test_typing.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/testing_tests/test_array.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/testing_tests/test_condition.py· 1
B
CuPy dependency
from cupy.testing import _condition
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/testing_tests/test_helper.py· 3
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import AxisError
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/testing_tests/test_loops.py· 4
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import _loops
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import AxisError
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupy_tests/testing_tests/test_parameterized.py· 1
B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/distributed_tests/comm_runner.py· 4
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import cuda
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import nccl
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/distributed_tests/test_array_nccl.py· 2
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/distributed_tests/test_array_no_nccl.py· 1
B
CuPy dependency
import cupy.cuda
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/distributed_tests/test_comm.py· 2
B
CuPy dependency
from cupy.cuda import nccl
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/distributed_tests/test_linalg.py· 2
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/distributed_tests/test_store.py· 2
B
CuPy dependency
from cupy.cuda import nccl
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import _condition
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/jit_tests/test_cooperative_groups.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/jit_tests/test_cub.py· 2
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/jit_tests/test_device_function.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/jit_tests/test_raw.py· 4
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/jit_tests/test_thrust.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/linalg_tests/sparse_tests/__init__.py· 1
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/linalg_tests/sparse_tests/test_solve.py· 3
B
CuPy dependency
import cupy as cp
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:17

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import _condition
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/linalg_tests/test_solve.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/profiler_tests/test_benchmark.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/profiler_tests/test_time_range.py· 1
B
CuPy dependency
from cupy import cuda
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/profiler_tests/test_timeit_magic.py· 1
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/fft_tests/test_fft.py· 15
B
CuPy dependency
import cupy as cp
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import _default_fft_func, _fftn
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:121

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:240

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:376

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:492

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:633

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:749

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:878

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:949

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:1089

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:1210

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:1342

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:1463

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/fft_tests/test_fftlog.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/fft_tests/test_realtransforms.py· 1
B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/fftpack_tests/test_fftpack.py· 20
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.fft._fft import _default_fft_func, _fftn
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:90

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:166

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy
:183

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy.fft.config as config
:235

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy.fft.config as config
:255

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:277

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy.fft.config as config
:314

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy.fft.config as config
:334

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:356

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy.fft.config as config
:410

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy.fft.config as config
:430

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:452

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy.fft.config as config
:489

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy.fft.config as config
:509

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:531

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy
:543

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda.cufft import get_current_plan
:618

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/interpolate_tests/test_bspline.py· 1
B
CuPy dependency
from cupy import testing
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/interpolate_tests/test_bspline2.py· 4
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import assert_allclose
:654

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/interpolate_tests/test_fitpack2.py· 2
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/interpolate_tests/test_interpnd.py· 2
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/interpolate_tests/test_ndbspline.py· 3
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/interpolate_tests/test_ndgriddata.py· 2
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/interpolate_tests/test_polyint.py· 4
B
CuPy dependency
import cupy
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import assert_array_almost_equal
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/interpolate_tests/test_ppoly.py· 3
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import assert_allclose
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/interpolate_tests/test_rbfinterp.py· 2
B
CuPy dependency
import cupy as cp
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/interpolate_tests/test_rgi.py· 2
B
CuPy dependency
import cupy as cp
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import (assert_allclose, assert_array_equal,
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/linalg_tests/test_array_utils.py· 1
B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/linalg_tests/test_decomp_lu.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/linalg_tests/test_matfuncs.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/linalg_tests/test_solve_triangular.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/linalg_tests/test_special_matrices.py· 1
B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/linalg_tests/test_uarray.py· 1
B
CuPy dependency
from cupy import testing
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/ndimage_tests/test_distance_transform.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/ndimage_tests/test_filters.py· 4
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import AxisError
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/ndimage_tests/test_fourier.py· 3
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.exceptions import AxisError
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/ndimage_tests/test_interpolation.py· 3
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/ndimage_tests/test_measurements.py· 5
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import _util
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _accelerator
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/ndimage_tests/test_morphology.py· 2
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_bsplines.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_cont2discrete.py· 1
B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_czt.py· 3
B
CuPy dependency
import cupy
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import assert_allclose
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_dltisys.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_filter_design.py· 3
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import assert_array_almost_equal, assert_allclose
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_fir_filter_design.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_iir_filter_conversion.py· 3
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import assert_array_almost_equal
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_iir_filter_design.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_iir_utils.py· 4
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import driver
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_ltisys.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_max_len_seq.py· 2
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_peak_finding.py· 4
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import driver
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_polyutils.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_resample.py· 2
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_savitzky_golay.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import (assert_allclose, assert_array_equal as assert_equal,
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_signaltools.py· 4
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import driver
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_spectral.py· 4
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import driver
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_splines.py· 3
B
CuPy dependency
from cupy import testing
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import driver
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_upfirdn.py· 1
B
CuPy dependency
from cupy import testing
:46

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_waveforms.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_wavelets.py· 1
B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/signal_tests/test_windows.py· 1
B
CuPy dependency
from cupy import testing
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/sparse_tests/csgraph_tests/test_traversal.py· 1
B
CuPy dependency
from cupy import testing
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/sparse_tests/test_base.py· 2
B
CuPy dependency
import cupy
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/sparse_tests/test_construct.py· 3
B
CuPy dependency
import cupy
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:17

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/sparse_tests/test_coo.py· 4
B
CuPy dependency
import cupy
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import driver
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:17

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/sparse_tests/test_csc.py· 4
B
CuPy dependency
import cupy
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import driver
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:17

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/sparse_tests/test_csr.py· 2
B
CuPy dependency
import cupy
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:19

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/sparse_tests/test_dia.py· 4
B
CuPy dependency
import cupy
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import driver
:17

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/sparse_tests/test_extract.py· 2
B
CuPy dependency
import cupy
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/sparse_tests/test_index.py· 3
B
CuPy dependency
import cupy
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/sparse_tests/test_linalg.py· 5
B
CuPy dependency
import cupy
:16

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import driver
:19

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:20

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import _condition
:21

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/sparse_tests/test_sparray.py· 2
B
CuPy dependency
import cupy
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:13

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/sparse_tests/test_sparse_int64_indices.py· 4
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:3843

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:3858

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/spatial_tests/test_delaunay.py· 2
B
CuPy dependency
from cupy import testing
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy # NOQA
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/spatial_tests/test_distance.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:20

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/spatial_tests/test_kdtree_cuvs.py· 1
B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/spatial_tests/test_kdtree.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_basic.py· 4
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import (
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import numpy_cupy_allclose
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_bessel.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_beta.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_binom.py· 1
B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_convex_analysis.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_digamma.py· 1
B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_ellipk.py· 1
B
CuPy dependency
from cupy import testing
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_erf.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_exp1.py· 2
B
CuPy dependency
from cupy import testing
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import numpy_cupy_allclose
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_expi.py· 2
B
CuPy dependency
from cupy import testing
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import numpy_cupy_allclose
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_expn.py· 2
B
CuPy dependency
from cupy import testing
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import numpy_cupy_allclose
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_exprel.py· 3
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import numpy_cupy_allclose
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_gamma.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_gammainc.py· 2
B
CuPy dependency
import cupy as cp
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import assert_allclose, assert_array_equal
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_gammaln.py· 1
B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_lambertw.py· 1
B
CuPy dependency
from cupy import testing
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_log_softmax.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_logsumexp.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_polygamma.py· 1
B
CuPy dependency
from cupy import testing
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_sici.py· 1
B
CuPy dependency
from cupy import testing
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_softmax.py· 2
B
CuPy dependency
import cupy
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_sph_harm.py· 3
B
CuPy dependency
import cupy as cp
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing import numpy_cupy_allclose
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_spherical_bessel.py· 1
B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_statistics.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_ufunc_dispatch.py· 2
B
CuPy dependency
import cupy
:4

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_wright_bessel.py· 1
B
CuPy dependency
from cupy import testing
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_zeta.py· 1
B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/special_tests/test_zetac.py· 1
B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/stats_tests/test_distributions.py· 2
B
CuPy dependency
import cupy
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/stats_tests/test_morestats.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/stats_tests/test_stats.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/scipy_tests/test_get_array_module.py· 1
B
CuPy dependency
from cupy import testing
:5

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/signal_tests/acoustics_tests/test_cepstrum.py· 2
B
CuPy dependency
import cupy
:26

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:27

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/signal_tests/convolution_tests/test_convolve.py· 2
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/signal_tests/filtering_tests/test_filtering.py· 2
B
CuPy dependency
import cupy
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/signal_tests/radartools_tests/test_radartools.py· 2
B
CuPy dependency
import cupy
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/test_cupyx.py· 1
B
CuPy dependency
from cupy import testing
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/test_cusolver.py· 3
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _routines_linalg as _linalg
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/test_cusparse.py· 4
B
CuPy dependency
import cupy
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:15

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import driver
:17

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import runtime
:18

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/test_cutensor.py· 5
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _routines_linalg as _linalg
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import device
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.cuda import cutensor as ct
:14

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/test_lapack.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/test_optimize.py· 4
B
CuPy dependency
import cupy
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:11

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy._core import _accelerator
:12

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
import cupy._core._optimize_config
:21

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/test_pinned_array.py· 3
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy.testing._loops import _wraps_partial
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/test_rsqrt.py· 2
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/test_runtime.py· 1
B
CuPy dependency
import cupy
:6

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/test_time.py· 2
B
CuPy dependency
import cupy
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

B
CuPy dependency
from cupy import testing
:9

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/cupyx_tests/tools_tests/test_install_library.py· 5
B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

A
Device string "cuda"
rec['cuda'] for rec in install_library.library_records[lib]]))
:19

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
@pytest.mark.parametrize('cuda', _get_supported_cuda_versions('nccl'))
:27

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
@pytest.mark.parametrize('cuda', _get_supported_cuda_versions('cutensor'))
:35

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
if rec['cuda'] != cuda:
:46

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

tests/example_tests/example_test.py· 1
B
CuPy dependency
import cupy
:7

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/example_tests/test_finance.py· 1
B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/example_tests/test_gmm.py· 1
B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/example_tests/test_kmeans.py· 1
B
CuPy dependency
from cupy import testing
:8

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/import_tests/test_import.py· 1
B
CuPy dependency
import cupy
:3

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

tests/install_tests/test_cupy_builder/test_features.py· 1
B
CuPy dependency
import cupy
:10

CuPy targets CUDA directly. AMD ships a ROCm build of CuPy, so this is a mechanical swap rather than a rewrite.

RecommendInstall the ROCm CuPy build (cupy-rocm-6-0) instead of cupy-cudaXXx.

.pfnci/generate.py· 6
A
Device string "cuda"
full_ver = self.schema['cuda'][matrix.cuda]['full_version']
:61

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
repo = self.schema['cuda'][matrix.cuda]['repository']
:62

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
nccl_cuda_schema = self.schema['nccl'][nccl]['cuda'][cuda]
:261

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
for cuda, _ in value_schema.get('cuda', {}).items():
:484

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
if cuda not in schema['cuda'].keys():
:485

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
supports = schema[key][value].get('cuda', None)
:553

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

cupyx/jit/cub.py· 1
A
Device string "cuda"
return 'hipcub' if _runtime.is_hip else 'cuda'
:42

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

cupyx/tools/_generate_wheel_metadata.py· 2
A
Device string "cuda"
'cuda': cuda_version,
:35

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
if record['cuda'] == cuda_version:
:40

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

cupyx/tools/install_library.py· 5
A
Device string "cuda"
'cuda': cuda_version,
:64

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
'cuda': cuda_version,
:112

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
if record['cuda'] == cuda:
:169

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
Should be one of {}.'''.format(str([x['cuda'] for x in lib_records[library]])))
:174

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
library, record[library], record['cuda'], destination))
:201

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

install/cupy_builder/_command.py· 4
A
Device string "cuda"
ctx.features['cuda'].get_version())
:141

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
os.path.join('cupy', 'cuda', 'cupy_cufilt.c'))
:177

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
out_dir = os.path.join(self.build_lib, 'cupy', 'cuda')
:179

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
editable_dst = os.path.join('cupy', 'cuda', 'cupy_cufilt.dll')
:197

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

install/cupy_builder/_compiler.py· 2
A
Device string "cuda"
cuda_version = self._context.features['cuda'].get_version()
:183

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
cuda_version = self._context.features['cuda'].get_version()
:221

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

install/cupy_builder/_features.py· 3
A
Device string "cuda"
'name': 'cuda',
:164

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
'cuda',
:282

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
self.name = 'cuda'
:439

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

install/cupy_builder/cupy_setup_build.py· 4
A
Device string "cuda"
cuda_version = ctx.features['cuda'].get_version()
:145

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
if ctx.use_hip and module['name'] == 'cuda':
:159

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
if module['name'] == 'cuda':
:220

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

A
Device string "cuda"
if 'cuda' in ret:
:228

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.

setup.py· 1
A
Device string "cuda"
cuda_major = ctx.features["cuda"].get_version() // 1000
:84

The literal device string "cuda" resolves to the active AMD GPU on ROCm PyTorch. .to("cuda") / device="cuda" need no edits.

RecommendNo change required on ROCm PyTorch.