Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,18 @@ GPUArrays = "0c68f7d7-f131-5f86-a1c3-88cf8149b2d7"
IRStructurizer = "93e32bba-5bb8-402b-805d-ffb066edee93"

[weakdeps]
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
CUDACore = "bd0ed864-bdfe-4181-a5ed-ce625a5fdea2"
DLFP8Types = "f4c16678-4a16-415b-82ef-ed337c5d6c7c"

[extensions]
CUDAExt = "CUDA"
CUDAExt = "CUDACore"
DLFP8TypesExt = "DLFP8Types"

[compat]
BFloat16s = "0.6"
CUDA_Compiler_jll = "0.4"
CUDA_Tile_jll = "13.1"
CUDACore = "6"
CompilerCaching = "0.2"
EnumX = "1.0"
GPUArrays = "11"
Expand Down
4 changes: 2 additions & 2 deletions ext/CUDAExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ using CompilerCaching: CacheView, method_instance, results

import Core.Compiler as CC

using CUDA: CuArray, CuModule, CuFunction, cudacall, device, capability
using CUDACore: CuArray, CuModule, CuFunction, cudacall, device, capability
using CUDA_Compiler_jll

import Base.Broadcast: BroadcastStyle
import CUDA: CuArrayStyle
import CUDACore: CuArrayStyle

public launch

Expand Down
1 change: 1 addition & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
cuTile = "0dea8319-8c4a-4662-a73d-20234d115b9a"

[compat]
CUDA = "6"
FileCheck = "1.0"
ParallelTestRunner = "2.0"
Loading