Browse Source

debug

pull/720/head
Rinne 2 years ago
parent
commit
035126276f
No known key found for this signature in database GPG Key ID: E86D01E1809BD23E
2 changed files with 4 additions and 4 deletions
  1. +3
    -3
      .github/workflows/benchmark.yml
  2. +1
    -1
      LLama.Benchmark/LLama.Benchmark.csproj

+ 3
- 3
.github/workflows/benchmark.yml View File

@@ -72,10 +72,10 @@ jobs:
- name: Build
run: |
dotnet clean
dotnet build LLama/LLamaSharp.csproj -c release --no-restore
dotnet build LLama.Benchmark/LLama.Benchmark.csproj -c release --no-restore
dotnet build LLama/LLamaSharp.csproj -c Release --no-restore
dotnet build LLama.Benchmark/LLama.Benchmark.csproj -c Release --no-restore
- name: Run benchmark test
run: dotnet run --project LLama.Benchmark/LLama.Benchmark.csproj -c release
run: dotnet run --project LLama.Benchmark/LLama.Benchmark.csproj -c Release
- name: Upload artifacts
if: always()
uses: actions/upload-artifact@v3


+ 1
- 1
LLama.Benchmark/LLama.Benchmark.csproj View File

@@ -6,7 +6,7 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Configuration>Release</Configuration>
<Configuration>Release</Configuration>
</PropertyGroup>

<ItemGroup>


Loading…
Cancel
Save