ワンクリックで
paracodex-cuda-omp-analysis
ParaCodex prompt for cuda omp analysis step.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
ParaCodex prompt for cuda omp analysis step.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
ParaCodex baseline skill: translate serial / parallel code to GPU-offloaded target API, optimize, compile, and run — all in a single session.
ParaCodex prompt for cuda to hip analysis step.
ParaCodex prompt for cuda to hip step1 (implementation) step.
ParaCodex prompt for cuda to hip step2 (optimization) step.
ParaCodex prompt for cuda ocl analysis step.
ParaCodex prompt for cuda ocl step1 step.
| name | paracodex-cuda-omp-analysis |
| description | ParaCodex prompt for cuda omp analysis step. |
Directory: {kernel_dir}/
Files: {file_listing}
Reference: Check Makefile in {kernel_dir}/ (do not modify)
Analyze CUDA kernels in {source_dir}/ and produce {kernel_dir}/analysis.md.
Copy source files to {kernel_dir}/ with suffix conversion (.cu → .c or .cpp).
Do not modify code in this step.
{file_listing} from {source_dir}/ to {kernel_dir}/..cu → .c (C) or .cpp (C++).references/output.md (File Conversion Mapping).Makefile.nvc using nvc++.grep -n "__global__\|__device__" *.cu 2>/dev/null
grep -n "<<<.*>>>" *.cu 2>/dev/null
grep -n "for\s*(" *.cu 2>/dev/null | head -100
grep -n "for.*iter\|for.*it\|while" *.cu 2>/dev/null | head -50
Reference: references/examples.md (Decision Tree for CUDA Kernels).
__syncthreads, atomicAdd, __shared__.system_info_summary.txt and choose that size against the actual device memory and compute capability; prefer the largest short-run, memory-safe input that should load the GPU meaningfully.Reference: references/output.md (Use this template).
__syncthreads, shared memory, atomics.__syncthreads() patterns (no direct OMP equivalent).