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

cuTensor fixes #2228

Merged
merged 2 commits into from
Jan 12, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Only test the kernel cache on supported configurations.
  • Loading branch information
maleadt committed Jan 12, 2024
commit 533e9c326ef95f861d54d4ed3b77ac72683ca83a
2 changes: 2 additions & 0 deletions lib/cutensor/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ include("contractions.jl")
include("reductions.jl")

# we should have some kernels in the cache after this
if CUDA.runtime_version() >= v"11.8" && capability(device()) >= v"8.0"
@testset "kernel cache" begin
mktempdir() do dir
cd(dir) do
Expand All @@ -27,5 +28,6 @@ include("reductions.jl")
end
end
end
end

end