GLM-5.2-R9-Adaptive-MTP-FULL-CUDA-4x-DGX-Spark

(★ 12)

GLM-5.2 on 4x DGX Spark with adaptive MTP K2/K4/K5, FULL CUDA graphs, DCP2, 520K context, and a downloadable ARM64 runtime image.

파일 탐색기

  • .gitattributes
  • .gitignore
  • ATTRIBUTION.md
  • IMAGE_AUDIT.md
  • LICENSE
  • NOTICE.md
  • PUBLISHING.md
  • README.md
  • release-manifest.json
  • RELEASE_NOTES.md
  • SECURITY.md
  • VALIDATION.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

python3

설명 보기 ▼

이 명령은 `python`의 별칭입니다.

tldr python

자세한 내용은 원본 명령을 참고하세요:

🔍

zstd

설명 보기 ▼

Zstandard 압축을 사용하여 파일을 압축하거나 압축 해제.
더 많은 정보: <https://manned.org/zstd>.

zstd {{path/to/file}}

파일을 `.zst` 확장자로 새 파일로 압축:

zstd {{[-d|--decompress]}} {{path/to/file.zst}}

파일 압축 해제:

zstd {{[-d|--decompress]}} {{[-c|--stdout]}} {{path/to/file.zst}}

`stdout`으로 압축 해제:

🔍

systemctl disable

설명 보기 ▼

Disable systemd services.
See also: `systemctl revert`.

systemctl disable {{unit}}

Stop a service from running on boot:

systemctl disable {{unit}} --now

Stop a service from running on boot and stop its current execution:

systemctl disable {{unit}} --user

Stop a user service from running on login:

🔍

systemctl set-default

설명 보기 ▼

Symlink the `default.target` alias to the given target unit.

systemctl set-default {{target_name.target}}

Set `systemd`'s default boot mode:

systemctl set-default graphical.target

Set `systemd` to boot to GUI mode by default:

systemctl set-default multi-user.target

Set `systemd` to boot to CLI mode by default:

// repository documentation