search for: vec8

Displaying 3 results from an estimated 3 matches for "vec8".

Did you mean: vec
2016 Jan 28
2
Vectors in Sparc
...that I have, so I'd love to work out what I need to do to resolve this. I'm currently not making much headway into it. I'm going to try to simplify this to the core problem I can see and hope I haven't missed anything relevant. The original code I have is as follows: typedef char vec8 __attribute__((vector_size(4))); extern vec8 foo1_8(void); extern vec8 foo2_8(void); vec8 fun8(void) { return foo1_8 () & foo2_8 (); } On x86, this compiles into this IR: ; Function Attrs: nounwind uwtable define i32 @fun8() #0 !dbg !4 { %1 = tail call i32 @foo1_8() #2, !dbg !23 %2 =...
2011 May 24
2
ruby 1.9.2 rpms for testing
Hello... I noticed from the list that puppet is not ready for ruby 1.9.2 yet. I''m working at a ruby shop so I gave a shot at building ruby 1.9.2 rpms with supporting gems for RHEL/CentOS. I have ruby-1.9.2 rpms that replace the vendor rpms and ruby192 rpms that install in parallel with the vendor rpms. Is anyone interested in using these rpms to get puppet working with 1.9.2 and/or
2002 Jan 10
1
Size of type double in object type dist (PR#1255)
...vec <- MDS(PA, 2) > attr(PA, "Size") [1] 67 > plot(vec, type="n", xlab="", ylab="") > attr(PA, "Size") [1] 67 > text(vec, rownames(vec), cex=0.5) > attr(PA, "Size") [1] 67 > > vec8 <- MDS(PA, 8) > attr(PA, "Size") [1] 67 > d2 <- dist(vec) > attr(PA, "Size"); attr(d2, "Size") [1] 67 [1] 67 > d8 <- dist(vec8) > attr(PA, "Size"); attr(d2, "Size"); attr(d8, "Size")...