You must Sign In to post a response.
  • Category: Career Guidance

    Pipeline architecture

    Hi,

    can anyone please help me to learn about pipeline architecture .

    it will be good if any one can explain with example .

    Thanks
  • #765879
    Pipelining is an implementation technique where multiple instructions are overlapped in execution. The computer pipeline is divided in stages. Each stage completes a part of an instruction in parallel.
    Regards,
    Kiran.

  • #765893
    Hi,
    It is a design pattern. Processes are arranged in a manner so that output of each process serves as input to the next. Buffering is provided within each process or chain of pipeline. Pipelining is important while creating an multitasking application. It may be one-way or bidirectional.

    Please go through this URL where you will find detailed implementation in terms of code:
    http://www.codeproject.com/Tips/843127/Simple-Pipeline-Implementation-in-Csharp
    Hope it helps.!


  • Sign In to post your comments