Changes between Version 1 and Version 2 of Chapel


Ignore:
Timestamp:
11/02/11 16:11:43 (15 years ago)
Author:
stachnik
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Chapel

    v1 v2  
    77 * If a given thread for a forall loop is assigned iterations 1, 3 and 7, will they necessarily be assigned in that order?
    88 * How do/will parallel iterators affect the assignment of threads to iterations of a forall loop.
     9
     10 = Chapel Constructs =
     11 == Concepts ==
     12 * Tasks
     13 == Types ==
     14 * int
     15 * bool
     16 * range
     17 * rectangular domain
     18 * array
     19 * sync
     20 * single
     21 == Statements ==
     22 * for
     23 * forall
     24 * coforall
     25 * begin
     26 * cobegin
     27 * call
     28 * assignment
     29 * if
     30 * block
     31 * select
     32 * expression
     33 * (do)while
     34 * return
     35 * procedure declaration
     36 * variable declaration
     37 == Expressions ==
     38 * Literal
     39 * Variable
     40 * Function call
     41 * L-Value
     42 * Parenthesis
     43 * Unary operators
     44   * - (Negation)
     45 * Binary Operators
     46   * + (Addition)
     47   * - (Subtraction)
     48   * / (Integer/Rational Divide)
     49   * * (Times)
     50   * % (Modulus)
     51   * | | (Logical Or)
     52   * & & (Logical and)
     53 * = (Assignment)