-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update NPU4 performance results and deploy
- Loading branch information
github-actions
committed
Jan 30, 2025
1 parent
aeba454
commit 0dd0fe8
Showing
2 changed files
with
113 additions
and
1 deletion.
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,95 @@ | ||
|
||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Performance History</title> | ||
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script> | ||
<style> | ||
body { font-family: Arial, sans-serif; line-height: 1.6; padding: 20px; } | ||
.chart-container { width: 80%; margin: 30px auto; } | ||
canvas { width: 100%; height: auto; } | ||
</style> | ||
</head> | ||
<body> | ||
<h1>Performance History</h1> | ||
<p>Overview of test results for the most recent commits:</p> | ||
|
||
<div class="chart-container"> | ||
<h2>Performance for matmul_benchmark_512_4096_512_i8_i32_O3_npu4_outline_ukernel</h2> | ||
<canvas id="chart-matmul_benchmark_512_4096_512_i8_i32_O3_npu4_outline_ukernel"></canvas> | ||
</div> | ||
<script> | ||
const ctx_matmul_benchmark_512_4096_512_i8_i32_O3_npu4_outline_ukernel = document.getElementById('chart-matmul_benchmark_512_4096_512_i8_i32_O3_npu4_outline_ukernel') | ||
const chart_matmul_benchmark_512_4096_512_i8_i32_O3_npu4_outline_ukernel = new Chart(ctx_matmul_benchmark_512_4096_512_i8_i32_O3_npu4_outline_ukernel, { | ||
type: 'line', | ||
data: { | ||
labels: ['406debf'], // Truncated commit hashes as X-axis labels | ||
datasets: [{ | ||
label: 'Duration (us)', | ||
data: ['1720'], // Test durations as Y-axis | ||
borderColor: 'rgba(75, 192, 192, 1)', | ||
backgroundColor: 'rgba(75, 192, 192, 0.2)', | ||
borderWidth: 2 | ||
}] | ||
}, | ||
options: { | ||
responsive: true, | ||
scales: { | ||
x: { | ||
title: { | ||
display: true, | ||
text: 'Commit Hash' | ||
} | ||
}, | ||
y: { | ||
title: { | ||
display: true, | ||
text: 'Duration (us)' | ||
} | ||
} | ||
} | ||
} | ||
}); | ||
</script> | ||
|
||
<div class="chart-container"> | ||
<h2>Performance for matmul_benchmark_512_4096_512_i8_i32_O3_npu4_outline_empty</h2> | ||
<canvas id="chart-matmul_benchmark_512_4096_512_i8_i32_O3_npu4_outline_empty"></canvas> | ||
</div> | ||
<script> | ||
const ctx_matmul_benchmark_512_4096_512_i8_i32_O3_npu4_outline_empty = document.getElementById('chart-matmul_benchmark_512_4096_512_i8_i32_O3_npu4_outline_empty') | ||
const chart_matmul_benchmark_512_4096_512_i8_i32_O3_npu4_outline_empty = new Chart(ctx_matmul_benchmark_512_4096_512_i8_i32_O3_npu4_outline_empty, { | ||
type: 'line', | ||
data: { | ||
labels: ['406debf'], // Truncated commit hashes as X-axis labels | ||
datasets: [{ | ||
label: 'Duration (us)', | ||
data: ['1195'], // Test durations as Y-axis | ||
borderColor: 'rgba(75, 192, 192, 1)', | ||
backgroundColor: 'rgba(75, 192, 192, 0.2)', | ||
borderWidth: 2 | ||
}] | ||
}, | ||
options: { | ||
responsive: true, | ||
scales: { | ||
x: { | ||
title: { | ||
display: true, | ||
text: 'Commit Hash' | ||
} | ||
}, | ||
y: { | ||
title: { | ||
display: true, | ||
text: 'Duration (us)' | ||
} | ||
} | ||
} | ||
} | ||
}); | ||
</script> | ||
|
||
</body> | ||
</html> | ||
|
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 +1,18 @@ | ||
[] | ||
[ | ||
{ | ||
"commit_hash": "406debf1a683dcb8241d5b79db0b2cc272fecd91", | ||
"cpu": "AMD Ryzen AI 9 HX 370 w/ Radeon 890M", | ||
"tests": [ | ||
{ | ||
"name": "matmul_benchmark_512_4096_512_i8_i32_O3_npu4_outline_ukernel", | ||
"time_mean": "1720", | ||
"time_mean_unit": "us" | ||
}, | ||
{ | ||
"name": "matmul_benchmark_512_4096_512_i8_i32_O3_npu4_outline_empty", | ||
"time_mean": "1195", | ||
"time_mean_unit": "us" | ||
} | ||
] | ||
} | ||
] |