Skip to content

Commit

Permalink
Update readme, RT+
Browse files Browse the repository at this point in the history
  • Loading branch information
OudomMunint committed Aug 22, 2023
1 parent 66c535e commit c86ce6c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ jobs:
if: matrix.os == 'windows-latest'
uses: ncipollo/[email protected]
with:
tag: v1.4.5
tag: v1.4.5.1
4 changes: 2 additions & 2 deletions Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
Console.WriteLine("Name: {0}", item["Name"]);
Console.WriteLine("Manufacturer: {0}", manufacturer);
Console.WriteLine("Driver Version: {0}", item["DriverVersion"]);
Console.WriteLine("VRAM: {0}MB", Convert.ToUInt32(item["AdapterRAM"]) / (1024 * 1024));
Console.WriteLine("VRAM: {0}MB", Convert.ToUInt64(item["AdapterRAM"]) / (1024 * 1024));
Console.WriteLine("-----------------------------------------------------------");
}
else
Expand All @@ -105,7 +105,7 @@
Console.WriteLine("Name: {0}", item["Name"]);
Console.WriteLine("Manufacturer: {0}", manufacturer);
Console.WriteLine("Driver Version: {0}", item["DriverVersion"]);
Console.WriteLine("VRAM: {0}MB", Convert.ToUInt32(item["AdapterRAM"]) / (1024 * 1024));
Console.WriteLine("VRAM: {0}MB", item["AdapterRam"]);
Console.WriteLine("-----------------------------------------------------------");
}
}
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Benchmark
- A C# console program that gathers your system details then runs a hash benchmark on MD5, SHA256, SHA512
- A C# console program that gathers your system details then lets you run benchmarks on your system.
- You can run a Hashing benchmark with MD5, SHA256 and SHA512.
- Or a single thread and multi thread benchmark.
- Or a encrypt/decrypt benchmark (May need admin privileges)
- Using <a href="https://github.com/dotnet/BenchmarkDotNet"> `BenchmarkDotNet` </a>
# Maintenance
![maintenance-status](https://img.shields.io/badge/maintenance-actively--developed-brightgreen.svg)
Expand Down

0 comments on commit c86ce6c

Please sign in to comment.