-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #83 from kirillgarbar/dev
BFS Push-pull, SSSP, SpMSpV
- Loading branch information
Showing
210 changed files
with
4,891 additions
and
1,496 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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: BuildDocs | ||
|
||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
win-build: | ||
name: Windows Build Docs | ||
runs-on: windows-latest | ||
defaults: | ||
run: | ||
shell: cmd | ||
steps: | ||
- name: System Info | ||
run: systeminfo | ||
|
||
- uses: actions/checkout@v3 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
global-json-file: global.json | ||
|
||
- name: Build | ||
run: ./build.cmd BuildDocs | ||
env: | ||
CI: true | ||
|
||
linux-build: | ||
name: Linux Build Docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: System Info | ||
run: lscpu | ||
|
||
- uses: actions/checkout@v3 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
global-json-file: global.json | ||
|
||
- name: Build | ||
run: | | ||
chmod +x ./build.sh | ||
./build.sh BuildDocs | ||
env: | ||
CI: true |
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,27 @@ | ||
name: Publish Nuget packages | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
publish-self-hosted: | ||
name: Build, test, and publish Nuget packages on self-hosted server with GPU | ||
if: github.repository_owner == 'YaccConstructor' | ||
runs-on: self-hosted | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: OpenCL Info | ||
run: clinfo | ||
|
||
- name: Build, test, publish | ||
env: | ||
NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets._GITHUB_TOKEN }} | ||
FAKE_DETAILED_ERRORS: true | ||
CI: true | ||
run: | | ||
chmod +x ./build.sh | ||
./build.sh Publish |
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,27 @@ | ||
name: Release Docs | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
|
||
linux-build: | ||
name: Linux Release Docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
global-json-file: global.json | ||
|
||
- name: ReleaseDocs | ||
run: | | ||
chmod +x ./build.sh | ||
./build.sh ReleaseDocs | ||
env: | ||
GITHUB_TOKEN: ${{ secrets._GITHUB_TOKEN }} | ||
FAKE_DETAILED_ERRORS: true | ||
CI: true |
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,15 +1,22 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
## [0.1.0-alpha1] - 2023-05-18 | ||
|
||
## [0.1.0] - 2017-03-17 | ||
First release | ||
First release. For demo and tests. Basic linear algebra only. No graph algorithms. | ||
|
||
### Added | ||
- This release already has lots of features | ||
- Basic functions for vectors and matrices creation | ||
- Basic functions for vectors manipulation: map, reduce | ||
- Basic functions for matrices manipulation: map, transpose | ||
- Matrix-matrix element-wise functions (map2) | ||
- Vector-vector element-wise functions (map2) | ||
- Sparse matrix multiplication | ||
- Kronecker product | ||
|
||
[0.1.0]: https://github.com/user/MyCoolNewLib.git/releases/tag/v0.1.0 | ||
[Unreleased]: https://github.com/YaccConstructor/GraphBLAS-sharp/compare/v0.1.0-alpha1...HEAD | ||
[0.1.0-alpha1]: https://github.com/YaccConstructor/GraphBLAS-sharp/releases/tag/v0.1.0-alpha1 |
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
Oops, something went wrong.