Lines Matching refs:a
4 Vector<float32_t,NB> d = a + b * c;
11 In above code, `a + b * c` is not computing anything !
12 `a + b * c` is creating a representation of the expression : an abstract syntax tree (AST) at build…
15 … operators in one loop. The code generated thus contains only one loop with a fusion of all the op…
17 …re a view on an existing part of a vector. You can use a virtual vector for instance to read some …
21 d = a;
24 and `d` and `a` are virtual vectors then nothing will be written to `d` !
26 `d` will becomes `a` and `a` will no more be valid.
28 If you want to copy a virtual vector you need to make an expression and write:
31 d = copy(a);
36 For real vectors, a copy would occur. But since there is no overhead in adding `copy` it is better …