From 41a48322dba3b25cd0984481609e68dd740b7563 Mon Sep 17 00:00:00 2001 From: Tim Besard Date: Thu, 17 Feb 2022 11:16:55 +0100 Subject: [PATCH] Move TODO to source code. --- lib/cusparse/broadcast.jl | 2 ++ test/cusparse/broadcast.jl | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cusparse/broadcast.jl b/lib/cusparse/broadcast.jl index c4027cb917..99e0c47197 100644 --- a/lib/cusparse/broadcast.jl +++ b/lib/cusparse/broadcast.jl @@ -2,6 +2,8 @@ using Base.Broadcast: Broadcasted using CUDA: CuArrayStyle +# TODO: support more types (SparseVector, SparseMatrixCSC, COO, BSR) + ## sparse broadcast style diff --git a/test/cusparse/broadcast.jl b/test/cusparse/broadcast.jl index 01bba26f52..278b17eac3 100644 --- a/test/cusparse/broadcast.jl +++ b/test/cusparse/broadcast.jl @@ -4,8 +4,6 @@ m,n = 2,3 p = 0.5 for elty in [Float32] - # TODO: CuSparseVector - @testset "$typ" for typ in [CuSparseMatrixCSR] x = sprand(elty, m, n, p) dx = typ(x)