search for: knl

Displaying 20 results from an estimated 92 matches for "knl".

Did you mean: dnl
2013 Aug 21
0
Build problems: klibc with Linux 3.10.7
...> > B) cd ~/src/klibc > make KLIBCKERNELSRC=`pwd`/../linux/usr/ > > Sorry, but without my patchs, 'make install' fails with the following message (complete messages file attached) # make install V=1 KLIBCARCH=ppc CROSS_COMPILE=ppc-linux- KLIBCKERNELSRC=/root/gen/trunk/knl/linux/usr/ prefix=/tmp/klibc-install ..... make -f /root/ofs/trunk/packages/klibc-2.0.2/scripts/Kbuild.install obj=. echo " INSTALL headers + man pages to /tmp/klibc-install/lib/klibc" INSTALL headers + man pages to /tmp/klibc-install/lib/klibc mkdir -p /tmp/klibc-install/bin mkdir -...
2013 Aug 21
5
Build problems: klibc with Linux 3.10.7
On Tue, Aug 20, 2013 at 07:44:39AM +0200, leroy christophe wrote: > > > Find attached two patches I have in order to build klibc 2.0.2 > against kernel 3.8.13 > We had to introduce those patches when going from kernel 3.6 to kernel 3.7 > Hope it helps. > those patches are wrong and again very brittle. just use the way it is described in `make help': A) cd ~/src/linux
2009 Nov 12
1
kernel not booting after update
...is: Linux dhcp-248.off.knossos.net.nz 2.6.18-53.el5 #1 SMP Mon Nov 12 02:22:48 EST 2007 i686 i686 i386 GNU/Linux [root at dhcp-248 ~]# rpm -qa | grep kernel kernel-2.6.18-53.el5 kernel-2.6.18-164.el5 [root at dhcp-248 ~]# yum list kernel* Loaded plugins: fastestmirror Determining fastest mirrors knl-base 2508/2508 knl-gen 42/42 knl-updates 528/528 Installed Packages kernel.i686 2.6.18-53.el5...
2005 Mar 07
1
Density estimation when an end may not go to zero?
...n plot only the part that I wanted. The following example supposes simulates observations from a truncated normal with mean 0, standard deviation 1, and only observations above 1.5 are observed and we faked numbers between 1 and 1.5: set.seed(1) tst <- rnorm(1000) tst1 <- tst[tst>1] knl <- density(tst1) sel <- knl$x>1.5 plot(knl$x[sel], knl$y[sel], type="l") Are there any convenient methods for handling this kind of thing currently available in R? Thanks, Spencer Graves
2018 Jul 24
2
KNL Vectorization with larger vector width
...MaxVectorSize <= 2048 && "Did not expect to pack so many elements" " into one vector!"); changed 64 to 2048. It runs fine. I can see in IR <2048xi32> or <1024xi64> emission. But I cannot see the vector mix like in default knl if iterations=15 we see 1<8xi32> and rest scalar. so here when i keep iteration=2047 i get all scalar why is that so? similarly in polly as well i cant see vector mixes like its happening for KNL it emits <v16i32>, <v8i32>,<v4i32>...so here it should emit recursively like &l...
2018 Jul 23
2
KNL Vectorization with larger vector width
Thank You. I got it. Version issue. TTI.getRegisterBitWidth(true) How to put my target machine info in TTI? Please help. On Mon, Jul 23, 2018 at 11:33 PM, Friedman, Eli <efriedma at codeaurora.org> wrote: > On 7/23/2018 10:49 AM, hameeza ahmed via llvm-dev wrote: > > Thank You. > > But I cannot find your mentioned function
2008 Jan 09
0
Feature Request - Allow calling of labels from other labels
...SWORDROW 11 MENU TIMEOUTROW 20 MENU TITLE 32Bit (x86) RHES 3.x OS Choice # Vesa Options # MENU INCLUDE gfx/default # Return to Main Menu LABEL MainMenu MENU DEFAULT MENU LABEL ^Main Menu KERNEL vesamenu.c32 # # Latest Release # LABEL latest MENU LABEL ^Latest Release KERNEL knl/vmlinuz-rhes38-x86 APPEND initrd=img/initrd-rhes38-x86.img ks= http://kickstart/ks/cam/x86/rhes/38.cfg # # Blank boots # LABEL linux-38 MENU LABEL ^Blank Boot 3.8 KERNEL knl/vmlinuz-rhes38-x86 APPEND initrd=img/initrd-rhes38-x86.img LABEL linux-30 MENU LABEL Blank Boot 3.0...
2018 Jul 24
2
KNL Vectorization with larger vector width
...pack so many elements" >> " into one vector!"); >> >> changed 64 to 2048. >> >> It runs fine. I can see in IR <2048xi32> or <1024xi64> emission. >> >> But I cannot see the vector mix like in default knl if iterations=15 we >> see 1<8xi32> and rest scalar. so here when i keep iteration=2047 i get all >> scalar why is that so? similarly in polly as well i cant see vector mixes >> like its happening for KNL it emits <v16i32>, <v8i32>,<v4i32>...so here it >...
2016 Jun 29
2
avx512 JIT backend generates wrong code on <4 x float>
Hi! When compiling the attached module with the JIT engine on an Intel KNL I see wrong code getting emitted. I attach a complete exploit program which shows the bug in LLVM 3.8. It loads and JIT compiles the module and prints the assembler. I stumbled on this since the result of an actual calculation was wrong. So, it's not only the text version of the assembler...
2018 Jul 23
2
KNL Vectorization with larger vector width
...xi32>.........................<32xi32> etc. How to achieve this? Please help. Thank You Regards On Fri, Jul 13, 2018 at 12:40 AM, Hal Finkel <hfinkel at anl.gov> wrote: > > On 07/12/2018 02:32 PM, hameeza ahmed via llvm-dev wrote: > > Hello, > > If we pass march=knl, the llvm vectorizer (O3) generates max 16xi32 vector > width instruction and 8xi32 or 4xi32 in recursive manner. > > I am working on a target with larger vector widths like 32,64... > Now how to enable the vectorizer (O3) to automatically generate larger > vector size instructions r...
2016 Jun 29
0
avx512 JIT backend generates wrong code on <4 x float>
...gt; > To: "LLVM Dev" <llvm-dev at lists.llvm.org> > Sent: Wednesday, June 29, 2016 2:41:39 PM > Subject: [llvm-dev] avx512 JIT backend generates wrong code on <4 x float> > > Hi! > > When compiling the attached module with the JIT engine on an Intel > KNL I > see wrong code getting emitted. I attach a complete exploit program > which shows the bug in LLVM 3.8. It loads and JIT compiles the module > and prints the assembler. I stumbled on this since the result of an > actual calculation was wrong. So, it's not only the text version of...
2016 Jun 30
1
avx512 JIT backend generates wrong code on <4 x float>
...v" <llvm-dev at lists.llvm.org> >> Sent: Wednesday, June 29, 2016 2:41:39 PM >> Subject: [llvm-dev] avx512 JIT backend generates wrong code on <4 x float> >> >> Hi! >> >> When compiling the attached module with the JIT engine on an Intel >> KNL I >> see wrong code getting emitted. I attach a complete exploit program >> which shows the bug in LLVM 3.8. It loads and JIT compiles the module >> and prints the assembler. I stumbled on this since the result of an >> actual calculation was wrong. So, it's not only the...
2017 Aug 22
0
Installation on Knights Landing (KNL) machines failure
Arif Ali wrote: > Hi all, > > We have a customer, where we are trying to install CentOS 7.3 on the new > Intel Knights Landing nodes, unfortunately, we are unable to install > then using PXE boot. > > Now, I have a lot of experience of installation of machines using PXE > boot, so the setup of that is not the problem. Both myself and my > colleagues have looked through
2017 Jul 01
2
Jacobi 5 Point Stencil Code not Vectorizing
...j, k; for (k = 0; k < 100; k++) { for (i = 1; i <= N-2; i++) { for (j = 1; j <= N-2; j++) { a[i][j] = 0.25 * (a[i][j] + a[i-1][j] + a[i+1][j] + a[i][j-1] + a[i][j+1]); } } }} I have used the following commands clang -S -emit-llvm stencil.c -march=knl -O3 -mllvm -disable-llvm-optzns -o stencil.ll opt -S -O3 stencil.ll -o stencil_o3.ll llc -x86-asm-syntax=intel stencil_o3.ll -o stencil.s But the code is not vectorized. It still uses the scalar instructions; Please correct me. Thank You -------------- next part -------------- An HTML attachm...
2017 Aug 17
4
unable to emit vectorized code in LLVM IR
..."="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="knl" "target-features"="+adx,+aes,+avx,+avx2,+avx512cd,+avx512er,+avx512f,+avx512pf,+bmi,+bmi2,+cx16,+f16c,+fma,+fsgsbase,+fxsr,+lzcnt,+mmx,+movbe,+pclmul,+popcnt,+prefetchwt1,+rdrnd,+rdseed,+rtm,+sse,+sse2,+sse3,+sse4.1,+sse4.2,+ssse3,+x87,+xsave,+xsaveopt" "unsafe-fp-mat...
2013 Aug 21
2
Build problems: klibc with Linux 3.10.7
...make KLIBCKERNELSRC=`pwd`/../linux/usr/ > > > > > Sorry, but without my patchs, 'make install' fails with the > following message (complete messages file attached) > > # make install V=1 KLIBCARCH=ppc CROSS_COMPILE=ppc-linux- > KLIBCKERNELSRC=/root/gen/trunk/knl/linux/usr/ > prefix=/tmp/klibc-install have you done step A previously? It seems you are not compiling against the preconfigured linux headers otherwise the headers_install wouldn't fail. -- maks
2008 Dec 12
2
freebsd 7, panics - kqueue?
...dumps - for both dumps the current process was imap, and the second one seemed to hint towards a problem with kqueue but im not a c or kernel hacker: http://www.freebsd.org/cgi/query-pr.cgi?pr=129550 --- snip of what i think is relevent from the dump --- (kgdb) list *0xc04c4c4d 0xc04c4c4d is in knlist_remove_kq (/usr/src/sys/kern/kern_event.c:1615). 1610 if (!kqislocked) 1611 KASSERT((kn->kn_status & (KN_INFLUX|KN_DETACHED)) == KN_INFLUX, 1612 ("knlist_remove called w/o knote being KN_INFLUX or already removed")); 1613 if (!knlislocked) 1614 knl->kl_lock(knl->kl_lockarg...
2017 Jul 01
3
Jacobi 5 Point Stencil Code not Vectorizing
...such codes? please reply. i m waiting. On Jul 1, 2017 12:30 PM, "hameeza ahmed" <hahmed2305 at gmail.com> wrote: > I even tried polly but still my llvm IR does not contain vector > instructions. i used the following command; > > clang -S -emit-llvm stencil.c -march=knl -O3 -mllvm -polly -mllvm > -polly-vectorizer=stripmine -o stencil_poly.ll > > Please specify what is wrong with my code? > > > On Sat, Jul 1, 2017 at 4:08 PM, hameeza ahmed <hahmed2305 at gmail.com> > wrote: > >> Hello, >> >> I am trying to vectorize...
2017 Aug 22
3
Installation on Knights Landing (KNL) machines failure
Hi all, We have a customer, where we are trying to install CentOS 7.3 on the new Intel Knights Landing nodes, unfortunately, we are unable to install then using PXE boot. Now, I have a lot of experience of installation of machines using PXE boot, so the setup of that is not the problem. Both myself and my colleagues have looked through the problem, and we are unable to get much diagnosis of
2013 Aug 21
3
Build problems: klibc with Linux 3.10.7
...>> >>>> >>> Sorry, but without my patchs, 'make install' fails with the >>> following message (complete messages file attached) >>> >>> # make install V=1 KLIBCARCH=ppc CROSS_COMPILE=ppc-linux- >>> KLIBCKERNELSRC=/root/gen/trunk/knl/linux/usr/ >>> prefix=/tmp/klibc-install >> have you done step A previously? >> It seems you are not compiling against the preconfigured linux headers >> otherwise the headers_install wouldn't fail. >> > Yes, step A is done. > But the Makefile in src/linux...