Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
18 changes: 18 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": 1,
"isRoot": true,
"tools": {
"paket": {
"version": "5.249.2",
"commands": [
"paket"
]
},
"fake-cli": {
"version": "5.20.3",
"commands": [
"fake"
]
}
}
}
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -348,3 +348,15 @@ MigrationBackup/

# Ionide (cross platform F# VS Code tools) working folder
.ionide/

# Gitignore template for Visual Studio Code
# https://github.com/github/gitignore/blob/master/Global/VisualStudioCode.gitignore
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace

# Local History for Visual Studio Code
.history/
494 changes: 494 additions & 0 deletions .paket/Paket.Restore.targets

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions GraphBLAS-sharp.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26124.0
MinimumVisualStudioVersion = 15.0.26124.0
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
24 changes: 24 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
image: Visual Studio 2019

install:
# Install OpenCL headers and libraries
- set NUGETDIR=C:\NUGET
- nuget install opencl-nug -Version 0.777.77 -OutputDirectory %NUGETDIR%
- dir %NUGETDIR%\opencl-nug.0.777.77\build\native\
- set OCL_ROOT=%NUGETDIR%\opencl-nug.0.777.77\build\native
# Install OpenCL Runtime
- choco install opencl-intel-cpu-runtime
# Check if it's working
- ps: appveyor DownloadFile "https://ci.appveyor.com/api/projects/oblomov/clinfo/artifacts/clinfo.exe?job=platform:+x64" -FileName clinfo.exe
- .\clinfo.exe

before_build:
- cmd: dotnet --version
- cmd: dotnet tool restore
- cmd: dotnet paket restore

build_script:
- cmd: dotnet build

test_script:
- cmd: dotnet test
5 changes: 5 additions & 0 deletions paket.dependencies
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source https://api.nuget.org/v3/index.json

storage: none
framework: netcoreapp3.1, netstandard2.0, netstandard2.1
nuget Brahma.FSharp
17 changes: 17 additions & 0 deletions paket.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
STORAGE: NONE
RESTRICTION: || (== netcoreapp3.1) (== netstandard2.0) (== netstandard2.1)
NUGET
remote: https://api.nuget.org/v3/index.json
Brahma.FSharp (1.1.5)
FSharp.Quotations.Evaluator
FSharpx.Collections (>= 1.15)
OpenCL.NET (2.2.9)
YC.PrettyPrinter (>= 0.0.5)
FSharp.Core (4.7.2)
FSharp.Quotations.Evaluator (2.1)
FSharp.Core (>= 4.3.1)
FSharpx.Collections (2.1.3)
FSharp.Core (>= 4.3.4)
OpenCL.NET (2.2.9)
YC.PrettyPrinter (0.0.5)
FSharp.Core