-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,13 @@ | |
|
||
module BLAS | ||
|
||
import ..axpy! | ||
import Base: copy!, blasfunc | ||
import Base.LinAlg: axpy!, dot | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
andreasnoack
Author
Member
|
||
|
||
export | ||
# Level 1 | ||
asum, | ||
axpy!, | ||
blascopy!, | ||
dot, | ||
dotc, | ||
dotu, | ||
scal!, | ||
|
@andreasnoack, I think the right solution to #11067 (comment) actually is that
Base.LinAlg.dot
should not be imported here. Figured I'd just ask here if that seems right to you? I can submit a PR if so.