search for: reccur

Displaying 4 results from an estimated 4 matches for "reccur".

Did you mean: recur
2019 May 02
2
llvm is illegally vectorizing with a recurrence on skylake
...**/ static void __attribute__ ((always_inline)) one( const int *restrict in, const int *const end, const unsigned shift, int *const restrict index, int *const restrict out) { do { int a_idx = *in>>shift; int b_idx = index[a_idx]; out[b_idx] = *in; // <-- reccurence as index[a_idx] can be the index[a_idx]++; // same and incremented within the vector } while(++in!=end); // which leads to incorrect results } #ifndef NO_TWO static void __attribute__ ((noinline)) two( const int *restrict in, const int *const end,...
2017 Oct 12
1
Recurrence plots in R using different colours
...usual rqa command, my plot is pretty much black - no surprises there really considering the exhaustive nature of my coding scheme and the fact that there are only 6 different categories. What i would like to do is colour-code my categories in order to arrive at a plot that shows the colour of the reccurence of the specific category. Eventually that would mean a plot with six different colours (next to white, which means no recurrence), rather than the plain black and white plot which does not reflect the nature of the recurrence. I hope that my explanation is clear enough. My procedure up until n...
2005 Dec 20
1
EXT3-fs error
Hello friends, I am experiencing some weird beheaviour on one of my computers. I appologize for the laconic subject, but I really don't know anything more than that. I'll tell the story in chronological order. I have an HP server with five SCSI disks. The disks are _not_ in RAID. I installed FC2 on one disk. I installed a 2.6.11.7 and used it for boot. The server runs some software
2006 Mar 04
29
Getting RJS / EgdeRails working
Hi, using Rails 1.0 on windows (without svn yet) I just wrote "rake freeze_edge". Are the RJS-templates already included then ? When I write "rake update_javascripts" I receive this error: svn: ''.'' is not a working copy Any tipps for a newbie on how to get the update done (if neccessary) ? thx Jan