-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minor See merge request mhammons/slinc!34
- Loading branch information
Showing
9 changed files
with
60 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,15 @@ | ||
--- | ||
layout: main | ||
--- | ||
<meta name="image" property="og:image" content="{{ page.header-image }}"> | ||
<meta name="author" content="{{ page.author }}"> | ||
|
||
<h1>{{page.title}}</h1> | ||
|
||
|
||
<div style="text-align: center;"> | ||
<img src="{{ page.header-image }}"" height=32%> | ||
</div> | ||
|
||
|
||
{{content}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
title: "v0.1.1 releases with significant performance improvements" | ||
layout: blog-page | ||
date: 2022-02-04 | ||
author: Mark Hammons | ||
--- | ||
|
||
I'm proud to announce the first patch release of Slinc. While it doesn't contain many new features, it does feature massive performance improvements! | ||
|
||
## Changelog | ||
|
||
* A [benchmarks page](../../docs/benchmarks/index.md) was added to the site | ||
* A simplistic blas binding was added to the project. Check [gitlab.com/mhammons/slinc] to see it. | ||
* Bindings are now cached, increasing performance exponentially, and allowing slinc to beat jblas by a factor of 1.5x on the same data. | ||
* `bind` and `variadicBind` have been deprecated for `accessNative` and `accessNativeVariadic`. Please read [binding C methods](/docs/docs/usage/binding-c-methods.md) for more information. | ||
* `Library` has been deprecated for `CLibrary` and `LibraryLocation`. Please read [binding C methods](/docs/docs/usage/binding-c-methods.md) for more information. | ||
* camelCase method names are now parsed to snake_case depending on capitals placement. If you want to turn off this feature, use `RawNaming`. | ||
* `WithPrefix` has been added, allowing to specify a function name prefix and cutting down on repeated function names. | ||
|
||
In the next release, I plan to add provisional support for Java 18, as well as C Union types. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
title: Benchmarks | ||
layout: doc-page | ||
--- | ||
|
||
This section houses the benchmark data from the various releases of Slinc. | ||
|
||
* [v0.1.0](v0-1-0/index.md) | ||
* [v0.1.1](v0-1-1/index.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: v0.1.0 Benchmarks | ||
layout: doc-page | ||
--- | ||
|
||
As version 0.1.0 was the very first version of Slinc, only performance comparison benchmarks exist for it. You can access them [here](performance.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: v0.1.1 Benchmarks | ||
layout: doc-page | ||
--- | ||
|
||
This release saw markedly improved performance from Slinc bindings. You can read [performance comparisons between v0.1.1 and v0.1.0](self-improvement.md) and [general performance comparisons with jblas and scala](performance.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ layout: doc-page | |
|
||
Currently, the following platforms are supported: | ||
|
||
* Linux x86_64 | ||
* Java 17/Linux/x86_64 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters