-
Notifications
You must be signed in to change notification settings - Fork 25.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
102 additions
and
18 deletions.
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
source "https://rubygems.org" | ||
gemspec | ||
gem 'jekyll-polyglot', git: 'https://github.com/hionpu/polyglot', branch: 'master' |
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
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 |
---|---|---|
|
@@ -26,3 +26,5 @@ | |
<script src="{{ script | relative_url }}"></script> | ||
{% endfor %} | ||
{% endif %} | ||
|
||
{% I18n_Headers %} |
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
This file was deleted.
Oops, something went wrong.
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,45 @@ | ||
--- | ||
title: "GPU cloud setting(paperspace, vast.ai)" | ||
excerpt: "How to set up GPU cloud using papersapce or vast.ai" | ||
lang: en | ||
lang-ref: gpu-cloud-setup | ||
permalink: set_up/gpu-cloud-setup/ | ||
categories: | ||
- set_up | ||
tags: | ||
- GPU server | ||
- GPU cloud | ||
- GPU VM | ||
- GPU docker container | ||
- GPU setting | ||
|
||
toc_label: "목차" # 목차 제목을 원하는 대로 설정 | ||
toc: true # 목차 활성화 | ||
toc_sticky: true # 스크롤 시 목차 고정 | ||
|
||
author: "limJhyeok" # 포스트 작성자 이름 | ||
image: "/assets/images/gpu-cloud-setup.jpg" # 포스트 대표 이미지 경로 | ||
share: true # 소셜 미디어 공유 버튼 활성화 | ||
comments: true # 댓글 기능 활성화 | ||
related: | ||
- "기타 GPU 클라우드 관련 포스트" # 관련 포스트 제목 | ||
- "GPU 서버 최적화 방법" | ||
|
||
date: 2024-11-03 | ||
last_modified_at: 2022-11-03 | ||
redirect_from: | ||
- /old-gpu-cloud-post # 이전 포스트에서 리디렉션 | ||
--- | ||
|
||
|
||
## 1. GPU 클라우드란? | ||
GPU 클라우드의 개념과 장점에 대해 설명합니다. | ||
|
||
## 2. Paperspace 설정하기 | ||
Paperspace를 설정하는 단계별 가이드를 제공합니다. | ||
|
||
### 2.1. Paperspace 계정 생성 | ||
계정을 만드는 방법을 설명합니다. | ||
|
||
## 3. Vast.ai 설정하기 | ||
Vast.ai의 설정 방법을 안내합니다. |
3 changes: 3 additions & 0 deletions
3
_posts/2024-11-03-gpu-cloud-setup.md → ...s/ko/set_up/2024-11-03-gpu-cloud-setup.md
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
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,33 @@ | ||
--- | ||
layout: | ||
--- | ||
|
||
{% comment %}<!-- I am using hreflang attributes on a page-by-page basis so no need to include them per url here -->{% endcomment %} | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml"> | ||
{% for lang in site.languages %} | ||
|
||
{% comment %}<!-- It would be better to use the where_exp filter in the first loop but I dont think the unless expression is supported -->{% endcomment %} | ||
{% for node in site.pages %} | ||
{% comment %}<!-- very lazy check to see if page is in the exclude list - this means excluded pages are not gonna be in the sitemap at all, write exceptions as necessary -->{% endcomment %} | ||
{% unless site.exclude_from_localization contains node.path %} | ||
{% comment %}<!-- I am assuming if there's not layout assigned, then not include the page in the sitemap, you may want to change this -->{% endcomment %} | ||
{% if node.layout %} | ||
<url> | ||
<loc>{% if lang == site.default_lang %}{{ node.url | absolute_url }}{% else %}{{ node.url | prepend: lang | prepend: '/' | absolute_url }}{% endif %}</loc> | ||
</url> | ||
{% endif %} | ||
{% endunless %} | ||
{% endfor %} | ||
|
||
{% comment %}<!-- This loops through all site collections including posts -->{% endcomment %} | ||
{% for collection in site.collections %} | ||
{% for node in site[collection.label] %} | ||
<url> | ||
<loc>{% if lang == site.default_lang %}{{ node.url | absolute_url }}{% else %}{{ node.url | prepend: lang | prepend: '/' | absolute_url }}{% endif %}</loc> | ||
</url> | ||
{% endfor %} | ||
{% endfor %} | ||
|
||
{% endfor %} | ||
</urlset> |