You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+2-8Lines changed: 2 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,16 +6,10 @@ Freeing you from the tyranny of having to choose which platform you write your c
6
6
7
7
## What is it?
8
8
9
-
Aims to provide convienent and intuitive syntax for vector computations with best-in-class inline-shim-to-BLAS performance.
9
+
Aims to provide convienent and intuitive syntax for vector computations with best-in-class inline-shim-to-BLAS performance on native and JVM. JS... is waiting for WebAssembly BLAS.
10
10
11
11
||JVM|JS|Native|
12
12
----|----|----|----|
13
-
Data structure| `Array[Double]` | `Float64Array` | `Array[Double]` |
13
+
Data structure| `Array[Double]` | `Array[Double]` | `Array[Double]` |
14
14
Shims to | https://github.com/luhenry/netlib | https://github.com/stdlib-js/blas | [CBLAS](https://github.com/ekrich/sblas) |
Copy file name to clipboardExpand all lines: site/TODO/benchmarks/performance.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ In general cross platform performance is a hard problem. We sidestep where possi
11
11
12
12
||JVM|JS|Native|Cross|
13
13
----|----|----|----|---|
14
-
Data structure| `Array[Double]` | `Float64Array` | `Array[Double]` |`NArray[Double]` |
14
+
Data structure| `Array[Double]` | `Float64Array` | `Array[Double]` |`Array[Double]` |
15
15
Shims to | https://github.com/luhenry/netlib | https://github.com/stdlib-js/blas | [CBLAS](https://github.com/ekrich/sblas) | Best available |
16
16
17
17
Consider browsing the [[vecxt]] api, and particulaly the extensions object. You'll see that most definitions are `@inline` anotated - i.e. there is zero runtime overhead calling this library, and checkout the [benchmarks](benchmarks/sum.md)
0 commit comments