Displaying 7 results from an estimated 7 matches for "imm2".
Did you mean:
imm
2008 Mar 31
2
tkconfigure throws an error
...heading<-tklabel(tt,text="Enter date as YYYY-MM-DD")
l1<-tklabel(tt,text="Reporting date")
b1=tkbutton(tt,text="Run")
d.val<-tkentry(tt,width=12)
tkgrid(heading,columnspan=2)
tkgrid(l1,d.val)
tkgrid(b1,columnspan=2)
tkconfigure(b1,command=source("./src/f.imm2.R"))
#########
and get inconsistent errors:
1. Error in structure(.External("dotTclObjv", objv, PACKAGE =
"tcltk"), class = "tclObj") :
[tcl] invalid command name ".6.4". ## when the tkconfigure is
entered from R buffer
2. tkconfigure(b1,command=sou...
2015 Feb 19
2
No text output in login console and shell
Hello,
I have a remote IBM x3550 M4 server that I try to remote control through
IMM2. The problem: only the blinking cursor is visible in login console.
It moves when I type. It moves to where "Login: _" should be if I press
ctrl+c. I can login if I enter the correct login and password, but the
shell that I get also shows only the blinking cursor and no text. I can
is...
2009 May 08
0
[LLVMdev] Question on tablegen
...,
I had a very similar problem and I solved it using a custom vector shuffle and addition instead of mov.
For example,
Vector_shuffle s1, s2, <0,3> is mapped to a custom instruction where I transform the swizzle to a 32bit integer mask and an inverted mask.
So I have dst, src0, src1, imm1, imm2
And I have my asm look similar to:
Add dst, src0.imm1, src1.imm2 and then in the asm printer I intercept vector_shuffle and I convert the integer to x,y,z,w, 0, 1 or _.
For example if the mask is to take x from s1 and yzw from s2, I would generate 0x1000 and 0x0234.
So my result looks like
Iadd d0,...
2009 May 19
1
[LLVMdev] TableGen pattern
Hello,
I am trying to convert the subtree (vector_shuffle v2f32, v2f32
(build_vector imm1, imm2)) to a machine instruction that takes 2
v2f32's and 2 immediates. I tried the following table gen pattern :
(set v2f32Reg:$dst, (vector_shuffle v2f32Reg:$src1, v2f32Reg:$src2,
(build_vector
imm:$c1, imm:$c2)))
Table gen barfs about type infe...
2015 Feb 19
0
No text output in login console and shell
ignasr wrote:
> Hello,
>
> I have a remote IBM x3550 M4 server that I try to remote control through
> IMM2. The problem: only the blinking cursor is visible in login console.
> It moves when I type. It moves to where "Login: _" should be if I press
> ctrl+c. I can login if I enter the correct login and password, but the
> shell that I get also shows only the blinking cursor and no tex...
2015 Mar 25
0
[PATCH] nv50/ir: take postFactor into account when doing peephole optimizations
...or = 0;
i->setSrc(0, new_ImmediateValue(i->bb->getProgram(), res.data.u32));
i->setSrc(1, NULL);
@@ -682,7 +685,7 @@ ConstantFolding::tryCollapseChainedMULs(Instruction *mul2,
Instruction *insn;
Instruction *mul1 = NULL; // mul1 before mul2
int e = 0;
- float f = imm2.reg.data.f32;
+ float f = imm2.reg.data.f32 * exp2f(mul2->postFactor);
ImmediateValue imm1;
assert(mul2->op == OP_MUL && mul2->dType == TYPE_F32);
@@ -782,9 +785,10 @@ ConstantFolding::opnd(Instruction *i, ImmediateValue &imm0, int s)
i->op = OP_MOV;...
2009 May 08
2
[LLVMdev] Question on tablegen
Dan,
Thanks a lot. Using a modifier in the assembly string works for this
case. I am trying to solve a related problem. I am trying to print out
a set of "mov" ops for the vector_shuffle node. Since the source of
the "mov" is from one of the sources to vector_shuffle, depending on
the mask, I am not sure what assembly string to emit. For example, if
I have
d <-