Displaying 4 results from an estimated 4 matches for "191919".
2013 Feb 09
1
R maps Help
...er(p1,p2,n=100, addStartEnd=TRUE)
colindex <- round( (fsub[j,]$cnt / maxcnt) * length(colors))
lines(inter, col=colors[colindex], lwd=0.1)
}
}
map_usa <- function(){
xlim <- c(-171.738281, -56.601563)
ylim <- c(12.039321, 71.856229)
map("world", col="#191919", fill=TRUE, bg="#736F6E", lwd=0.05, xlim=xlim,
ylim=ylim)
add_lines()
}
map_world <- function(){
map("world", col="#191919", fill=TRUE, bg="#736F6E", lwd=.1)
add_lines()
}
map_world()
--
View this message in context: http://r.789695.n4....
2015 Feb 14
2
[LLVMdev] trunk's optimizer generates slower code than 3.5
...sse3 -fomit-frame-pointer -fno-stack-protector
> -fno-exceptions -o 8 8.c
> % time ./8 9
> 352 solutions
> 4.050u 0.001s 0:04.05 100.0% 0+0k 0+0io 2pf+0w
> % time ./8 10
> 724 solutions
> 114.808u 0.041s 1:54.86 99.9% 0+0k 0+0io 2pf+0w
>
> On Fri, Feb 13, 2015 at 3:37 AM, 191919 <191919 at gmail.com> wrote:
>> I submitted the problem report to clang's bugzilla but no one seems to
>> care so I have to send it to the mailing list.
>>
>> clang 3.7 svn (trunk 229055 as the time I was to report this problem)
>> generates slower code than...
2015 Feb 14
2
[LLVMdev] trunk's optimizer generates slower code than 3.5
...ons -o 8 8.c
>>> % time ./8 9
>>> 352 solutions
>>> 4.050u 0.001s 0:04.05 100.0% 0+0k 0+0io 2pf+0w
>>> % time ./8 10
>>> 724 solutions
>>> 114.808u 0.041s 1:54.86 99.9% 0+0k 0+0io 2pf+0w
>>>
>>> On Fri, Feb 13, 2015 at 3:37 AM, 191919 <191919 at gmail.com> wrote:
>>>> I submitted the problem report to clang's bugzilla but no one seems to
>>>> care so I have to send it to the mailing list.
>>>>
>>>> clang 3.7 svn (trunk 229055 as the time I was to report this problem)
>...
2015 Feb 13
2
[LLVMdev] trunk's optimizer generates slower code than 3.5
I submitted the problem report to clang's bugzilla but no one seems to
care so I have to send it to the mailing list.
clang 3.7 svn (trunk 229055 as the time I was to report this problem)
generates slower code than 3.5 (Apple LLVM version 6.0
(clang-600.0.56) (based on LLVM 3.5svn)) for the following code.
It is a "8 queens puzzle" solver written as an educational example. As