Displaying 2 results from an estimated 2 matches for "tbl3".
Did you mean:
  tbl
  
2013 Jun 07
1
[LLVMdev] tablegen foreach question
...st concise) way to create the following four defs?
D0 = (0, "A")
D1 = (1, "B")
D2 = (2, "C")
D3 = (3, "D")
I tried to use list of strings and the foreach construct, but apparently
tablegen doesn't allow using identifiers to access array elements.
$ cat tbl3.td
def StrList {
  list<string> ls = ["A", "B", "C", "D"];
}
class Base0<int i> {
  int I = i;
}
class Base1<string s> {
  string S1 = s;
}
foreach i = 0-3 in
def D#i: Base0<i>, Base1<StrList.ls[i]>;
$ llvm-tblgen tbl3.td
tb...
2010 Aug 04
2
discrete ECDF
Dear list;
I just created a utility function that replicates what I have done in  
the past with Excel or OO.org by putting a formula of the form  
=sum($A1:A$1) in an upper-corner of a section and then doing a "fill"  
procedure by dragging the lower-rt corner down and to the right. When  
divided by the grand sum of the entries this function then calculates  
a 2D-discrete-ECDF.
I