search for: op13

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

Did you mean: op1
2004 Oct 13
1
random forest -optimising mtry
...ints etc.) and proximities. First I ran a forest with mtry =30 and ntree=2500. The result was an oob-estimate of overall error rate of zero, perfect classification. In order to explore my results, I calculated the average proximity between the classes. I got: > res op12 op13 op14 op23 op24 op34 [1,] 0.06145473 0.1369406 0.08036264 0.06171053 0.1113126 0.06732087 For me, the important meaning of these values is that from comparision of class 1 and 3, as well as class 2 and 4 result more common features than from other comparision...
2012 Nov 02
0
[LLVMdev] Alternate instruction encoding for subtargets - SOLVED
...dag InOperandList = ins; let AsmString = asmstr; let Pattern = pattern; } My instruction formats classes encode the same instruction twice: into the Inst and Inst6 fields. The operation subcode which is different between the sub-targets is also specified twice in the class parameters as the op13 (KCPSM3) and op16 (KCPSM6) argument. class AJumpCC<bits<6> op13, bits<6> op16, dag outs, dag ins, string asmstr, list<dag> pattern> : InstPB<FCCAA, outs, ins, asmstr, pattern> { bits<2> cc; // condition codes bits<12&gt...
2009 Dec 31
1
[PATCH] Autogenerate uureg opcode macros
...t) +#define OP11(op) define op(dst, src) ureg_##op(ureg, dst, _src(src)) +#define OP12(op) define op(dst, src0, src1) ureg_##op(ureg, dst, _src(src0), _src(src1)) +#define OP12_TEX(op) define op(dst, target, src0, src1) ureg_##op(ureg, dst, TGSI_TEXTURE_ CAT target, _src(src0), _src(src1)) +#define OP13(op) define op(dst, src0, src1, src2) ureg_##op(ureg, dst, _src(src0), _src(src1), _src(src2)) +#define OP14_TEX(op) define op(dst, target, src0, src1, src2, src3) ureg_##op(ureg, dst, TGSI_TEXTURE_ CAT target, _src(src0), _src(src1), _src(src2), _src(src3)) + +#include <tgsi/tgsi_opcode_tmp.h&gt...