Skip to content

Commit

Permalink
Update NPU4 performance results and deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jan 30, 2025
1 parent aeba454 commit 0dd0fe8
Show file tree
Hide file tree
Showing 2 changed files with 113 additions and 1 deletion.
95 changes: 95 additions & 0 deletions results_history_npu4.html
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>

19 changes: 18 additions & 1 deletion results_history_npu4.json
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"
}
]
}
]

0 comments on commit 0dd0fe8

Please sign in to comment.