Displaying 9 results from an estimated 9 matches for "s1111".
Did you mean:
1111
2006 Mar 20
1
I need some help with OptionsParser
Hey all,
I must be doing something wrong here. Im calling the following file this way:
ruby script.rb -s 1234
or
ruby script.rb -s1111
#Code snip
require ''optparse''
opts = OptionParser.new
opts.on("-s", "--size VAL", Integer) do |val|
puts "-s #{val}"
puts val
end
But..no matter what I do, I don''t get any values out. I must be doing something wrong??
Help!
THanks all,
B...
2011 Oct 29
0
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...).
I've rerun the llvm code generation steps, adding -O3 to clang. Here are
the results (they are significantly better):
Loop llvm-v llvm gcc-v gcc
-------------------------------------------
S000 9.10 9.59 4.55 10.04
S111 7.29 7.65 7.68 7.83
S1111 13.87 14.72 16.14 16.30
S112 16.67 17.45 16.54 17.52
S1112 13.16 13.87 14.83 14.84
S113 22.14 22.98 22.05 22.05
S1113 11.06 11.48 11.03 11.01
S114 13.21 13.81 13.53 13.48
S115 32.82 33.36 49.98 49....
2011 Oct 29
4
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...me using gcc without vectorization
Here are improved results where the correct (and default)
vector-register size was used.
Loop llvm-v llvm gcc-v gcc
-------------------------------------------
S000 9.09 9.49 4.55 10.04
S111 7.28 7.37 7.68 7.83
S1111 13.78 14.48 16.14 16.30
S112 16.67 17.41 16.54 17.52
S1112 13.12 14.21 14.83 14.84
S113 22.12 22.88 22.05 22.05
S1113 11.06 11.42 11.03 11.01
S114 13.23 13.75 13.53 13.48
S115 32.76 33.24 49.98 49....
2011 Oct 29
0
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...ization
> 3. Time using gcc with vectorization
> 4. Time using gcc without vectorization
>
> Loop llvm-v llvm gcc-v gcc
> -------------------------------------------
> S000 9.59 9.49 4.55 10.04
> S111 7.67 7.37 7.68 7.83
> S1111 13.98 14.48 16.14 16.30
> S112 17.43 17.41 16.54 17.52
> S1112 13.87 14.21 14.83 14.84
> S113 22.97 22.88 22.05 22.05
> S1113 11.46 11.42 11.03 11.01
> S114 13.47 13.75 13.53 13.48
> S115...
2011 Oct 29
4
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...zation
2. Time using LLVM without vectorization
3. Time using gcc with vectorization
4. Time using gcc without vectorization
Loop llvm-v llvm gcc-v gcc
-------------------------------------------
S000 9.59 9.49 4.55 10.04
S111 7.67 7.37 7.68 7.83
S1111 13.98 14.48 16.14 16.30
S112 17.43 17.41 16.54 17.52
S1112 13.87 14.21 14.83 14.84
S113 22.97 22.88 22.05 22.05
S1113 11.46 11.42 11.03 11.01
S114 13.47 13.75 13.53 13.48
S115 33.06 33.24 49.98 49....
2016 Jun 15
3
[Proposal][RFC] Strided Memory Access Vectorization
...ate this feature, its available at below review-thread.
http://reviews.llvm.org/D21363
Use below option to enable this feature:
"-mllvm -enable-interleaved-mem-accesses -mllvm -enable-strided-vectorization"
Gains observed with prototype:
TSVC kernel S111 1.15x
TSVC kernel S1111 1.42x
If community is interested in the above work, I have below plan:
I'm not sure keeping this feature separate or the part of current interleave vectorizer ?
1) Will enable interleave vectorizer on X86 (If this feature is going as an enhancement on interleave vectorizer...
2016 Jun 18
2
[Proposal][RFC] Strided Memory Access Vectorization
...-thread.
> http://reviews.llvm.org/D21363
>
> Use below option to enable this feature:
> "-mllvm -enable-interleaved-mem-accesses -mllvm -enable-strided-
> vectorization"
>
> Gains observed with prototype:
> TSVC kernel S111 1.15x
> TSVC kernel S1111 1.42x
>
> If community is interested in the above work, I have below plan:
>
> I'm not sure keeping this feature separate or the part of current
> interleave vectorizer ?
>
> 1) Will enable interleave vectorizer on X86 (If this feature is going as an...
2016 Jun 30
0
[Proposal][RFC] Strided Memory Access Vectorization
.../D21363
> >
> > Use below option to enable this feature:
> > "-mllvm -enable-interleaved-mem-accesses -mllvm -enable-strided-
> > vectorization"
> >
> > Gains observed with prototype:
> > TSVC kernel S111 1.15x
> > TSVC kernel S1111 1.42x
> >
> > If community is interested in the above work, I have below plan:
> >
> > I'm not sure keeping this feature separate or the part of current
> > interleave vectorizer ?
> >
> > 1) Will enable interleave vectorizer on X86 (...
2016 Jun 30
1
[Proposal][RFC] Strided Memory Access Vectorization
...D21363
> >
> > Use below option to enable this feature:
> > "-mllvm -enable-interleaved-mem-accesses -mllvm -enable-strided-
> > vectorization"
> >
> > Gains observed with prototype:
> > TSVC kernel S111 1.15x
> > TSVC kernel S1111 1.42x
> >
> > If community is interested in the above work, I have below plan:
> >
> > I'm not sure keeping this feature separate or the part of current
> > interleave vectorizer ?
> >
> > 1) Will enable interleave vectorizer on X86...