Tagged Questions
The spu tag has no wiki summary.
2
votes
3answers
174 views
GSL Libraries on the SPU
has anyone succeed in compiling/porting/finding the GNU scientific libraries for the SPU?
IF not, do similar libraries or wrappers for the SPU exist? or, how would you just port some of the ...
1
vote
2answers
102 views
Cell SPU error in C
When I compile a SPU program, I get the following compilation error:
(.text+0x28): relocation truncated to fit: SPU_ADDR18 against symbol `_end' defined in *ABS* section in spu
What does it mean?
...
1
vote
1answer
271 views
Is it possible to increase accuracy of floating point arithemtic with gcc?
some program in C which does extensive floating point calculations get right results on a pc linux box, but wrong results on the SPE of the cell processor, but not on the PPU of the cell. I am using ...
1
vote
2answers
266 views
Direct SPU to SPU DMA requests on the Cell Processor?
Normal DMA requests on the Cell happen between the SPUs and the PPU. However, I have read that it is possible to set up DMA directly between SPUs. Anyone have any idea how this is accomplished?
0
votes
1answer
151 views
Best way to vectorize C code by hand
I want to vectorize by hand some C code, in order to it speedup. For that purpose (SPE on the Cell processor or CBE) I want to use SIMD math. The code originally uses some physical vector calculations ...