Displaying 20 results from an estimated 5000 matches similar to: "Using stride on non-RAID"
2008 Feb 11
2
[LLVMdev] "make check" failures: leaq in fold-mul-lohi.ll, stride-nine-with-base-reg.ll, stride-reuse.ll
I'm seeing the following failures with "make check" (x86-32 linux):
FAIL: test/CodeGen/X86/fold-mul-lohi.ll
Failed with exit(1) at line 2
while running: llvm-as < test/CodeGen/X86/fold-mul-lohi.ll | llc -march=x86-64 | not grep lea
leaq B, %rsi
leaq A, %r8
leaq P, %rsi
child process exited abnormally
FAIL:
2008 Feb 12
0
[LLVMdev] "make check" failures: leaq in fold-mul-lohi.ll, stride-nine-with-base-reg.ll, stride-reuse.ll
Fixed. Thanks.
Evan
On Feb 11, 2008, at 2:35 AM, Duncan Sands wrote:
> I'm seeing the following failures with "make check" (x86-32 linux):
>
> FAIL: test/CodeGen/X86/fold-mul-lohi.ll
> Failed with exit(1) at line 2
> while running: llvm-as < test/CodeGen/X86/fold-mul-lohi.ll | llc -
> march=x86-64 | not grep lea
> leaq B, %rsi
> leaq
2008 Feb 12
2
[LLVMdev] "make check" failures: leaq in fold-mul-lohi.ll, stride-nine-with-base-reg.ll, stride-reuse.ll
Hi Evan,
In -relocation-model=static mode, those tests are now getting
code like this
leaq A, %rsi
movss %xmm0, (%rsi,%rdx,4)
instead of this:
movss %xmm0, A(,%rdx,4)
This is specifically what these tests were written to catch :-).
Running them with -relocation-model=pic is hiding the real bug.
Dan
On Feb 11, 2008, at 11:22 PM, Evan Cheng wrote:
> Fixed.
2007 Jun 05
1
Calculating stride values?
All,
I have a question about calculating the value for the -E stride option
to mke2fs.
The mke2fs man page says
stride=stripe-size
Configure the filesystem for a RAID array with stripe-size filesystem blocks per stripe.
So stride = size of stripe/blocksize.
The size of a stripe is the RAID chunk size * the number of drives in the RAID.
My question: are parity disks
2012 Oct 04
1
[PATCH] gallium/nouveau: use pre-calculated stride for resource_get_handle
Fixes FDO#55294.
---
src/gallium/drivers/nv30/nv30_miptree.c | 3 +--
src/gallium/drivers/nv50/nv50_miptree.c | 3 +--
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/src/gallium/drivers/nv30/nv30_miptree.c b/src/gallium/drivers/nv30/nv30_miptree.c
index 5a9a63b..9700fa8 100644
--- a/src/gallium/drivers/nv30/nv30_miptree.c
+++ b/src/gallium/drivers/nv30/nv30_miptree.c
@@ -56,8
2008 Feb 12
0
[LLVMdev] "make check" failures: leaq in fold-mul-lohi.ll, stride-nine-with-base-reg.ll, stride-reuse.ll
Fixed. However, I wonder if we are doing the right / smart codegen for
static codegen. AMD64 ABI document seems to indicate rip relative
addressing should be used even in this case (see page 38). You know
about about Linux addressing mode than I do. Please check.
Thanks,
Evan
On Feb 12, 2008, at 10:10 AM, Dan Gohman wrote:
> Hi Evan,
>
> In -relocation-model=static mode, those
2003 Jul 07
2
Legalese. What is stride?
Hello all.
I've been playing around with theora since it first entered CVS, and I
like what I'm seeing. Today I've been fixing xine's theoraplugin to
understand theora_info.frame_{width,height} and
theora_info.offset_{x,y}. I only got it working after some experimenting
and basically copying the code from player_example. A few questions
related to this:
1. What are the legal
2004 Jan 07
5
Client for P800/P900
Hi Guys,
is there a client which can be used on the SonyEricsson P800/P900...?
IAX would be cool, but i take anything that can connect (via bluetooth)
to an asterisk-server ;-).
The phone is Symbian, and can also execute java-stuff...
Greez
Andreas
_________________________________________________________________
Find your perfect match @ http://personals.xtramsn.co.nz with XtraMSN
2002 Sep 05
1
mke2fs stride and LVM
Hi,
Is mke2fs' stride option relevant for a multi-striped LVM volume?
Cheers,
Stephen
2002 Jan 24
2
grep
Hello, I have a problem with 'grep'
I read several lines from a file
p <- readLines(pfile,n=8)
now I have to check that a key word "JABBERWOCKY" is not in that segment
a <- grep("JABBERWOCKY",p)
which gives a 1 if the key is in the text or 'numeric(0)
how can I test it
if(a==1) gives Ok in one case and error:missing value where logical
needed in the other.
2009 Aug 21
3
p800 and HP
I was wondering if anyone here has experience with HP MSA60 with P400
and P800 controller. How reliable are they for a 24x7 shop?
TIA
2007 Feb 14
2
File into database migration
Hi,
I am trying to figure out an approach to load in our initial data into our
database.
I have written some load_data migrations which populate a lot of the stuff,
how some of the database
items are images etc and I am trying to figure out how to approach added
them to the database
during a rake db:migrate
I am thinking if I store the files in a folder off the RAILS_ROOT I should
be able to
2015 Oct 07
4
OT hardware issue: HP controller to 3rd party RAID
Hi, folks,
Got an old HP box with a P800 Smart Array controller. The HP RAID box
plugged into it's failing, and we got a new JetStor. Anyone know if we
can just plug the JetStor in and set it to passthrough, or if we have
to use the P800's firmware to set up the RAID, or other gotchas?
I *think* we could use the RAID boxes firmware to build the RAID, but last
resort would be
2009 Feb 05
1
Questions regarding journal replay
Today, I had to uncleanly shutdown one of our machines due to an error
in 2.6.28.3. Durin the boot sequence, the ext4 partition /home
experienced a journal replay. /home looks like this:
/dev/mapper/volg1-logv1 on /home type ext4 (rw,noexec,nodev,noatime,errors=remount-ro)
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/volg1-logv1 2,4T 1,4T 1022G 58% /home
Filesystem
2013 Oct 28
2
[LLVMdev] loop vectorizer says Bad stride
Verifying function
running passes ...
LV: Checking a loop in "bar"
LV: Found a loop: L0
LV: Found an induction variable.
LV: We need to do 0 pointer comparisons.
LV: Checking memory dependencies
LV: Bad stride - Not an AddRecExpr pointer %13 = getelementptr float*
%arg2, i32 %1 SCEV: ((4 * (sext i32 {(256 + %arg0),+,1}<nw><%L0> to
i64)) + %arg2)
LV: Src Scev: {((4 * (sext
2013 Oct 28
0
[LLVMdev] loop vectorizer says Bad stride
Frank,
It looks like the loop vectorizer is unable to tell that the two stores in your code never overlap. This is probably because of the sign-extend in your code. Can you extend the indices to 64bit ?
Thanks,
Nadav
On Oct 28, 2013, at 1:38 PM, Frank Winter <fwinter at jlab.org> wrote:
> Verifying function
> running passes ...
> LV: Checking a loop in "bar"
> LV:
2009 Apr 26
1
ext4 mount fails with "resize inode not valid" after a reboot
With kernel 2.6.30-rc2-git6 and prior I am having problems mounting
ext4 partitions after reboot.
A successful mount looks like this:
/dev/cciss/c0d0p8 on /squid-cache0 type ext4 (rw,noexec,nodev,noatime,data=writeback,errors=panic)
/dev/cciss/c0d0p9 on /squid-cache1 type ext4 (rw,noexec,nodev,noatime,data=writeback,errors=panic)
/dev/cciss/c0d0p10 on /squid-data type ext4
2015 Oct 07
2
OT hardware issue: HP controller to 3rd party RAID
On 10/07/15 11:13, m.roth at 5-cent.us wrote:
> Jack Bailey wrote:
>
>>> controller that expects to talk to individual SAS or SATA drives. you
>>> can manage it with hpssacli from centos.
>> I have the P822. It has no JBOD or RAID 0. hpacucli works with CentOS
>> 7.0, but is broken on 7.1 -- it cannot find the controller.
> Can it do RAID 6?
>
This page
2015 Oct 07
3
OT hardware issue: HP controller to 3rd party RAID
On 10/07/15 10:06, John R Pierce wrote:
> On 10/7/2015 8:42 AM, m.roth at 5-cent.us wrote:
>> Got an old HP box with a P800 Smart Array controller. The HP RAID
>> box
>> plugged into it's failing, and we got a new JetStor. Anyone know if we
>> can just plug the JetStor in and set it to passthrough, or if we have
>> to use the P800's firmware to set up
2013 Apr 21
4
[PATCH] xfstests: remove recursive include in filter.btrfs
Not sure how this happened, but filter.btrfs including
itself leads to immense sadness for any file that includes it.
(I got a segfault when I tried to run 307)
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
---
diff --git a/common/filter.btrfs b/common/filter.btrfs
index b1aa733..99d04a6 100644
--- a/common/filter.btrfs
+++ b/common/filter.btrfs
@@ -1,7 +1,5 @@
# Filters for btrfs