エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
MUDA : A vector language for CPU — MUDA document v0.1 documentation
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
MUDA : A vector language for CPU — MUDA document v0.1 documentation
What is MUDA?¶ MUDA(MUltiple Data Accelerator) language is a short-vector SIMD language. MUDA’s s... What is MUDA?¶ MUDA(MUltiple Data Accelerator) language is a short-vector SIMD language. MUDA’s syntax is almost like GLSL(OpenGL Shading Language), but the compiled code runs on CPU, because MUDA compiler outputs plain portable SIMD-C code. // SSE code // MUDA code __m128 func(__m128 a, __m128 b) { vec func(vec a, vec b) { return _mm_add_ps( return a * a + b; _mm_mul_ps(a, a), b); } } MUDA is des