Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
a20737b
Add gitignore template for VS Code
dpanfilyonok Sep 23, 2020
37f6482
Add Paket and FAKE as local tools
dpanfilyonok Sep 23, 2020
e8b8116
Add Brahma.FSharp dependency
dpanfilyonok Sep 26, 2020
20121bb
Add SpMV multiplication for CPU
dpanfilyonok Sep 26, 2020
dab98a3
Add SpMV multiplication for GPU
dpanfilyonok Oct 12, 2020
6df7a39
Add SpMM and SpMSpM multiplication for GPU
dpanfilyonok Oct 13, 2020
68b26e8
Add SpMSpM with CSR multiplication
dpanfilyonok Oct 19, 2020
03057f5
Fix CSR MM multiplication
dpanfilyonok Oct 19, 2020
1e465ea
Add MxM execution on 2D range
dpanfilyonok Oct 19, 2020
254cea5
Remove localWorkSize params from 2D range
dpanfilyonok Oct 19, 2020
cca66c6
Add local buffers to keep result into kernel code
dpanfilyonok Oct 22, 2020
641025d
Fix previous commit bug
dpanfilyonok Oct 22, 2020
a2732f9
Add appveyor.yml
dpanfilyonok Oct 23, 2020
3fa9557
Add test for toCSR transformation
dpanfilyonok Oct 23, 2020
833ba60
Fix test name
dpanfilyonok Oct 23, 2020
0a82032
Add tests
dpanfilyonok Oct 24, 2020
ddc9448
Change compare method in tests
dpanfilyonok Oct 24, 2020
d76da47
Change equality threshold for tests
dpanfilyonok Oct 24, 2020
4811a49
Add minor fixes to tests
dpanfilyonok Oct 24, 2020
6c4c3ee
Setup library with miniScaffold template
dpanfilyonok Oct 28, 2020
a8ba397
Remove build from github actions
dpanfilyonok Oct 28, 2020
51455af
Changing architecture, not finished yet
dpanfilyonok Nov 1, 2020
e1f8ea8
Remove csc matrix
dpanfilyonok Nov 2, 2020
635d9ce
Add some semiring implementation (via duck typing)
dpanfilyonok Nov 7, 2020
2e2a94f
Add global ocl context and abstract matrix interface
dpanfilyonok Nov 8, 2020
eb0300f
Code cleanup, add bool semiring
dpanfilyonok Nov 8, 2020
5c53814
Add mask as additional argument to linear operations
dpanfilyonok Nov 8, 2020
81e2894
Add indexers. Impl members plug for csr matrix
dpanfilyonok Nov 9, 2020
e53a0a9
Implement members plug for dense vector
dpanfilyonok Nov 9, 2020
7bb3c88
Add Mask1D test impl, remove tests
dpanfilyonok Nov 9, 2020
2bac7e5
Add Mask2D implementation as index list
dpanfilyonok Nov 9, 2020
defe8b8
Switch default fake target to DotnetTest
dpanfilyonok Nov 9, 2020
4e95a3b
Add struct constraint to generic type parameter
dpanfilyonok Nov 9, 2020
8f1bf13
Implement masks as DU
dpanfilyonok Nov 10, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"version": 1,
"isRoot": true,
"tools": {
"sourcelink": {
"version": "3.1.1",
"commands": [
"sourcelink"
]
},
"dotnet-reportgenerator-globaltool": {
"version": "4.2.15",
"commands": [
"reportgenerator"
]
},
"fake-cli": {
"version": "5.20.0",
"commands": [
"fake"
]
},
"paket": {
"version": "5.245.1",
"commands": [
"paket"
]
},
"fcswatch-cli": {
"version": "0.7.14",
"commands": [
"fcswatch"
]
},
"fsharp-analyzers": {
"version": "0.4.0",
"commands": [
"fsharp-analyzers"
]
}
}
}
8 changes: 8 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM fsharp:netcore

# Copy endpoint specific user settings into container to specify
# .NET Core should be used as the runtime.
COPY settings.vscode.json /root/.vscode-remote/data/Machine/settings.json

# Install git, process tools
RUN apt-get update && apt-get -y install git procps
12 changes: 12 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "MiniScaffold",
"dockerFile": "Dockerfile",
"appPort": [8080],
"extensions": [
"ionide.ionide-fsharp",
"ms-dotnettools.csharp",
"editorconfig.editorconfig",
"ionide.ionide-paket",
"ionide.ionide-fake"
]
}
7 changes: 7 additions & 0 deletions .devcontainer/settings.vscode.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"FSharp.fsacRuntime":"netcore",
"FSharp.enableAnalyzers": true,
"FSharp.analyzersPath": [
"./packages/analyzers"
]
}
25 changes: 25 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# EditorConfig is awesome:
http://EditorConfig.org

# top-most EditorConfig file
root = true

# Default settings:
# A newline ending every file
# Use 4 spaces as indentation
[*]
insert_final_newline = true
indent_style = space
indent_size = 4

[*.{fs,fsi,fsx,config}]
charset = utf-8
trim_trailing_whitespace = true

[paket.*]
trim_trailing_whitespace = true
indent_size = 2

[*.paket.references]
trim_trailing_whitespace = true
indent_size = 2
27 changes: 27 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Auto detect text files
* text=auto

# Custom for Visual Studio
*.cs diff=csharp text=auto eol=lf
*.vb diff=csharp text=auto eol=lf
*.fs diff=csharp text=auto eol=lf
*.fsi diff=csharp text=auto eol=lf
*.fsx diff=csharp text=auto eol=lf
*.sln text eol=crlf merge=union
*.csproj merge=union
*.vbproj merge=union
*.fsproj merge=union
*.dbproj merge=union
*.sh text eol=lf

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
## Description

Please insert a description of your problem or question.

## Error messages, screenshots

Please add any error logs or screenshots if available.

## Failing test, failing GitHub repo, or reproduction steps

Please add either a failing test, a GitHub repo of the problem or detailed reproduction steps.

## Expected Behavior

Please define what you would expect the behavior to be like.

## Known workarounds

Please provide a description of any known workarounds.

## Other information

* Operating System:
- [ ] windows [insert version here]
- [ ] macOs [insert version]
- [ ] linux [insert flavor/version here]
* Platform
- [ ] dotnet core
- [ ] dotnet full
- [ ] mono
* Branch or release version:
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
name: Bug report
about: Create a report to help us improve

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Feature request
about: Suggest an idea for this project

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
25 changes: 25 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## Proposed Changes

Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or resolves a feature request, be sure to link to that issue.

## Types of changes

What types of changes does your code introduce to GraphBLAS-sharp?
_Put an `x` in the boxes that apply_

- [ ] Bugfix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)


## Checklist

_Put an `x` in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code._

- [ ] Build and tests pass locally
- [ ] I have added tests that prove my fix is effective or that my feature works (if appropriate)
- [ ] I have added necessary documentation (if appropriate)

## Further comments

If this is a relatively large or complex change, kick off the discussion by explaining why you chose the solution you did and what alternatives you considered, etc...
Loading