search for: limm

Displaying 6 results from an estimated 6 matches for "limm".

Did you mean: libm
2018 Apr 04
1
ARC target support for jumps with LImm
Hello, I noticed that ARC target code is missing support for jumps with long (32-bit) immediate. Arithmetic and load/store operations for LImm are supported but jumps and branches are not present in the decoder tables and do not disassemble correctly. Is there a plan to add those in the future? Thanks! ilya -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/atta...
2017 Mar 26
5
[PATCH v5 0/5] nvc0/ir: add support for MAD/FMA PostRALoadPropagation
was "nv50/ir: PostRaConstantFolding improvements" before. nothing really changed from the last version, just minor things. Karol Herbst (5): nv50/ir: restructure and rename postraconstantfolding pass nv50/ir: implement mad post ra folding for nvc0+ gk110/ir: add LIMM form of mad gm107/ir: add LIMM form of mad nv50/ir: also do PostRaLoadPropagation for FMA .../drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp | 50 ++++--- .../drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp | 34 +++-- .../drivers/nouveau/codegen/nv50_ir_peephole.cpp | 162 +++++++++++++---...
2006 Jul 10
2
pvclust missing values problem
...same question but it's difficult for me to proceed until I get some kind of response, even if it is that this list is not the right place for this question. Thanks for your patience, Richard Dr Richard Birnie Scientific Officer Section of Pathology and Tumour Biology Welcome Brenner Building, LIMM St James University Hospital Beckett St, Leeds, LS9 7TF Tel:0113 3438624 e-mail: r.birnie at leeds.ac.uk
2006 Jul 06
0
pvclust Error:NA/NaN/Inf in foreign function call (arg 11)
...] "base" other attached packages: pvclust "1.1-0" Can someone please advise how to handle this. If any more info is needed just tell me what commands. regards, Richard Dr Richard Birnie Scientific Officer Section of Pathology and Tumour Biology Welcome Brenner Building, LIMM St James University Hospital Beckett St, Leeds, LS9 7TF Tel:0113 3438624 e-mail: r.birnie at leeds.ac.uk
2006 Dec 20
1
XP Clients kicked off Tiger Server - not consistent
...= TCP_NODELAY IPTOS_LOWDELAY SO_KEEPALIVE SO_SNDBUF=8576 SO_RCVBUF=8576 auth methods = guest opendirectory local master = yes domain master = no map to guest = Never use spnego = no printer admin = @admin, @staff logon path = \\%N\profiles\%u ntlm auth = YES read size = 65536 workgroup = LIMM [POG_Test] oplocks = 0 map archive = no vfs objects = darwin_acls path = /Volumes/RAID2/POG_Test read only = no strict locking = 0 inherit permissions = 0 comment = PsychoSocial-Oncology-Share create mask = 0664 guest ok = 0 directory mask = 0775 max connections = 12
2015 Nov 05
7
[PATCH mesa 0/5] nouveau: codegen: Make use of double immediates
Hi All, This series implements using double immediates in the nouveau codegen code. This turns the following (nvc0) code: 1: mov u32 $r2 0x00000000 (8) 2: mov u32 $r3 0x3fe00000 (8) 3: add f64 $r0d $r0d $r2d (8) Into: 1: add f64 $r0d $r0d 0.500000 (8) This has been tested with the 2 double shader tests which I just send to the piglet list. On a gk208 (gk110 / SM35)