Displaying 9 results from an estimated 9 matches for "symbol1".
Did you mean:
symbol
2012 Jun 06
0
[LLVMdev] LIT Any/All options
...a multi-scan option.
As far as I know, you have things like "CHECK", "CHECK-NOT" and
"CHECK-NEXT", but sometimes the order of the output is less relevant
(especially for debug information, on both IR and Dwarf outputs).
So, my idea are:
1. CHECK-ANY/OR:
CHECK-ANY: %symbol1 = op %s2, %s3
CHECK-OR: %symbol = other-op %s2, other option, %s4
CHECK-OR: ...
In that case, either one of the three option (limited by ANY/OR
sequence) could match. If there is a match on any of them, all others
are ignored.
2. CHECK-ALL/AND:
CHECK-ALL: %symbol1 = op %s2, %s3
CHECK-AND: %symbo...
2006 Dec 15
1
xyplot: legend title + legend on 1 line
...? I can get the legend on one line with columns=... but the title is
always on top. I tried a custom key with key=... and text=... but I can't
put the title text in front of the plotting symbol.
I am looking for the following layout of the legend, on one line:
"Legend Title:" + plot symbol1 + legend text1 + plot symbol2 + legend text2
+ ...
Thanks. Rene
--
View this message in context: http://www.nabble.com/xyplot%3A-legend-title-%2B-legend-on-1-line-tf2829327.html#a7898800
Sent from the R help mailing list archive at Nabble.com.
2017 Mar 15
2
[LLD] Linking static library does not resolve symbols as gold/ld
...tin Richtarsky <s at martinien.de> wrote:
> Hi all,
>
> I'm currently trying out lld on a large project. We are currently using
> gold (and used GNU ld before that).
>
> I have come across a few minor issues but could workaround them:
> - Missing support for --defsym=symbol1=symbol2,
> --warn-unknown-eh-frame-section, --exclude-libs
>
> There are two other issues which are more critical, one of which is
> currently blocking me, so I would like to find a solution for this one
> first.
>
> I have a static library that is linked into an executable. Th...
2005 Jul 28
1
conversion from SAS
...p;
merge sort_dataset(keep=station date bloom pred ucl
lcl) chla_italian (rename=(chl_a=chla));
by station date;
* lcl=exp(lcl);
* ucl=exp(ucl);
* pred=exp(pred);
if bloom=. then bloom=1;
if bloom=0 then chla1=chla; else chla1=.;
if bloom=1 then chla2=chla; else chla2=.;
run;
symbol1 i=none value=plus color=red;
symbol2 i=none value=plus color=green;
symbol3 i=join value=none line=1 color=black;
axis1 logbase=10; axis1;
proc gplot data=chla_sep;
plot chla2*date=1 chla1*date=2 (ucl pred
lcl)*date=3 /overlay vaxis=axis1;
by station;
run;
quit;
proc glm data=chla_sep;
cla...
2017 Mar 15
2
[LLD] Linking static library does not resolve symbols as gold/ld
...Hi all,
> >>
> >> I'm currently trying out lld on a large project. We are currently using
> >> gold (and used GNU ld before that).
> >>
> >> I have come across a few minor issues but could workaround them:
> >> - Missing support for --defsym=symbol1=symbol2,
> >> --warn-unknown-eh-frame-section, --exclude-libs
> >>
> >> There are two other issues which are more critical, one of which is
> >> currently blocking me, so I would like to find a solution for this one
> >> first.
> >>
> >>...
2017 Mar 23
2
[LLD] Linking static library does not resolve symbols as gold/ld
...tly trying out lld on a large project. We are currently
> >> using
> >> >> gold (and used GNU ld before that).
> >> >>
> >> >> I have come across a few minor issues but could workaround them:
> >> >> - Missing support for --defsym=symbol1=symbol2,
> >> >> --warn-unknown-eh-frame-section, --exclude-libs
> >> >>
> >> >> There are two other issues which are more critical, one of which is
> >> >> currently blocking me, so I would like to find a solution for this
> >> o...
2017 Apr 25
1
[LLD] Linking static library does not resolve symbols as gold/ld
...currently
> >> >> using
> >> >> >> gold (and used GNU ld before that).
> >> >> >>
> >> >> >> I have come across a few minor issues but could workaround them:
> >> >> >> - Missing support for --defsym=symbol1=symbol2,
> >> >> >> --warn-unknown-eh-frame-section, --exclude-libs
> >> >> >>
> >> >> >> There are two other issues which are more critical, one of which
> >> is
> >> >> >> currently blocking me, so I woul...
2004 Jul 04
2
smooth non cumulative baseline hazard in Cox model
...nd;
quit;
%if &nset = yes %then %let c==group;
%else %let c=;
proc gplot data=_plt_;
plot lambda*s &c / vaxis=axis1 vzero haxis=axis2;
axis1 label=(angle=90 f=titalic 'Hazard Function' ) minor=none ;
axis2 label=(f=titalic "Time (bandwidth=&width)") minor=none;
symbol1 i=join color=black line=1;
symbol2 i=join color=red line=2;
symbol3 i=join color=green line=3;
symbol4 i=join color=blue line=4;
run;
quit;
%mend smooth;
2020 Mar 25
4
Multi-Threading Compilers
On Wed, Mar 25, 2020 at 8:52 AM Doerfert, Johannes <jdoerfert at anl.gov> wrote:
> I think the solution space for the value/use-list issue might be larger
> than what was mentioned so far.
>
>
> Some random thoughts:
>
> If no pass ever walks the use list of a constant, except globals which
> we could handle differently, we could get rid of their use-list or
>