Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace GPUifyLoops with KernelAbstractions #95

Merged
merged 1 commit into from
Nov 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ version = "0.1.0"
[deps]
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
GPUifyLoops = "ba82f77b-6841-5d2e-bd9f-4daf811aec27"
KernelAbstractions = "63c18a36-062a-441e-b654-da1e3ab1ce7c"
LLVM = "929cbde3-209d-540e-8aea-75f648917ca0"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"

[compat]
CUDA = "3.5"
ForwardDiff = "0.10"
GPUifyLoops = "0.2"
KernelAbstractions = "0.7"
LLVM = "3, 4"
StaticArrays = "0.12, 1"
julia = "1.6"
2 changes: 1 addition & 1 deletion src/epilogue.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Epilogue
using CUDA
using GemmKernels
using GemmKernels.Tiling
using GPUifyLoops: @unroll
using KernelAbstractions.Extras: @unroll

# ----------------
# Default epilogue
Expand Down
2 changes: 1 addition & 1 deletion src/kernel.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Kernel
using CUDA
using GemmKernels
using GemmKernels.Tiling
using GPUifyLoops: @unroll
using KernelAbstractions.Extras: @unroll
using StaticArrays

function matmul_singlestage(a, b, c, d,
Expand Down
2 changes: 1 addition & 1 deletion src/layout.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export Layout
module Layout

using CUDA
using GPUifyLoops: @unroll
using KernelAbstractions.Extras: @unroll
using GemmKernels.Tiling
using StaticArrays

Expand Down