search for: l14

Displaying 20 results from an estimated 24 matches for "l14".

Did you mean: 14
2018 Dec 12
0
NHW Project - good quality improvement & new -l14 very high compression quality setting
Hello, I am still progressing with very high compression and I have corrected a processing, so now very high compression (-l10 to -l13 quality settings) has really better precision and so better quality. I have also released a first draft of a new -l14 very high compression quality setting. More at: http://nhwcodec.blogspot.com/ Just a remark, the entropy coding schemes start to be less efficient at -l14 very high compression, and we can really improve them and save bits.For example the coding of the wavelet DC coefficients, wavelet DC image is...
2014 Aug 04
2
[LLVMdev] Prevent clang from replacing code with library calls
Clang optimizes code by replacing some parts with efficient library functions. For example the following code: for (i=0;i<size;++i) dest[i]=src[i]; will be compiled to (target=ARM assembly): bl __aeabi_memcpy(PLT) The compile cmd: /usr/share/android-arm-l14-toolchain/bin/clang31 -cc1 -triple arm-none-linux-androideabi -S -target-abi aapcs-linux -target-cpu arm1022e -backend-option -arm-enable-ehabi -backend-option -arm-enable-ehabi-descriptors -backend-option -arm-ignore-has-ras -internal-isystem /usr/share/android-arm-l14-toolchain/lib/clang/3.1/incl...
2014 Aug 05
2
[LLVMdev] Prevent clang from replacing code with library calls
...parts with efficient library > functions. > > For example the following code: > > for (i=0;i<size;++i) > dest[i]=src[i]; > > will be compiled to (target=ARM assembly): > > bl __aeabi_memcpy(PLT) > > The compile cmd: > > /usr/share/android-arm-l14-toolchain/bin/clang31 -cc1 -triple > arm-none-linux-androideabi -S -target-abi aapcs-linux -target-cpu arm1022e > -backend-option -arm-enable-ehabi -backend-option > -arm-enable-ehabi-descriptors -backend-option -arm-ignore-has-ras > -internal-isystem > /usr/share/android-arm-l14-too...
2007 Sep 24
0
[LLVMdev] RM Build
...AgFFY.s:36: Error: junk at end of line, first unrecognized character is `@' /tmp/ccYAgFFY.s:37: Error: junk at end of line, first unrecognized character is `@' /tmp/ccYAgFFY.s:38: Error: no such instruction: `stmfd sp!,{r4,r5,lr}' /tmp/ccYAgFFY.s:39: Error: no such instruction: `ldr r5,.L14' /tmp/ccYAgFFY.s:40: Error: no such instruction: `ldrb r3,[r5,' /tmp/ccYAgFFY.s:41: Error: expecting operand after ','; got nothing /tmp/ccYAgFFY.s:42: Error: no such instruction: `ldmnefd sp!,{r4,r5,pc}' /tmp/ccYAgFFY.s:43: Error: no such instruction: `ldr r4,.L14+4' /tmp/c...
2014 Aug 07
2
[LLVMdev] Prevent clang from replacing code with library calls
...; >> For example the following code: >> >> for (i=0;i<size;++i) >> dest[i]=src[i]; >> >> will be compiled to (target=ARM assembly): >> >> bl __aeabi_memcpy(PLT) >> >> The compile cmd: >> >> /usr/share/android-arm-l14-toolchain/bin/clang31 -cc1 -triple >> arm-none-linux-androideabi -S -target-abi aapcs-linux -target-cpu arm1022e >> -backend-option -arm-enable-ehabi -backend-option >> -arm-enable-ehabi-descriptors -backend-option -arm-ignore-has-ras >> -internal-isystem >> /usr/share...
2010 Jun 30
1
parameterization of glm nested design
Dear R community, I am new to R, a reforming SAS user :) I am running R 2.10.1 on a Windows XP machine. I would like to write linear functions of my coefficient parameter estimates from a glm, but am having a difficult time understanding the parameterization R uses. In the toy example below I am running a glm on binomial data, with clones and lines within clones as fixed effects, each with 6
2007 Jul 26
2
logistic regression
...a logistic regression model in R and I am struggling with the code, as it is a relatively new program for me. In searching Google for 'logistic regression diagnostics' I came Elizabeth Brown's Lecture 14 from her Winter 2004 Biostatistics 515 course (http://courses.washington.edu/b515/l14.pdf) . I found most of the code to be very helpful, but I am struggling with the lines on to calculate the observed and expected values in the 10 groups created by the cut function. I get error messages in trying to create the E and O matrices: R won't accept assignment of "fi1c==j&quot...
2024 Nov 11
3
Interpreting data from 220V input APC UPS
...itoring via the SNMP driver an APC SmartUPS that has split > phase (2L + neutral) 240V input and 120/120 volt outputs. The data > for the voltages is not what I'm expecting, and I am wondering how I > should interpret it. Wow, that sounds kind of industrial. Model? Is the input an L14-20P? Or equivalent non-twistlock? > Here is an example from upsc: > > input.L1-L2.voltage: 121 > input.L2-L3.voltage: 120 > input.voltage: 121.20 > output.current: 5.90 > output.L1-L2.voltage: 119 > output.L1.current: 5.90 > output.L2-L3.voltage: 119 > output.L2.curr...
2017 Mar 23
4
[LLD] Can't create dynamic relocation R_X86_64_64 against local symbol in readonly segment
...the attached example works with bfd-ld and with gold, but not with lld: $ cat rodatareloc.s ... .align 16 leaq .JTab(%rip), %r10 jmp *(%r10, %rdx, 8) ... .section .rodata .JTab: .quad .L00, .L01, .L02, .L03, .L04, .L05, .L06, .L07 .quad .L08, .L09, .L10, .L11, .L12, .L13, .L14, .L15, .L16 $ gcc -o rodatareloc.s.o -c rodatareloc.s $ lld -o rodatareloc.so -shared rodatareloc.s.o ld: error: rodatareloc.s.o:(.rodata+0x0): can't create dynamic relocation R_X86_64_64 against local symbol in readonly segment defined in rodatareloc.s.o Changing the section from .rodata t...
2018 Oct 02
2
Can't build xapian-bindings in a virtual env
Hi, I'm on a Ubuntu 18.04 server, trying to use django-haystack with xapian in a python3.6 virtualenv. The virtualenv is set up not to use system packages, meaning that I can't just install python3-xapian-haystack with apt, and instead have to manually build xapian-core and xapian-bindings within the virtualenv. This works with xapian-core and the --prefix argument to configure. When I
2024 Nov 12
1
Interpreting data from 220V input APC UPS
...an APC SmartUPS that has split >> phase (2L + neutral) 240V input and 120/120 volt outputs. The data >> for the voltages is not what I'm expecting, and I am wondering how I >> should interpret it. > >Wow, that sounds kind of industrial. Model? > >Is the input an L14-20P? Or equivalent non-twistlock? > >> Here is an example from upsc: >> >> input.L1-L2.voltage: 121 >> input.L2-L3.voltage: 120 >> input.voltage: 121.20 >> output.current: 5.90 >> output.L1-L2.voltage: 119 >> output.L1.current: 5.90 >> outpu...
2015 Nov 26
2
Only 2.5G of RAM available then syslinux64.efi boots 32-bit linux 686-pae
> On Sat, Nov 21, 2015 at 1:04 AM, Andrey Plankin via Syslinux > <syslinux at zytor.com> wrote: > > Hello, > > > > I'm booting linux-3.16-686-pae kernel (32-bit) via syslinux.efi 64-bit version. > > After boot linux sees only 2.5G of RAM while system has 32G installed. > > Why not use a 64-bit kernel with such a large machine? > > Do you have
2024 Nov 12
1
Interpreting data from 220V input APC UPS
...lit > phase (2L + neutral) 240V input and 120/120 volt outputs. The data > for the voltages is not what I'm expecting, and I am wondering how I > should interpret it. > > > Wow, that sounds kind of industrial. Model? > > Is the input an L14-20P? Or equivalent non-twistlock? > > Here is an example from upsc: > > input.L1-L2.voltage: 121 > input.L2-L3.voltage: 120 > input.voltage: 121.20 > output.current: 5.90 > output.L1-L2.voltage: 119 > output.L1.cur...
2012 Oct 08
11
Puppet 3.0 upgrade issue
Hi @all, after upgrading my puppet server to Puppet 3.0 I got the following error every time a client connect to the server: [ pid=1532 thr=70147393710520 file=utils.rb:176 time=2012-10-08 11:17:56.504 ]: *** Exception NoMethodError in PhusionPassenger::Rack::ApplicationSpawner (undefined method `settings'' for Puppet:Module) (process 1532, thread #<Thread:0x7f98ecf7d370>):
2019 Aug 15
0
ANNOUNCE: libnbd 0.9.8 - prerelease of high performance NBD client library
...: libguestfs@redhat.com (no subscription required) Here are some of the things you can do with this library ... Connect to an NBD server and grab the first sector of the disk: https://github.com/libguestfs/libnbd/blob/a5f8fd2f0f48e9cf2487e23750b55f67b166014f/examples/simple-fetch-first-sector.c#L14 High performance multi-threaded reads and writes, with multiple connections and multiple commands in flight on each connection: https://github.com/libguestfs/libnbd/blob/master/examples/threaded-reads-and-writes.c Integrate with glib main loop: https://github.com/libguestfs/libnbd/blob/master/exa...
2018 Oct 03
0
Can't build xapian-bindings in a virtual env
...pile, so on a low-memory system you may need to turn down or disable optimisation to get them to build. Also check that the amount memory a process can use isn't limited by ulimit. The INSTALL file shows how to disable optimisation: https://trac.xapian.org/browser/git/xapian-bindings/INSTALL#L14 The change way back in 0.9.3 mentioned there was that we factored out the exception mapping into a helper function. Cheers, Olly
2015 Nov 27
0
Only 2.5G of RAM available then syslinux64.efi boots 32-bit linux 686-pae
...d where there's nothing much to do regarding the memory management. So any change to the EFI stub in the Linux kernel should be irrelevant here. However, I see here a definition that is never used. http://repo.or.cz/syslinux.git/blob/e0be4d87135b2e7dd55e028eabad10887dcf539d:/efi/x86_64/linux.S#l14 So, maybe there's something not implemented yet. Celelibi
2024 Nov 11
1
Interpreting data from 220V input APC UPS
Hi -- I am monitoring via the SNMP driver an APC SmartUPS that has split phase (2L + neutral) 240V input and 120/120 volt outputs. The data for the voltages is not what I'm expecting, and I am wondering how I should interpret it. Here is an example from upsc: input.L1-L2.voltage: 121 input.L2-L3.voltage: 120 input.voltage: 121.20 output.current: 5.90 output.L1-L2.voltage: 119
2014 Feb 11
1
getting environment from "top" promise
Hi all, It seems that there is a use case for obtaining the environment for the "top" promise. By "top", I mean following the promise chain up the call stack until hitting a non-promise. S4 data containers often mimic the API of base R data structures. This means writing S4 methods for functions that quote their arguments, like with() and subset(). The methods package
2016 Jun 08
2
Intended behavior of CGSCC pass manager.
> On Jun 8, 2016, at 9:32 AM, Hal Finkel via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > > From: "Sean Silva via llvm-dev" <llvm-dev at lists.llvm.org> > To: "llvm-dev" <llvm-dev at lists.llvm.org> > Sent: Wednesday, June 8, 2016 6:19:03 AM > Subject: [llvm-dev] Intended behavior of CGSCC pass manager. > > Hi Chandler,