About 61,700 results
Open links in new tab
  1. ParallelGcc - GCC Wiki

    The Parallel GCC This page introduces the Parallel GCC -- a research project aiming to parallelize a real-world compiler. This can be useful in many-core machines where GNU Make …

  2. GNU community announces ‘Parallel GCC’ for parallelism in real …

    Sep 16, 2019 · The team behind the GNU project announced Parallel GCC, a research project aiming to parallelize a real-world compiler which can be used in machines with many cores …

  3. [2504.14775] gLLM: Global Balanced Pipeline Parallelism System …

    Apr 21, 2025 · Pipeline parallelism has emerged as a predominant approach for deploying large language models (LLMs) across distributed nodes, owing to its lower communication overhead …

  4. Foreach globals and speed – Galen Holt

    I previously tested the impact of unused globals on speed, but only briefly. Here, I’ll be more systematic, because it gets tricky fast if we need to be super careful about what objects exist …

  5. Using - GCC, the GNU Compiler Collection

    Using Parallel Mode To use the libstdc++ parallel mode, compile your application with the prerequisite flags as detailed above, and in addition add -D_GLIBCXX_PARALLEL. This will …

  6. Parallel (GNU make)

    Parallel (GNU make)5.4 Parallel Execution GNU make knows how to execute several recipes at once. Normally, make will execute only one recipe at a time, waiting for it to finish before …

  7. Chapter 18. Parallel Mode - GCC, the GNU Compiler Collection

    Several of the standard algorithms, for instance std::sort, are made parallel using OpenMP annotations. These parallel mode constructs can be invoked by explicit source declaration or …

  8. c++ - Compiling with g++ using multiple cores - Stack Overflow

    Jan 5, 2009 · This command is used to build a project using the make build system with multiple jobs running in parallel. For example, if your system has 4 CPU cores, running make -j$(nproc) …

  9. Apr 22, 2025 · This paper presents gLLM, a global balanced pipeline parallelism system for distributed LLM serving incorporating with Token Throt-tling method. Token Throtling …

  10. AutoParInGCC - GCC Wiki

    It automatically generates parallel (multi-threaded) code for specific loop constructs using the gomp library. The first version of the code, allowing parallelization of inner-most loops that …