Notice: We have migrated to GitLab launching 2024-05-01 see here: https://gitlab.rtems.org/

Changes between Version 1 and Version 2 of Ticket #2834


Ignore:
Timestamp:
12/07/16 07:49:07 (7 years ago)
Author:
Sebastian Huber
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2834 – Description

    v1 v2  
    1 Cilk Plus is a C++ language extension developed by Intel.  It is proposed as a
    2 C++ standard extension.
    3 It uses a work stealing scheduler.  Similar to OpenMP it
    4 consists of two parts,
     1Cilk Plus is a C++ language extension developed by Intel.  It is proposed as a C++ standard extension. It uses a work stealing scheduler.  Similar to OpenMP it consists of two parts,
    52
    63* the code generation by the compiler, and
    74* a run-time library.
    85
    9 The code generation works for the RTEMS using a recent GCC.  It is feasible to
    10 port the run-time library (libcilkrt) to RTEMS.  However, some issues must
    11 be dealt with.
     6The code generation works for the RTEMS using a recent GCC.  It is feasible to port the run-time library (libcilkrt) to RTEMS.  However, some issues must be dealt with.
    127
    138* Currently virtual memory via `mmap()` is used to manage the worker stacks (cactus-stack).