Displaying 20 results from an estimated 700 matches similar to: "[LLVMdev] neon registers llvm using"
2002 Oct 07
1
A problem..
Hello,
I have a samba problem which now is keeping me busy for 3 days..
The situation:
Samba version: 2.2.5
Samba is configgured that users will be autenticated agains a domain
(winnt). With smbpasswd -j <domain> the domain is joined, and the result
was a non-error.
I use samba for 2 things.. user auth on websites for certain files (see
a .htaccess file config later in this mail). This
2013 Oct 15
2
[LLVMdev] Unwanted push/pop on Cortex-M.
Hi Andrea,
That is because the LR is the fixed register as per the
http://infocenter.arm.com/help/topic/com.arm.doc.ihi0042e/IHI0042E_aapcs.pdf
and out_char() function is not the leaf function ,Hence compiler
tends to save and restore the LR and the save and restore of
register r11 is to align stack for 8 bytes as per ARM EABI.
Thanks
~Umesh
On Tuesday, October 15, 2013, Umesh Kalappa
2013 Oct 15
1
[LLVMdev] Unwanted push/pop on Cortex-M.
Hi andrea,
R11 treated as frame pointer at arm backend , which is fixed again .
Thanks
Umesh
On Tuesday, October 15, 2013, Andrea Mucignat <andrea at nestlabs.com> wrote:
> Umesh,
> Makes some sort of sense to me, OTOH:
> If instead of choosing r11 as a "dummy" to align the stack we had chosen
some other register in the range r0-r7 then we could have emitted the PUSH
2013 Oct 15
0
[LLVMdev] Unwanted push/pop on Cortex-M.
Umesh,
Makes some sort of sense to me, OTOH:
If instead of choosing r11 as a "dummy" to align the stack we had chosen
some other register in the range r0-r7 then we could have emitted the PUSH
encoding T1 (2 bytes opcode) as opposed to the encoding T2 (which is a 4
bytes opcode).
A
On Tue, Oct 15, 2013 at 2:59 AM, Umesh Kalappa <umesh.kalappa0 at gmail.com>wrote:
> Hi
2010 Jul 05
2
nested for loops
Dear Admin,
I will appreciate if you advise me an effective way to write the following R
code including nested for loops. I cannot do it by using expand.grid
function because it results with memory allocation problems.
Thanks for your time and consideration.
for(d1 in 0:n){
for(d2 in 0:n){
for(d3 in 0:n){
for(d4 in 0:n){
for(d5 in 0:n){
for(d6 in 0:n){
for(d7 in 0:n){
for(d8 in 0:n){
for(d9 in
2008 May 15
2
xen smp acpi failed
In hvm enviroment, acpi failed. why? centos5.1
===================================================
[root@hvm001 ~]# xm dmesg
__ __ _____ _ ____ ___ ____ _ ____
\ \/ /___ _ __ |___ / / | |___ \ / _ \___ \ ___| | ___|
\ // _ \ \047_ \ |_ \ | | __) |_| (_) |__) | / _ \ |___ \
/ \ __/ | | | ___) || |_ / __/|__\__, / __/ | __/ |___) |
/_/\_\___|_| |_| |____(_)_(_)_____| /_/_____(_)___|_|____/
2013 Aug 11
2
N-Power MEV-3000LT compatibility report and problem
Hello list,
first of all, I'd like to report that my UPS
N-Power MEV-3000LT
(http://www.380v.ru/catalogue/micro-ups/mega-vision , in Russian),
which is not in the hardware compatibility list, is mostly supported
by the blazer_ser driver. I have very strong grounds to believe that
this (and other) N-Power UPS'es are rebranded for Russian and
Italian markets from their counterparts
2011 Jun 09
1
Error: missing values where TRUE/FALSE needed
I'm writing a function and keep getting the following error message.
myfunc <- function(lst) {
lst <- list(roots = c("car insurance", "auto insurance"),
roots2 = c("insurance"), prefix = c("cheap", "budget"),
prefix2 = c("low cost"), suffix = c("quote", "quotes"),
suffix2 = c("rate",
2017 Dec 01
2
Some strange i64 behavior with arm 32bit. (Raspberry Pi)
Hi Tim,
thanks for the swift response!
@debug is defined in the same module, which makes this all the more confusing.
The target information from the working example are:
target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"
target triple = "armv6kz--linux-gnueabihf"
from the ghc produced module:
target datalayout =
2023 Jun 13
1
log transform a data frame
Hello,
I have a data frame like this:
d11=suppressWarnings(read.csv("/Users/anamaria/Downloads/B1.csv",
stringsAsFactors=FALSE, header=TRUE))
> d11
X Domain.decomp. DD.com..load Neighbor.search Launch.PP.GPU.ops.
Comm..coord.
1 SYCL 2. 1 0 3.7 0. 1
1 .6
2 CUDA 2 0 3. 1 0
1 .0
2023 Jun 13
1
log transform a data frame
Thank you so much David, here is correction:
d1=suppressWarnings(read.csv("/Users/anamaria/Downloads/B1.csv",
stringsAsFactors=FALSE, header=TRUE))
d1$X <- NULL
d2=as.matrix(sapply(d1, as.numeric))
pdf("~/graph.pdf")
b<-barplot(d2, legend= c("SYCL", "CUDA"), beside=
TRUE,las=2,cex.axis=0.7,cex.names=0.7,ylim=c(0,80), col=c("#9e9ac8",
2013 Oct 08
2
[LLVMdev] [lld] Diagnostics
On Mon, Oct 7, 2013 at 4:02 PM, Nick Kledzik <kledzik at apple.com> wrote:
> But is has lots that a linker does not need. For instance, the
> line/column number does not make sense for a linker.
>
Really? Gold has errors that mention lines and columns. It gets them by
querying the debug information for file, line, and column. There may be
examples of this, but I don't think
2014 Jul 02
2
error al leer una linea desde un archivo de texto
A mi también me funciona para los dos casos:
> dat <- read.csv("d11-16.csv", header=FALSE, sep=",", dec=".", skip=11,
nrows=1)
> dat
V1 V2 V3 V4 V5 V6 V7 V8 V9 V10 V11
1 masa total en µg 30.04633 ug PEAKS MUY PEQUENOS NA NA NA NA NA NA NA
> dat18 <- read.csv("d11-18.csv", header=FALSE,
2020 Apr 07
2
[ARM] Register pressure with -mthumb forces register reload before each call
If I'm understanding what's going on in this test correctly, what's happening is:
* ARMTargetLowering::LowerCall prefers indirect calls when a function is called at least 3 times in minsize
* In thumb 1 (without -fno-omit-frame-pointer) we have effectively only 3 callee-saved registers (r4-r6)
* The function has three arguments, so those three plus the register we need to hold the
2013 Mar 15
3
[LLVMdev] Can the FileCheck ignore spaces ?
Hi all:
I'm writing testcase for the MC layer regression in llvm, the
disassembled string is a bit complicate, for example:
"IALU.T0 (I0) = BIU0.DM ; REPEAT AT ( 2 ) ;;"
The spaces in the disassembled string is error-prone. Is there any
option to tell the FileCheck utility to ignore the spaces ?
Kind Regards.
Shawn.
2013 Mar 16
1
[LLVMdev] Can the FileCheck ignore spaces ?
"--strict-whitespace
By default, FileCheck canonicalizes input horizontal whitespace (spaces
and tabs) which causes it to ignore these differences (a space will
match a tab). The/--strict-whitespace/
<http://llvm.org/docs/CommandGuide/FileCheck.html#cmdoption--strict-whitespace>argument
disables this behavior. End-of-line sequences are canonicalized to
UNIX-style ‘n’ in all
2013 Oct 08
0
[LLVMdev] [lld] Diagnostics
On Oct 7, 2013, at 5:15 PM, Chandler Carruth <chandlerc at google.com> wrote:
> On Mon, Oct 7, 2013 at 4:02 PM, Nick Kledzik <kledzik at apple.com> wrote:
> But is has lots that a linker does not need. For instance, the line/column number does not make sense for a linker.
>
> Really? Gold has errors that mention lines and columns. It gets them by querying the debug
2002 Oct 31
8
Winbindd not listing users/groups
Greetings from NY!
I am running SaMBa version 2.2.6 compiled from source on a RedHat 7.3
(Linux tux.#########.net 2.4.19 #1 Fri Oct 25 15:39:52 EDT 2002 i686
unknown) box.
I start smbd and nmbd as I usually do.
Then I start winbindd
I verified that they are running.
I run :
smbpasswd -j DOMAIN -r Windows2kDomainController -U Administrator
Password:
Joined domain DOMAIN.
Ok, so I'm in
2015 Jul 30
2
[LLVMdev] [3.7.0] Two late issues with cross compilation to mips
To reduce memory consumption clobbered registers are handled with RegisterMask machine operands which contain a bitset of all registers clobbered.
- Matthias
> On Jul 29, 2015, at 3:00 PM, Daniel Sanders <daniel.sanders at imgtec.com> wrote:
>
> I believe I've identified the problem with almabench but I haven't found the root cause in the compiler yet.
>
> The
2012 Aug 29
2
Estimation parameters of lognormal censored data
Hi, I am trying to get the maximum likelihood estimator for lognormal distribution with censored data;when we have left, interval and right censord. I built my code in R, by writing the deriving of log likelihood function and using newton raphson method but my estimators were too high " overestimation", where the values exceed the 1000 in some runing of my code.
is there any one can