Skip to content

Commit b281cfa

Browse files
committed
Improve loading perf
1 parent 85b35a7 commit b281cfa

File tree

3 files changed

+13
-16
lines changed

3 files changed

+13
-16
lines changed

β€Ž.vitepress/config.mtsβ€Ž

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import { defineConfig } from 'vitepress'
22
import tailwindcss from "@tailwindcss/vite";
3-
import { withMermaid } from "vitepress-plugin-mermaid";
43
import { blogPosts } from './data/blogPosts';
5-
import NavSignUp from './components/NavSignUp.vue';
64

7-
export default withMermaid(defineConfig({
5+
export default defineConfig({
86
title: "Velda",
97
description: "Cloud development that actually feels local. Run AI workloads, GPU clusters, and data processing without Kubernetes complexity.",
108
sitemap: {
@@ -18,7 +16,7 @@ export default withMermaid(defineConfig({
1816
],
1917
appearance: false,
2018
themeConfig: {
21-
logo: "/logos.png",
19+
logo: "/logo-24.png",
2220
siteTitle: '<span class="brand">VELDA</span>',
2321
nav: [
2422
{ text: 'Home', link: '/' },
@@ -125,4 +123,4 @@ export default withMermaid(defineConfig({
125123
vite: {
126124
plugins: [tailwindcss()],
127125
},
128-
}))
126+
})

β€Žblog/why-stuck-inefficient-gpu-setup.mdβ€Ž

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -30,30 +30,29 @@ You might wonder: "Aren't there plenty of software solutions that promise easier
3030

3131
Yes. However, almost all existing GPU scheduling tools impose a critical bottleneck: slow iteration cycles. The feedback cycle increases from seconds to minutes, plus several hours to set up any new workload. Developers need to build containers that recreate their dev environment for every GPU workload, even for a simple test. This might be acceptable for deploying applications in production environments, but are productivity killers during the iterative research phase of model training.
3232

33+
<img src="https://miro.medium.com/v2/resize:fit:920/format:webp/1*3Yhe-do69wSpa88-TsABmQ.png" />
34+
<!--
3335
```mermaid
3436
---
3537
title: Developer journey with a container orchestration tool
3638
---
3739
flowchart
38-
A[πŸ“ Write code] --> B[πŸ”¨ Build & Push<br/>Docker image]
39-
B --> C[πŸš€ Submit to Job scheduler]
40-
C --> E{😴 After 10 mins<br/>Job starts}
41-
E -->|😱| G[πŸ› Discover a typo<br/>in Python script]
42-
E -->|πŸŽ‰| SUCCESS[✨ SUCCESS!<br/>It actually works]
43-
G --> A
44-
45-
%% Medium blog styling
40+
A[πŸ“ Write code] -- > B[πŸ”¨ Build & Push<br/>Docker image]
41+
B -- > C[πŸš€ Submit to Job scheduler]
42+
C -- > E{😴 After 10 mins<br/>Job starts}
43+
E -- >|😱| G[πŸ› Discover a typo<br/>in Python script]
44+
E -- >|πŸŽ‰| SUCCESS[✨ SUCCESS!<br/>It actually works]
45+
G -- > A
4646
style A fill:#f8f9fa,stroke:#495057,stroke-width:2px,color:#212529
4747
style B fill:#e7f3ff,stroke:#0066cc,stroke-width:2px,color:#0066cc
4848
style C fill:#fff4e6,stroke:#0066cc,stroke-width:2px,color:#0066cc
4949
style E fill:#f0f0f0,stroke:#666666,stroke-width:2px,color:#333333
5050
style G fill:#ffe6e6,stroke:#cc0000,stroke-width:2px,color:#990000
5151
style SUCCESS fill:#00b300,stroke:#006600,stroke-width:3px,color:#ffffff
52-
5352
style SUCCESS fill:#4caf50,color:#ffffff
54-
5553
linkStyle 3,5 stroke:#cc5200,stroke-width:2px
5654
```
55+
-->
5756

5857
### The Version Hell Problem
5958

β€Žslurm-alternative.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ image: "https://velda.io/og-preview.png"
1717
{ text: 'Book Demo', link: 'https://calendly.com/velda-io/30min', variant: 'secondary' }
1818
]"
1919
:competitor-a="{ name: 'Slurm', logo: '/slurm.svg' }"
20-
:competitor-b="{ name: 'Velda', logo: '/logos.png' }"
20+
:competitor-b="{ name: 'Velda', logo: '/logo-76.png' }"
2121
:highlight-winner="true"
2222
:show-winner-badge="true"
2323
/>

0 commit comments

Comments
Β (0)