Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 10,269 Bytes
6f6d8a6 34d2b84 6f6d8a6 feb8590 6f6d8a6 75f825b 6f6d8a6 feb8590 e3d1af9 6f6d8a6 34d2b84 feb8590 34d2b84 feb8590 34d2b84 02d3589 e3d1af9 34d2b84 cd5701b 34d2b84 e3d1af9 34d2b84 e3d1af9 34d2b84 feb8590 6f6d8a6 02d3589 6f6d8a6 e3d1af9 6f6d8a6 02d3589 34d2b84 6f6d8a6 02d3589 6f6d8a6 02d3589 6f6d8a6 e3d1af9 6f6d8a6 02d3589 6f6d8a6 75f825b 6f6d8a6 02d3589 6f6d8a6 02d3589 6f6d8a6 02d3589 6f6d8a6 02d3589 cd5701b 02d3589 6f6d8a6 02d3589 6f6d8a6 02d3589 75f825b 02d3589 6f6d8a6 02d3589 6f6d8a6 feb8590 02d3589 feb8590 02d3589 feb8590 02d3589 feb8590 02d3589 feb8590 02d3589 feb8590 02d3589 feb8590 02d3589 feb8590 02d3589 feb8590 6f6d8a6 02d3589 6f6d8a6 02d3589 6f6d8a6 02d3589 6f6d8a6 02d3589 6f6d8a6 02d3589 6f6d8a6 02d3589 6f6d8a6 02d3589 6f6d8a6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 |
<script lang="ts">
import { getClientInfo, getServerLocation, sendAnalyticsData } from '$lib';
import { Chart, registerables } from 'chart.js';
import type { Action } from 'svelte/action';
import { onMount } from 'svelte';
Chart.register(...registerables);
let currentBandwidth = $state(0);
let currentLatency = $state(0);
let serverLocation = $state('-');
let clientIp = $state('Detecting...');
let clientLocation = $state('Detecting...');
let progress = $state(0);
let bandwidthMeasurements: number[] = $state([]);
let timeMeasurements: string[] = $state([]);
let testStatus: 'Running' | 'Stopped' | 'Started' | 'Completed' | 'Idle' | 'Error' = $state('Idle');
let speedTest = undefined;
let fiveSecAnalytics = undefined;
// run ip info to get client IP and location
onMount(async () => {
let interval = setInterval(() => {
if (window.Speedtest) {
speedTest = new Speedtest();
clearInterval(interval)
}
}, 500)
getClientInfo().then((info) => {
clientIp = info.clientIp;
clientLocation = info.clientLocation;
});
});
const startTest = async () => {
if (!speedTest) {
console.error('Speedtest object is not initialized');
return;
}
progress = 0;
// Send analytics data after 5 seconds
fiveSecAnalytics = setTimeout(() => {
sendAnalyticsData(currentBandwidth, currentLatency, serverLocation, progress / 100);
}, 5000);
speedTest.onupdate = (data) => {
if (data.testState === 0) {
testStatus = 'Started';
}
if (data.testState === 1) {
testStatus = 'Running';
}
if (data.dlStatus === 'Fail') {
testStatus = 'Error';
}
const elapsedMs = parseFloat(data.pingStatus == '' ? 0 : data.pingStatus);
const mbps = parseFloat(data.dlStatus == '' ? 0 : data.dlStatus);
currentLatency = elapsedMs;
currentBandwidth = mbps;
progress = data.dlProgress * 100;
// update the bandwidth measurements array
bandwidthMeasurements.push(mbps); // convert Bps to Mbps
timeMeasurements.push((elapsedMs / 1000).toFixed(1)); // convert ms to seconds
// only keep the last 20 measurements
if (bandwidthMeasurements.length > 20) {
bandwidthMeasurements.shift();
timeMeasurements.shift();
}
};
speedTest.onend = (aborted: boolean) => {
clearTimeout(fiveSecAnalytics);
if (aborted) {
testStatus = 'Stopped';
return;
} else {
testStatus = 'Completed';
}
sendAnalyticsData(currentBandwidth, currentLatency, serverLocation, 1);
};
const server = {
name:"Huggingface CDN",
server:"//cdn-test-cloudfront.hf.co",
dlURL:"5gb.safetensors",
ulURL:"meta.json",
pingURL:"empty.php",
getIpURL:"meta.json"
};
speedTest.setParameter("time_dl_max","20");
speedTest.setParameter("test_order","IP_D");
// s.setParameter("xhr_dlMultistream",15);
speedTest.setSelectedServer(server);
serverLocation = await getServerLocation(`${server.server}${server.dlURL}`)
speedTest.start();
};
const stopTest = () => {
speedTest?.abort();
};
let canvas: HTMLCanvasElement;
const chart: Action<HTMLCanvasElement> = (node) => {
let speedChart: Chart;
function dispatch<T>(name: string, detail: T) {
node.dispatchEvent(new CustomEvent(name, { detail }));
}
$effect(() => {
const ctx = canvas.getContext('2d');
if (speedChart) {
speedChart.destroy();
}
speedChart = new Chart(ctx, {
type: 'line',
data: {
labels: $state.snapshot(timeMeasurements),
datasets: [
{
label: 'Download Speed (Mbps)',
data: $state.snapshot(bandwidthMeasurements),
borderColor: '#4f46e5',
backgroundColor: 'rgba(79, 70, 229, 0.1)',
tension: 0.4,
fill: true
}
]
},
options: {
animation: false,
responsive: true,
maintainAspectRatio: false,
scales: {
y: {
beginAtZero: true,
title: {
display: true,
text: 'Speed (Mbps)'
}
},
x: {
title: {
display: true,
text: 'Time (seconds)'
}
}
},
plugins: {
legend: {
position: 'top'
},
tooltip: {
mode: 'index',
intersect: false
}
}
}
});
});
dispatch('updated', bandwidthMeasurements);
return () => {
speedChart.destroy();
};
};
const getStatusClass = () => {
switch (testStatus) {
case 'Idle':
return 'bg-gray-300';
case 'Running':
return 'bg-blue-500';
case 'Completed':
return 'bg-green-500';
case 'Error':
return 'bg-red-500';
case 'Stopped':
return 'bg-red-500';
default:
return 'bg-gray-300';
}
};
</script>
<svelte:head>
<script type="text/javascript" src="speedtest.js"></script>
</svelte:head>
<!-- Main Card -->
<div
class="mb-8 overflow-hidden rounded-xl bg-white shadow-lg transition-all duration-300 hover:shadow-xl"
>
<div class="p-6 md:p-8">
<div class="mb-6 flex items-center justify-between">
<h2 class="text-xl font-semibold text-gray-800">Connection Statistics</h2>
<div id="connection-status" class="flex items-center">
<span class="h-3 w-3 rounded-full {getStatusClass()} mr-2"></span>
<span class="text-sm text-gray-500">{testStatus}</span>
</div>
</div>
<!-- Speed Display -->
<div class="mb-8 grid grid-cols-1 gap-6 md:grid-cols-2">
<div class="rounded-lg bg-gray-50 p-4 text-center">
<div class="mb-1 flex items-center justify-center text-gray-500">
<i class="fas fa-download mr-2"></i>
<span>Download Speed</span>
</div>
<div id="download-speed" class="text-2xl font-bold text-indigo-600">
{currentBandwidth.toFixed(2)}
</div>
<div class="text-sm text-gray-400">Mbps</div>
</div>
<div class="rounded-lg bg-gray-50 p-4 text-center">
<div class="mb-1 flex items-center justify-center text-gray-500">
<i class="fas fa-clock mr-2"></i>
<span>Latency</span>
</div>
<div id="latency" class="text-2xl font-bold text-amber-500">
{currentLatency.toFixed(0)}
</div>
<div class="text-sm text-gray-400">ms</div>
</div>
</div>
<!-- Progress Bar -->
<div class="mb-6">
<div class="mb-2 flex justify-between">
<span class="text-sm font-medium text-gray-700">Test Progress</span>
<span id="progress-percent" class="text-sm font-medium text-gray-700"
>{progress.toFixed(0)}%</span
>
</div>
<div class="h-2.5 w-full rounded-full bg-gray-200">
<div
id="progress-bar"
class="progress-bar h-2.5 rounded-full {progress < 100 && progress > 0 ? 'wave' : ''}"
style="width: {progress}%"
></div>
</div>
</div>
<!-- Test Controls -->
<div class="flex flex-col justify-center gap-4 sm:flex-row">
<button
id="start-test"
class="{testStatus === 'Running'
? 'bg-indigo-100 hover:bg-indigo-100'
: 'glow bg-indigo-600 hover:bg-indigo-700'} flex items-center justify-center rounded-lg px-6 py-3 font-medium text-white transition-all"
onclick={startTest}
disabled={testStatus === 'Running'}
>
<i class="fas fa-play mr-2"></i>
Start Test
</button>
<button
id="stop-test"
class="flex items-center justify-center rounded-lg bg-gray-200 px-6 py-3 font-medium text-gray-800 transition-all hover:bg-gray-300"
disabled={testStatus !== 'Running'}
onclick={stopTest}
>
<i class="fas fa-stop mr-2"></i>
Stop Test
</button>
</div>
</div>
</div>
<!-- Connection Info Card -->
<div class="connection-info mb-8 overflow-hidden rounded-xl bg-white shadow-lg">
<div class="p-6 md:p-8">
<h2 class="mb-6 text-xl font-semibold text-gray-800">Connection Information</h2>
<div class="grid grid-cols-1 gap-6 md:grid-cols-2">
<div>
<h3 class="mb-2 text-sm font-medium text-gray-500">CLIENT INFORMATION</h3>
<div class="mb-3 flex items-center">
<i class="fas fa-laptop mr-3 text-indigo-500"></i>
<div>
<div class="text-sm text-gray-500">IP Address</div>
<div id="client-ip" class="text-lg font-medium text-gray-800">{clientIp}</div>
</div>
</div>
<div class="flex items-center">
<i class="fas fa-map-marker-alt mr-3 text-indigo-500"></i>
<div>
<div class="text-sm text-gray-500">Approximate Location</div>
<div id="client-location" class="text-lg font-medium text-gray-800">
{clientLocation}
</div>
</div>
</div>
</div>
<div>
<h3 class="mb-2 text-sm font-medium text-gray-500">SERVER INFORMATION</h3>
<div class="mb-3 flex items-center">
<i class="fas fa-server mr-3 text-emerald-500"></i>
<div>
<div class="text-sm text-gray-500">Server Location</div>
<div id="server-location" class="text-lg font-medium text-gray-800">
{serverLocation}
</div>
</div>
</div>
<div class="flex items-center">
<i class="fas fa-network-wired mr-3 text-emerald-500"></i>
<div>
<div class="text-sm text-gray-500">Test Server</div>
<div class="text-lg font-medium text-gray-800">huggingface.co</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Results Graph -->
<div class="mb-8 overflow-hidden rounded-xl bg-white shadow-lg">
<div class="p-6 md:p-8">
<h2 class="mb-6 text-xl font-semibold text-gray-800">Speed Over Time</h2>
<div class="relative h-64">
<canvas id="speed-chart" bind:this={canvas} use:chart></canvas>
</div>
</div>
</div>
<!-- Information Section -->
<div class="overflow-hidden rounded-xl bg-white shadow-lg">
<div class="p-6 md:p-8">
<h2 class="mb-4 text-xl font-semibold text-gray-800">About This Test</h2>
<div class="prose prose-indigo max-w-none text-gray-600">
<p>
This bandwidth test measures your connection speed to Hugging Face's servers by downloading
a sample file. The test calculates:
</p>
<ul class="mt-2 list-disc space-y-1 pl-5">
<li>
<strong>Download speed:</strong> How fast data can be transferred from Hugging Face to your
device
</li>
<li>
<strong>Latency:</strong> The time it takes to establish connection to Hugging Face server
</li>
</ul>
<p class="mt-4">
For accurate results, close other bandwidth-intensive applications and ensure you're not on
a VPN unless testing through it.
</p>
</div>
</div>
</div>
|