Displaying 13 results from an estimated 13 matches for "endgroup".
2018 May 15
1
[MachineScheduler] Question about IssueWidth / NumMicroOps
Hi Andy,
>> Right now it seems that BeginGroup/EndGroup is only used by SystemZ,
>> or? I see they are used in checkHazard(), which I actually don't see
>> as helpful during pre-RA scheduling for SystemZ. Could this be made
>> optional, or perhaps only done post-RA if target does post-RA
>> scheduling? SystemZ does post-R...
2018 May 14
2
[MachineScheduler] Question about IssueWidth / NumMicroOps
...y true for SystemZ also since the majority of
instructions are basically a single micro-op.
>
> (caveat: there may still be GenericScheduler implementation deficiencies because it is trying to support more scheduling features than we have in-tree targets).
Right now it seems that BeginGroup/EndGroup is only used by SystemZ, or?
I see they are used in checkHazard(), which I actually don't see as
helpful during pre-RA scheduling for SystemZ. Could this be made
optional, or perhaps only done post-RA if target does post-RA
scheduling? SystemZ does post-RA scheduling to manage decoder group...
2018 May 14
0
[MachineScheduler] Question about IssueWidth / NumMicroOps
...also since the majority of instructions are basically a single micro-op.
>
>>
>> (caveat: there may still be GenericScheduler implementation deficiencies because it is trying to support more scheduling features than we have in-tree targets).
> Right now it seems that BeginGroup/EndGroup is only used by SystemZ, or? I see they are used in checkHazard(), which I actually don't see as helpful during pre-RA scheduling for SystemZ. Could this be made optional, or perhaps only done post-RA if target does post-RA scheduling? SystemZ does post-RA scheduling to manage decoder grouping,...
2015 Jan 03
0
Potential cross-platform package building issue
...! Missing $ inserted.
<inserted text>
$
l.682 }{}
! Missing } inserted.
<inserted text>
}
l.682 }{}
! Display math should end with $$.
<to be read again>
\@@par
l.682 }{}
! Extra }, or forgotten \endgroup.
\par ...m \@noitemerr {\@@par }\fi \else {\@@par }
\fi
l.682 }{}
! Missing $ inserted.
<inserted text>
$
l.682 }{}
! Missing $ inserted.
<inserted text>
$
l.682 }{}
! Miss...
2015 Jan 03
4
Potential cross-platform package building issue
I am using 32-bit R 3.1.2 on Windows 7.
I recently conducted an `R CMD check --as-cran` on a recently-developed
package and received only the 'New submission' note. Research on
StackOverflow and on R-devel suggested this could be ignored. I also used
devtools::build_win() and received no notes or warnings, other than the one
mentioned previously. Lastly, I conducted an `R CMD check` with
2008 Oct 17
1
R-code in Latex --- $ sign causes error
hi,
here's what i have:
\lstset{
basicstyle=\ttfamily,
keywordstyle=\bfseries,
showstringspaces=false,
columns = fullflexible,
mathescape = true,
language=R
}
\begin{lstlisting}
lst$val<-val
\end{lstlisting}
./software.tex:16:Extra }, or forgotten \endgroup. lst$
the culprit here is the $ sign.
thanks.
ps:
i'm posting here rather than Latex is bec i guess an R user is more likely 2
to have encountered this before, but if not ok, pls let me know.
[[alternative HTML version deleted]]
2010 Sep 07
1
problems with siar package
...ollapses on
during the run. The error message says:
*** caught segfault ***
address 0xb31941cc, cause 'memory not mapped'
Traceback:
1: .C("siarmcmcv4", as.integer(numdata), as.integer(numsources),
as.integer(numiso), as.integer(numgroups), as.integer(startgroup),
as.integer(endgroup), as.integer(siardata$iterations),
as.integer(siardata$burnin), as.integer(siardata$howmany),
as.integer(siardata$thinby), as.double(prior), as.data.frame(data2),
as.data.frame(concdepdata), as.data.frame(sourcedata),
as.data.frame(correctionsdata), as.data.frame(parameters))
2: siarmcmcdirichletv...
2012 Mar 14
1
issue with Rd2pdf and \Sexpr in Rd files
...neric/oberdiek/gettitlestring.sty))
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/inconsolata/t1fi4.fd)
/Users/dtenenba/dev/bioc_devel/genefu/man/.Rd2pdf62869/Rd2.tex:39: Missing \end
group inserted.
<inserted text>
\endgroup
l.39 }
?
/Users/dtenenba/dev/bioc_devel/genefu/man/.Rd2pdf62869/Rd2.tex:39: Emergency st
op.
<inserted text>
\endgroup
l.39 }
/Users/dtenenba/dev/bioc_devel/genefu/man/.Rd2pdf62869/Rd2.tex:39: ==> Fatal e
rror occurred, no output PDF file produced!
Transcript written on...
2003 May 17
1
problem building dvi and pdf documentation on Darwin 10.2.6
...; UseExternalXrefs at settitle
R
@setzzz ...tzzz ->@expandafter @gdef @csname SET#1
@endcsname {#2}
@setyyy ... @empty @else @setzzz {#1}#2 at endsetzzz
@fi @endgroup
l.5 @set UseExternalXrefs at settitle R FAQ
? [I type <return> here]
(/sw/share/texmf/tex/texinfo/txi-en.tex) [1] [-1] Chapter 1 (./R-FAQ.tmp)
Cross reference values unknown; you must run TeX again. Chapter 2 [1] [2]
[3] (./R-FAQ.tmp) (./R-FAQ.tmp) [...
2004 Nov 09
0
Is nesting {} inside \eqn OK?
...8 ...tor of coefficients for outcome \eqn{j}{}
and
I've inserted something that you may have forgotten.
-------------------------------------------------------
Notice that the argument seems to have been doubled.
I tried using \begingroup and \endgroup, and ran into problem with a
later \eqn with nested braces.
For reference, particularly in case I've missed something earlier, here
is a fuller excerpt from the input file:
--------------------------------------------
With \eqn{J} possible outcomes and \eqn{p_j}{p(j)} the probability of
th...
2018 May 09
0
[MachineScheduler] Question about IssueWidth / NumMicroOps
...es BTW not make much sense on SystemZ, but that's another question).
>
> checkHazard() also return hazard if
>
> (CurrMOps > 0 &&
> ((isTop() && SchedModel->mustBeginGroup(SU->getInstr())) ||
> (!isTop() && SchedModel->mustEndGroup(SU->getInstr()))))
>
> , which also per the same lines makes me think that this is intended for the instruction stream management, or (1).
>
> There is also the fact that
>
> IsResourceLimited =
> checkResourceLimit(SchedModel->getLatencyFactor(), getCriticalCoun...
2018 May 09
2
[MachineScheduler] Question about IssueWidth / NumMicroOps
...r decoder groups
pre-RA does BTW not make much sense on SystemZ, but that's another
question).
checkHazard() also return hazard if
(CurrMOps > 0 &&
((isTop() && SchedModel->mustBeginGroup(SU->getInstr())) ||
(!isTop() && SchedModel->mustEndGroup(SU->getInstr()))))
, which also per the same lines makes me think that this is intended for
the instruction stream management, or (1).
There is also the fact that
IsResourceLimited =
checkResourceLimit(SchedModel->getLatencyFactor(),
getCriticalCount(),
g...
2005 Nov 17
4
problem with \eqn (PR#8322)
...$
l.7 \eqn{{\bf\beta}_j}{\bf\beta}_
jnormal-bracket5bracket-normal{b(j)}
--
! Missing $ inserted.
<inserted text>
$
l.16
--
! Missing } inserted.
<inserted text>
}
l.16
--
! Extra }, or forgotten \endgroup.
\par ...m \@noitemerr {\@@par }\fi \else {\@@par }
\fi
l.16
-------------------------------
I think this is a bug. A query to r-help has produced no response.
Note that \bf\beta seems to have been doubled.
Currently on R 2.2.0.final-4 on Debia...