search for: bhi

Displaying 20 results from an estimated 21 matches for "bhi".

Did you mean: bh
2011 Aug 23
1
Testing Specific Hypothesis
...otestme values ind 1 0.001008012 AAPL.UW.Equity 2 0.015518087 AAPL.UW.Equity 3 0.013221459 AAPL.UW.Equity 4 0.012195734 AAPL.UW.Equity 5 -0.026750298 AAPL.UW.Equity 6 -0.001910487 AAPL.UW.Equity 7 -0.003419938 AAPL.UW.Equity 8 0.009316770 BHI.UN.Equity 9 -0.007564103 BHI.UN.Equity 10 -0.040175688 BHI.UN.Equity 11 -0.017900404 BHI.UN.Equity 12 -0.010278197 BHI.UN.Equity 13 -0.034339518 BHI.UN.Equity 14 -0.006739317 BHI.UN.Equity 15 -0.013637913 BMY.UN.Equity 16 -0.015900449 BMY.UN.Equity 17 0.004566210...
2013 Jan 10
2
piece-wise linear regression nls function
...es where the two lines intersect at an x value given by the variable knot. I wish to estimate the slope of both lines, the value of knot, the x value where the two lines intersect, and an intercept. I am using the nls code below, and get the following error message: Error in nls(FM ~ blow * BMIJS + bhi * sapply(BMIJS - knot, max, 0), start = list(knot = 25, : singular gradient nls code: test <- nls(FM~blow*BMIJS+bhi*sapply(BMIJS-knot,max,0),start=list(knot=25,blow=1,bhi=1),data=FeMaleData) summary(test) greatly shortened version of my data (the full data set has 450 records) FM...
2010 Aug 18
2
[LLVMdev] ToT ARM Code generator causing - Error: invalid constant (xxx) after fixup in assembly output
...ult keystrokes in gdb are very "expensive " and taxing my machine rather heavily. Any thoughts and hints on debugging this issue would be much appreciated! I have used llc with these options to produce the output: llc -O0 -regalloc=fast -relocation-model=pic l.bc -o ll-2.8.s bhi .LBB8485_455 @ BB#671: @ %bb154 @ in Loop: Header=BB8485_1112 Depth=5 adr r0, #.LJTI8485_1_1 ldr r1, [sp, #3300] ldr r2, [r0, r1, lsl #2] ... lots of boring code omitted ... add...
2007 Dec 10
1
cyclic dependency error
....onLoad <- function(lib, pkg) require(methods) importFrom(graphics, plot) exportClasses(clValid) exportMethods(clusters, clusterMethods, nClusters, measNames, measures, optimalScores, plot, print, show, summary) S3method(print,sota) S3method(plot,sota) export(clValid, sota, dunn, connectivity, BHI, BSI, stability, matchGO) My question is - how can I locate the source of the cyclic dependency error? This is an updated version of a package which did not previously have this error, so somehow I introduced this in the modifications I made. Note that R CMD check on Windows (R version 2.6.0) do...
2010 Aug 18
2
[LLVMdev] ToT ARM Code generator causing - Error: invalid constant (xxx) after fixup in assembly output
...rather heavily. >> >> Any thoughts and hints on debugging this issue would be much >> appreciated! >> >> I have used llc with these options to produce the output: >> >> llc -O0 -regalloc=fast -relocation-model=pic l.bc -o ll-2.8.s >> >> bhi .LBB8485_455 >> @ BB#671: @ %bb154 >> @ in Loop: Header=BB8485_1112 >> Depth=5 >> adr r0, #.LJTI8485_1_1 >> ldr r1, [sp, #3300] >> ldr r2, [r0, r1, lsl #2] >>...
2010 Aug 18
0
[LLVMdev] ToT ARM Code generator causing - Error: invalid constant (xxx) after fixup in assembly output
...> and > taxing my machine rather heavily. > > Any thoughts and hints on debugging this issue would be much > appreciated! > > I have used llc with these options to produce the output: > > llc -O0 -regalloc=fast -relocation-model=pic l.bc -o ll-2.8.s > > bhi .LBB8485_455 > @ BB#671: @ %bb154 > @ in Loop: > Header=BB8485_1112 > Depth=5 > adr r0, #.LJTI8485_1_1 > ldr r1, [sp, #3300] > ldr r2, [r0, r1, lsl #2] > ... > lots o...
2018 Jun 26
2
Instruction boundaries
...lvm-dev Subject: Re: [llvm-dev] Instruction boundaries Hi Paulr According to my observation. Not all the instructions are listed in the line table. For example. We have address 0xa3a0 and 0xa3a4 as the instructions .text:0000A394 CMP R1, #0x42 .text:0000A398 BHI loc_AB70 .text:0000A39C ADR R1, off_A3A8 .text:0000A3A0 LDR R0, [R1,R0,LSL#2] .text:0000A3A4 MOV PC, R0 .text:0000A3A4 ; --------------------------------------------------------------------------- .text:0000A3A8 off_A3A8 DCD loc...
2010 Aug 18
0
[LLVMdev] ToT ARM Code generator causing - Error: invalid constant (xxx) after fixup in assembly output
...t;> Any thoughts and hints on debugging this issue would be much >>> appreciated! >>> >>> I have used llc with these options to produce the output: >>> >>> llc -O0 -regalloc=fast -relocation-model=pic l.bc -o ll-2.8.s >>> >>> bhi .LBB8485_455 >>> @ BB#671: @ %bb154 >>> @ in Loop: >>> Header=BB8485_1112 >>> Depth=5 >>> adr r0, #.LJTI8485_1_1 >>> ldr r1, [sp, #3300] >>> ldr...
2018 Jun 26
2
Instruction boundaries
Hi paulr Thanks for your reply. Though DWARF info give me the code address ranges, there might be inline data. If so, how to handle this case? As for the dwarf line table. Sometimes, the source line might be zero. Do you know why? If all instructions should be describe in the line table, I think analyzing Dwarf line table is enough to get all the instructions addresses. Do you agree? I would
2015 Aug 10
2
ARM: Predicated returns considered analyzable?
Hello, The function ARMBaseInstrInfo::AnalyzeBranch contains the following piece of code: } else if (I->isReturn()) { // Returns can't be analyzed, but we should run cleanup. CantAnalyze = !isPredicated(I); } else { This could lead to cases where for a block that ends with a conditional return, AnalyzeBranch returns false (i.e. analyzed), both TBB and FBB are
2018 Jun 26
2
Instruction boundaries
...lvm-dev Subject: Re: [llvm-dev] Instruction boundaries Hi Paulr According to my observation. Not all the instructions are listed in the line table. For example. We have address 0xa3a0 and 0xa3a4 as the instructions .text:0000A394 CMP R1, #0x42 .text:0000A398 BHI loc_AB70 .text:0000A39C ADR R1, off_A3A8 .text:0000A3A0 LDR R0, [R1,R0,LSL#2] .text:0000A3A4 MOV PC, R0 .text:0000A3A4 ; --------------------------------------------------------------------------- .text:0000A3A8 off_A3A8 DCD loc...
2012 Dec 04
0
Changing default primary Group sid from 513 to 515
bHi all, I have a Samba PDC with LDAP backend (using editPosix method) . Below are my versions RHEL6.3 samba-3.5.10-125.el6.x86_64 samba-common-3.5.10-125.el6.x86_64 samba-winbind-clients-3.5.10-125.el6.x86_64 samba-winbind-3.5.10-125.el6.x86_64 samba-client-3.5.10-125.el6.x86_64 When i Join a new W...
2015 Aug 12
2
ARM: Predicated returns considered analyzable?
...This looks wrong. Does anyone have any comments on > this? Isn't it because one of the predicates is CPSR, which means it's a conditional instruction, so not really a terminator? This lowers to the expected: str lr, [sp, #-4]! cmp r1, #0 it ne cmpne r0, #3 bhi .LBB0_2 <-- Turned into a conditional jump bl bar .LBB0_2: ldr lr, [sp], #4 bx lr cheers, --renato ----- Me: On 8/11/2015 8:32 AM, Renato Golin wrote: > On 10 August 2015 at 14:05, Krzysztof Parzyszek via llvm-dev > <llvm-dev at lists.llvm.org> wrote: >&gt...
2011 Jul 22
1
[LLVMdev] LLVM on ARM testing.
Hi, Eli > Mmm... and I just realized I really can't help track this down because > the code paths in question are probably Linux-specific. I spent a I add the following line back to lib/Support/Unix/Host.inc, Arch = "arm"; And examples/HowToUseJIT works fine. Regards, chenwj [1] http://llvm.org/viewvc/llvm-project?view=rev&revision=131463 -- Wei-Ren Chen (陳韋任)
2011 Mar 15
0
[LLVMdev] LLVM 2.9 RC1 Pre-release Tarballs
...ld-O0/Release+Asserts/bin/llc < /media/dh0/llvm-2.9rc1/test/CodeGen/Thumb/select.ll -march=thumb | grep bls | /media/dh0/llvm-2.9-build-O0/Release+Asserts/bin/count 1 /media/dh0/llvm-2.9-build-O0/Release+Asserts/bin/llc < /media/dh0/llvm-2.9rc1/test/CodeGen/Thumb/select.ll -march=thumb | grep bhi | /media/dh0/llvm-2.9-build-O0/Release+Asserts/bin/count 1 /media/dh0/llvm-2.9-build-O0/Release+Asserts/bin/llc < /media/dh0/llvm-2.9rc1/test/CodeGen/Thumb/select.ll -mtriple=thumb-apple-darwin | grep __ltdf2 -- Exit Code: 1 Command Output (stderr): -- Expected 3 lines, got 1. -- **************...
2011 Mar 14
3
[LLVMdev] LLVM 2.9 RC1 Pre-release Tarballs
Hello Xerxes, > llvm 2.9rc1 test on Dualcore ARM running Ubuntu Natty What is the gcc used for the compilation? Can you try to do the -O0 build and see whether this changed the stuff? -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg State University
2003 Dec 01
0
No subject
...1169 FAX +44-(0)207 483 2455 www http://www.gbnet.net/ * Personal DFAX +44 (0)870 1600 842 (fax to email) bits steve@gbnet.net * mob +44-(0)7775755503 Epage steve-pager@gbnet.net Return-Path: <Victor.Hill@BakerAtlas.Com> Delivered-To: samba@lists.samba.org Received: from romulus.bhi-net.com (romulus.bhi-net.com [204.253.245.10]) by lists.samba.org (Postfix) with ESMTP id E96D34BCD for <samba@lists.samba.org>; Mon, 11 Jun 2001 09:32:56 -0700 (PDT) Received: from bhihdcimc01.bakerhughes.com (204-253-245-34.bhi-net.com [204.253.245.34] (may be forged)) by romulus.bhi-...
2011 Jul 29
2
[LLVMdev] sys::getHostTriple failed to recognize ARM correctly
...llc < /nfs_home/chenwj/test/llvm/test/CodeGen/Thumb/select.ll -march=thumb | grep bls | /nfs_home/chenwj/test/native-build/arm2/Debug+Asserts/bin/count 1 /nfs_home/chenwj/test/native-build/arm2/Debug+Asserts/bin/llc < /nfs_home/chenwj/test/llvm/test/CodeGen/Thumb/select.ll -march=thumb | grep bhi | /nfs_home/chenwj/test/native-build/arm2/Debug+Asserts/bin/count 1 /nfs_home/chenwj/test/native-build/arm2/Debug+Asserts/bin/llc < /nfs_home/chenwj/test/llvm/test/CodeGen/Thumb/select.ll -mtriple=thumb-apple-darwin | grep __ltdf2 -- Exit Code: 1 Command Output (stderr): -- Expected 3 lines, got...
2003 Dec 01
0
No subject
...lse (free if possible), or where can I get > documentation for that? > Check out ncpfs. It's in the Debian distribution; I'm sure there are RPMs and tarballs for it as well... Return-Path: <Victor.Hill@bakeratlas.com> Delivered-To: samba@lists.samba.org Received: from romulus.bhi-net.com (romulus.bhi-net.com [204.253.245.10]) by lists.samba.org (Postfix) with ESMTP id 7C58D46C5 for <samba@lists.samba.org>; Fri, 8 Jun 2001 09:11:01 -0700 (PDT) Received: from walsmail1.bakerhughes.com (204-253-245-125.bhi-net.com [204.253.245.125] (may be forged)) by romulus.bhi-...
2005 Dec 21
9
question about changejournal
Hi, I''ve got a newbie question--sorry if this is covered elsewhere, I parsed through the archives for awhile and didn''t see it. I''d like to listen for whenever a file is renamed (e.g. foo.txt -> foo.old) and then magically change it back. This sounds odd, but I''m working with a stubborn application and this will actually make things work nice. So, if I do: