We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8689f54 commit a830e73Copy full SHA for a830e73
shell.nix
@@ -22,6 +22,9 @@ in
22
'cabal v1-configure --enable-tests && \
23
cabal v1-build doctests && dist/build/doctests/doctests src/ArrayFire/Algorithm.hs'
24
}
25
+ function exe () {
26
+ cabal run main
27
+ }
28
function repl () {
29
cabal v1-repl lib:arrayfire
30
src/ArrayFire/BLAS.hs
@@ -41,7 +41,7 @@ import ArrayFire.Internal.Types
41
--
42
-- This function can be used with one sparse input. The sparse input must always be the lhs and the dense matrix must be rhs.
43
44
--- The sparse array can only be of AF_STORAGE_CSR format.
+-- The sparse array can only be of 'CSR' format.
45
46
-- The returned array is always dense.
47
0 commit comments