Skip to content

Commit

Permalink
update: partition
Browse files Browse the repository at this point in the history
  • Loading branch information
Cloudac7 committed Nov 28, 2024
1 parent cc8e1fc commit 1dcf522
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 49 deletions.
13 changes: 6 additions & 7 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
# 嘉庚创新实验室智算中心用户使用手册

!!! info
本文档内容更新于 2024-11-11

本文档内容更新于 2024-11-28
该文档为高性能计算平台使用文档,内容包括如何登录集群、如何运行作业和如何使用软件等。

由于受水平和时间所限,错误和不妥之处在所难免,欢迎指出错误和改进意见,我们将尽力完善。

本使用文档包含以下主要内容:

1. [平台简介](introduction/index.md):介绍平台资源
2. [重大更新公告](introduction/updates.md): 汇总智算中心重大更新相关公告信息
3. [快速上手](usage/quick-start.md): 用户快速上手流程
4. [开户流程](introduction/register.md): 介绍开户流程
5. [用户登录与文件传输](usage/login.md):如何登录集群和进行文件传输
6. [分区(队列)管理](usage/partition.md)分区和队列的设置和收费标准
2. [分区规则和收费标准](introduction/partition.md):分区和队列的设置和收费标准
3. [重大更新公告](introduction/updates.md): 汇总智算中心重大更新相关公告信息
4. [快速上手](usage/quick-start.md): 用户快速上手流程
5. [开户流程](introduction/register.md): 介绍开户流程
6. [用户登录与文件传输](usage/login.md)如何登录集群和进行文件传输
7. [SCOW算力平台](usage/scow.md):SCOW平台的使用说明
8. [Slurm作业调度系统](slurm/index.md):详细介绍Slurm的各项功能和使用方法
9. [应用软件及脚本](./usage/apps/index.md):如何使用平台上的应用软件和作业脚本示例
Expand Down
57 changes: 57 additions & 0 deletions docs/introduction/partition.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# 分区规则和收费标准

## 收费标准

### 账户类型划分

嘉庚智算中心按经费支付来源分为内部账户和外部账户。前者为经费直接由厦门大学或嘉庚创新实验室支付或划转至嘉庚智算中心;后者为除前者外的其他经费支付对象,含厦门大学或嘉庚创新实验室在职人员和学生通过个人银行转账的。

### 具体收费标准

按照不同账户类型和提交作业的不同分区(详见下文队列划分部分),收费标准见下表:

| 类别 | CPU (元/核时) | GPU (元/卡时) | FAT (元/核时) |
| -------- | ------------- | ------------- | ------------- |
| 内部账户 | 0.06 | 9.00 | 0.20 |
| 外部账户 | 0.08 | 12.00 | 0.30 |

### 充值赠送比例

中心根据充值情况按照比例提供一定的返赠优惠,赠送优惠同一自然年度内可累计。

- 充值 4.9 万元至 9.9 万元: 按照实际充值金额返赠 10% 的机时费用
- 充值 9.9 万元至 19.9 万元: 按照实际充值金额返赠 20% 的机时费用
- 充值 19.9 万元至 49.9 万元: 按照实际充值金额返赠 50% 的机时费用
- 充值 49.9 万元以上: 按照实际充值金额返赠 100% 的机时费用

## 队列划分

嘉庚智算中心目前按照硬件类型设定了如下的分区,请提交时通过 `--partition=<分区名>``-p <分区名>` 选项进行指定。

### 硬件分区

| 分区名 | 硬件类型 |
| --------- | -------- |
| `cpu` | CPU |
| `gpu` | GPU |
| `fat` | 胖节点 |

### 资源分配关系

| 硬件类型 | 每节点配置 | 每核内存限制 |
| -------- | ----------------------------------- | ------------ |
| CPU | 64核/256G内存 | 最多4G |
| GPU | 64核/8张GPU卡/1.5T内存 | 最多12G |
| FAT | 64核/2T内存 | 最多32G |

## 资源使用限制——QoS

为更加精准地对任务进行管理,我们引入了服务质量(QoS)对任务的时长和优先级进行了限制,请提交时通过 `--qos=<QoS名>` 选项进行指定。

| QoS名 | 优先级 | 任务最长运行时间 |
| -------- | --- | ------------ |
| `normal` | 50 | 2天 (48h) |
| `long` | 25 | 4天 (96h) |

!!! warning "注意"
超过 4 天的任务需提前 1 天邮件告知用户名和 `jobID` ,延长后原则上不超过 10 天。
40 changes: 0 additions & 40 deletions docs/usage/partition.md

This file was deleted.

4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ markdown_extensions:

nav:
- 首页: index.md
- 平台概况:
- 平台概况和介绍:
- introduction/index.md
- 分区规则和收费标准: usage/partition.md
- 开户流程: introduction/register.md
- 重大更新公告: introduction/updates.md
- 使用指南:
Expand All @@ -82,7 +83,6 @@ nav:
- usage/apps/orca.md
- usage/apps/pytorch.md
- usage/apps/vasp.md
- 分区规则和收费标准: usage/partition.md
- SCOW 算力平台: usage/scow.md
- 应用程序的编译与安装: usage/compile-install.md
- Slurm作业调度系统:
Expand Down

0 comments on commit 1dcf522

Please sign in to comment.