Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始めるperformance-check
スター3
フォーク0
更新日2026年2月7日 11:31
パフォーマンステストと最適化確認
インストール
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SKILL.md
readonlyメニュー
パフォーマンステストと最適化確認
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | performance-check |
| description | パフォーマンステストと最適化確認 |
コンパイラとランタイムのパフォーマンスを確認するスキルです。
time ./cm compile <file.cm>
time ./a.out
# Python比較
time python3 <file.py>
# C++比較
time g++ -O2 <file.cpp> && time ./a.out
./cm compile -O0 <file.cm>
./cm compile -O2 <file.cm>
./cm compile -O3 <file.cm>
# Instruments
xcrun xctrace record --template 'Time Profiler' --launch ./a.out
# perf
perf record ./a.out
perf report