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
Detected but out of scope (not analyzed): C, C/C++ header
Findings by file
2099 findings · 621 filesCcuda-python low-level driver APIfrom 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.
--- 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')Ccuda-python low-level driver APIfrom 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.
--- 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 (Ccuda-python low-level driver APIfrom 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.
--- 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 = NoneCcuda-python low-level driver APIfrom 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.
--- 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.ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
Ccuda-python low-level driver APIfrom 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.
--- 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 = NoneBCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
CInline PTX assemblyoptions = 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.
--- 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')CInline PTX assemblyls.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.
--- 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')BCuPy dependencyimport 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.
Ccuda-python low-level driver APIfrom 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.
--- 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 neededCcuda-python low-level driver APIimport 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.
--- a/cupyx/_runtime.py+++ b/cupyx/_runtime.py@@ -150,1 +150,1 @@-import cuda.bindings+import rocm.bindings # advisory: hipPython analog of cuda.bindingsCcuda-python low-level driver APIimport 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.
--- 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 neededBCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
Ccuda-python low-level driver APIfrom 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.
--- 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():BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
CInline PTX assemblyfile_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.
--- 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'BCuPy dependencyfrom 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.
--- 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+ passBCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
--- 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 # NOQABCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCustom CUDA kernels (.cu/.cuh)CUDA kernel sourcefile
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.
BCustom CUDA kernels (.cu/.cuh)CUDA kernel sourcefile
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.
BCustom CUDA kernels (.cu/.cuh)CUDA kernel sourcefile
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.
BCustom CUDA kernels (.cu/.cuh)CUDA kernel sourcefile
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.
BCustom CUDA kernels (.cu/.cuh)CUDA kernel sourcefile
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.
BCustom CUDA kernels (.cu/.cuh)CUDA kernel sourcefile
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.
BCustom CUDA kernels (.cu/.cuh)CUDA kernel sourcefile
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.
BCustom CUDA kernels (.cu/.cuh)CUDA kernel sourcefile
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.
BCustom CUDA kernels (.cu/.cuh)CUDA kernel sourcefile
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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCustom CUDA kernels (.cu/.cuh)CUDA kernel sourcefile
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.
BCustom CUDA kernels (.cu/.cuh)CUDA kernel sourcefile
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.
BCustom CUDA kernels (.cu/.cuh)CUDA kernel sourcefile
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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCustom CUDA kernels (.cu/.cuh)CUDA kernel sourcefile
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.
BCustom CUDA kernels (.cu/.cuh)CUDA kernel sourcefile
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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
ADevice 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
ADevice 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.
ADevice 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
ADevice 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
ADevice 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.
BCuPy dependencyimport 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.
ADevice 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCustom CUDA kernels (.cu/.cuh)CUDA kernel sourcefile
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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
BCuPy dependencyimport 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyfrom 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.
BCuPy dependencyimport 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.
BCuPy dependencyimport 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.
ADevice 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.