search for: 3.7

Displaying 20 results from an estimated 1252 matches for "3.7".

Did you mean: 3.0
2016 Feb 11
5
issues with split llvm libraries and llvmpipe and failing to load library
Hey, So in Fedora rawhide we are now building llvm 3.7.1 into the lots of little shared libraries format. However I'm running into a major problem with the fact that sometimes dlclose isn't dropping all the LLVM libraries from the address space of the process. We have a sequence like this: a) X server asks mesa gbm library to init, it loads the kms_swrast_dri.so with
2014 Oct 04
2
massive load caused by smartvd
Hey all, I noticed that my puppet server running CentOS 6.5 was acting a little pokey. So I logged in and did what well just about anyone would've done. And ran the uptime command to have a look at the load. And it was astonishingly high! [root at puppet:~] #uptime 21:28:01 up 1:26, 3 users, load average: 107.37, 72.06, 75.52 So then I had a look at top and saw a LOT of processes
2015 Dec 21
3
lldb -c corefile get segmentation fault on centos7
Hi, I build llvm+clang+lldb 3.7 successfully on centos7, and lldb -p PID works pretty well. However when I tried lldb -c corefile executable_bin, lldb itself core dumpped. Attached the following core info which is debugged by gdb: [root at dn-cn-controller-4fbd4 data1]# lldb -c a.corefile /usr/local/myproject/bin/cnode *(lldb) target create "/usr/local/myproject/bin/cnode" --core
2005 Jul 08
0
CentOS-announce Digest, Vol 5, Issue 3
Send CentOS-announce mailing list submissions to centos-announce at centos.org To subscribe or unsubscribe via the World Wide Web, visit http://lists.centos.org/mailman/listinfo/centos-announce or, via email, send a message with subject or body 'help' to centos-announce-request at centos.org You can reach the person managing the list at centos-announce-owner at centos.org When
2024 Jun 15
2
code for year month day hr format
I have solar-geophysical data e.g as blow: YEAR DOY HR IMF SW SSN Dst f10.7 2012 214 0 3.4 403. 132 -9 154.6 2012 214 1 3.7 388. 132 -10 154.6 2012 214 2 3.7 383. 132 -10 154.6 2012 214 3 3.7 391. 132 -9 154.6 2012 214 4 4.2 399. 132 -7 154.6 2012 214 5 4.1 411. 132 -6 154.6 2012 214 6 4.0 407. 132 -6 154.6 2012 214 7 4.2 404. 132 -4
2015 Dec 18
3
InstrProf backward compatibility
Hi all, I am working on adding PGO to LDC (LLVM D Compiler). The current implementation 1) uses LLVM's InstrProf pass to generate an instrumented executable 2) links to compiler-rt/lib/profile for the runtime functionality to write a raw profile data file 3) uses llvm-profdata to merge profile data and convert from profraw to profdata format 4) uses llvm::IndexedInstrProfReader to read-in
2015 Aug 13
17
[3.7 Release] Let's fix the release notes!
Dear everyone, The in-progress release notes for 3.7 [1,2] make it look like we didn't do very much over the past six months. Obviously that's not the case at all, so let's get them in shape! If you've been thinking "I should probably add this to the release notes at some point", now is the time :-) I have a list below of changes that might be worth mentioning. I
2005 Jul 08
0
CESA-2005:564 Important CentOS 4 i386 php - security update
CentOS Errata and Security Advisory 2005:564 https://rhn.redhat.com/errata/RHSA-2005-564.html The following updated files have been uploaded and are currently syncing to the mirrors: i386: php-4.3.9-3.7.i386.rpm php-devel-4.3.9-3.7.i386.rpm php-domxml-4.3.9-3.7.i386.rpm php-gd-4.3.9-3.7.i386.rpm php-imap-4.3.9-3.7.i386.rpm php-ldap-4.3.9-3.7.i386.rpm php-mbstring-4.3.9-3.7.i386.rpm
2005 Jul 08
0
CESA-2005:564 Important CentOS 4 x86_64 php - security update
CentOS Errata and Security Advisory 2005:564 https://rhn.redhat.com/errata/RHSA-2005-564.html The following updated files have been uploaded and are currently syncing to the mirrors: x86_64: php-4.3.9-3.7.x86_64.rpm php-devel-4.3.9-3.7.x86_64.rpm php-domxml-4.3.9-3.7.x86_64.rpm php-gd-4.3.9-3.7.x86_64.rpm php-imap-4.3.9-3.7.x86_64.rpm php-ldap-4.3.9-3.7.x86_64.rpm
2009 Mar 22
3
data analysis. R
so i am having this question what should i do if the give data file (.txt) has 4 columns, but different lengths? how can i read them in R? any idea for the following problem? Gas consumption (1000 cubic feet) was measured before and after insulation was put into a house. We are interested in looking at the effect of insulation on gas consumption. The average outside temperature (degrees celcius)
2005 Jul 07
0
CESA-2005:564 Important CentOS 4 ia64 php - security update
CentOS Errata and Security Advisory 2005:564 https://rhn.redhat.com/errata/RHSA-2005-564.html The following updated files have been uploaded and are currently syncing to the mirrors: files: updates/ia64/RPMS/php-4.3.9-3.7.ia64.rpm updates/ia64/RPMS/php-devel-4.3.9-3.7.ia64.rpm updates/ia64/RPMS/php-domxml-4.3.9-3.7.ia64.rpm updates/ia64/RPMS/php-gd-4.3.9-3.7.ia64.rpm
2015 May 26
3
[LLVMdev] LLVM 3.7 release plans
Hello everyone, There is still some time to go, but I would like to share my preliminary plan for 3.7. The idea is to keep us on the 6-month release cycle, which means: - Branch for 3.7 on 14 July 2015 - Release 3.7 end of August (absolutely no later than 4 September) I also have a few things I'd like to try this time: - Announce the first release candidate on llvm-announce to encourage
2024 Jun 15
2
code for year month day hr format
Thank you Rui. I ran the following script df1 <- read.table("solar_hour", header = TRUE) df1$date <- as.Date(paste(df1$year, df1$hour), format = "%Y %j", origin = "2012-08-01-0") df2 <- df1[c("date", "IMF", "SWS", "SSN", "Dst", "f10")] head(df1) #To display all the rows print(df2). It gave me this
2024 Jun 15
1
code for year month day hr format
?s 20:00 de 15/06/2024, Jibrin Alhassan escreveu: > I have solar-geophysical data e.g as blow: > YEAR DOY HR IMF SW SSN Dst f10.7 > 2012 214 0 3.4 403. 132 -9 154.6 > 2012 214 1 3.7 388. 132 -10 154.6 > 2012 214 2 3.7 383. 132 -10 154.6 > 2012 214 3 3.7 391. 132 -9 154.6 > 2012 214 4 4.2 399. 132 -7 154.6 > 2012 214 5 4.1 411.
2015 Jul 27
1
[LLVMdev] Recent clang 3.7 RC1 release broke Travis CI integration
Hi, Until Friday of last week, it was possible to install a package named "clang-3.7" from the llvm-toolchain-precise repository linked to from http://llvm.org/apt/. However, at about the same time 3.7 RC1 was announced, that stopped working. People who use Travis CI for integration testing frequently depend on being able to retrieve clang this way so that they can test their
2010 Jan 11
3
Illustrating kernel distribution in wheat ears
Dear all R2.10 WinXP I have a dataset dealing with the way different wheat cultivars build their yield. Wheat ears are organised in spikelets where the spikelets can be numbered from the bottom, with even numbers on one side and odd on the other. I know how many kernels there were in each spikelet after some months spent counting them... Now I want to illustrate the differences between the
2009 May 06
2
Need help building combined model
I have two kind of variables. One kind where the values are continious and ranges from -1 to 5, and the other is boolean (i.e. true or false). For example: V1   V2  V3 V4 V5  V6 0.1  0.4   1    0   -1   3.7 0.4  0.1   2   -1   0    3.7 and V1  V2  V3 0     1    0 0     0    1 I want to make a model for classification, combining this two. Will it be wiser to use the second variable values
2015 Sep 06
2
LLVMBuildLandingPad is wrong on 3.7
Hi all, During the dev in between 3.6 and the release of 3.7, the personality function was moved from the landingpad to the function itself. During theses events, LLVMBuildLandingPad was changed, twice. The first time in a backward incompatible way, the second in a backward compatible way. As things are now, the backward incompatible way is in 3.7 and the backward compatible in master. Meaning
2003 Sep 16
3
OpenSSH 3.7 released
OpenSSH 3.7 has just been released. It will be available from the mirrors listed at http://www.openssh.com/ shortly. OpenSSH is a 100% complete SSH protocol version 1.3, 1.5 and 2.0 implementation and includes sftp client and server support. We would like to thank the OpenSSH community for their continued support to the project, especially those who contributed source and bought T-shirts or
2006 Aug 14
1
Video Card Not Recognized Installing CentOS 3.7
I set up a new system that includes the following: ASUS AE8N-E Motherboard (NVIDIA nForce 4 Ultra Chipset) AMD Athlon 64 3800+ Processor OCZ PC3200 Gold Edition 1GB Memory EVGA GeForce 6600 PCI-Express x16 Video Card CentOS 3.7 The video card wasn't detected and I had to use the VESA driver (generic) when I installed CentOS 3.7. As this is the first time I've used a NVIDIA video card