Skip to content

Commit d4f8dd4

Browse files
authored
Update Readme after registration
1 parent 5b67e8e commit d4f8dd4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ This package provides bindings to the Intel MKL [Vector Mathematics Functions](h
66
This is often substantially faster than broadcasting Julia's built-in functions, especially when applying a transcendental function over a large array.
77
Until Julia 0.6 the package was registered as `VML.jl`.
88

9+
Similar packages are [Yeppp.jl](https://github.com/JuliaMath/Yeppp.jl), which wraps the open source Yeppp library, and [AppleAccelerate.jl](https://github.com/JuliaMath/AppleAccelerate.jl), which provides access to macOS's Accelerate framework.
10+
911
## Basic install
1012

1113
To use IntelVectorMath.jl, you must have the shared libraries of the Intel Vector Math Library available on your system.
@@ -19,8 +21,9 @@ Note that intel MKL has a separate license, which you may want to check for comm
1921

2022
To install IntelVectorMath.jl run
2123
```julia
22-
julia> ] add https://github.com/JuliaMath/IntelVectorMath.jl
24+
julia> ] add IntelVectorMath
2325
```
26+
If you used this package prior to its renaming, you may have to run `] rm VML` first. Otherwise there will be a conflict due to the UUID.
2427

2528
## Using IntelVectorMath
2629
After loading `IntelVectorMath`, you have the supported function listed below, for example `IntelVectorMath.sin(rand(100))`. These should provide a significant speed-up over broadcasting the Base functions.

0 commit comments

Comments
 (0)