Displaying 20 results from an estimated 23 matches for "x204".
Did you mean:
3204
2010 Oct 26
0
[LLVMdev] Reproducible testcase for r100044
...i32 6
%x140 = icmp sge i32 %lod, 0
br i1 %x140, label %if-true-block, label %if-false-block
if-true-block:
ret i32 0
if-false-block:
; Commenting the following two lines will avoid the bug
%x198 = getelementptr [13 x i32]* %texture.row_stride, i32 0, i32 0
store i32 1, i32* %x198
%x204 = getelementptr [13 x i32]* %texture.data_ptr, i32 0, i32 0
%x205 = load i32* %x204
ret i32 %x205
; CHECK: # %if-false-block
; CHECK-NEXT: movl $1, 16([[REGISTER:%[a-z]+]])
; CHECK-NEXT: movl 120([[REGISTER]]), %eax
; CHECK-NEXT: ret
}
;; Optional main function, to used with bugpoint
;...
2012 Apr 15
0
[LLVMdev] How to compile this linux-driver like programme into .bc file?
Hi ZhenKai,
Perhaps you can try to write a kernel module and compile it by using Clang first,
(see http://www.faqs.org/docs/kernel/). You might be interested in this page,
http://www.faqs.org/docs/kernel/x204.html which contains a Makefile used to compile
a kernel module. Good Luck!
Regards,
chenwj
--
Wei-Ren Chen (陳韋任)
Computer Systems Lab, Institute of Information Science,
Academia Sinica, Taiwan (R.O.C.)
Tel:886-2-2788-3799 #1667
Homepage: http://people.cs.nctu.edu.tw/~chenwj
2012 Apr 15
2
[LLVMdev] How to compile this linux-driver like programme into .bc file?
Hi all,I've been confuzed by this question for several days! I know there is Started Guild in llvm.org to tell me how tocompile helloworld.c into ,bc file. But what if it is a module that includes header files in linux?Could you be kind and tell me the clang command that can compile the following programme into a .bc file? Thank you! #include <linux/init.h>
#include
2009 Nov 24
7
CERN using RHEL/CentOS?
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi list,
I just did my daily news scan and saw some screenshots that illustrate
the press release [0] announcing the first collisions at the LHC. Those
screenshots show windows and buttons that exactly match my CentOS GNOME
Desktop [1]. AFAIK, SuSE/Novell has different skins, as has
(Open)Solaris and AIX, for instance.
So, has there anybody more
2009 May 13
2
File compare word by word
Is there a utility that compares files word by word, instead of whole
lines or single bytes?
I found that I can simulate this by replacing all the spaces in a file
with linefeeds, then 'diff -B' the results, but that's kind of awkward
and hard to read when differences that matter come up.
(For the record, I tried using OOo's document comparer, converting to
text and using diff,
2007 May 10
2
CentOS Install From Scratch on XFS File System
...ow difficult would it be to make the necessary changes. I've
done a lot of Google searching and searching of the CentOS site, but haven't
found an answer anyplace. Any help would be greatly appreciated. Thanks.
--
Brent L. Bates (UNIX Sys. Admin.)
M.S. 912 Phone:(757) 865-1400, x204
NASA Langley Research Center FAX:(757) 865-8177
Hampton, Virginia 23681-0001
Email: B.L.BATES at larc.nasa.gov http://www.vigyan.com/~blbates/
2008 Mar 20
3
Enterprisable IP Camera recording/monitoring software
Anyone have any experiences with this they care to share?
Thanks!
jlc
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.centos.org/pipermail/centos/attachments/20080320/7fb7894c/attachment-0002.html>
2007 May 22
2
Login problem on CentOS 4.4 GDM
I have just restructured my system (repartitioned the main disk to
separate /home from /) and I am now getting this error when I try to
log in as a non-root user:
Your session only hasted less than 10 seconds. If you have not logged
out yourself, this could mean that there is some installation problem
or you may be out of disk space. Try logging in with one of the
failsafe sessoions to see if
2007 Aug 14
2
Adding Things to Rescue Mode
...ike to add as well. How would I go
about doing this? Any pointers to FAQ's or "How to's"? I've done some
searching, but haven't found anything recent enough to be useful. Thanks for
any help.
--
Brent L. Bates (UNIX Sys. Admin.)
M.S. 912 Phone:(757) 865-1400, x204
NASA Langley Research Center FAX:(757) 865-8177
Hampton, Virginia 23681-0001
Email: B.L.BATES at larc.nasa.gov http://www.vigyan.com/~blbates/
2010 Oct 06
3
GDM could not write to you authorization file ... Please contact your system adminstrator
I am the system administrator.
I have a system that was built with a default install which resulted
in everything in a single file system except for /boot
wrote some scripts to split out: /home, /usr, /var, /opt, and /tmp to
separate file systems/logical volumes it looks like it ought to work,
There's plenty of space in all the filesystems and I can log via ssh
and have write access in my
2008 Jul 18
3
semi OT: logwatch results
Semi Off Topic
My searching hasn't found what I consider superior info, and we are
wondering from others experience on this list...
In the logwatch results we all see the info below on almost a daily basis
I have taken the liberty of combining logwatch results from centos 4 and 5
machines for extra info and future searchability
-----
Centos 4
-----
--------------------- httpd Begin
2008 Feb 29
7
Recommended software for mail greylist?
Hi, all.
I want to use grey list in mail server, currently, i use postgrey to
implement it.
Any other recommended software?
Thanks very much.
-----
Best Regards.
Zhang Huangbin
- OpenBSD 4.2 -release, i386.
- RHEL 5.1
2009 Dec 07
6
Installing R on CentOS 5
Hi,
Has anyone been able to successfully install R on CentOS5.4? I am having problems with dependencies.... perl is installed.
Cheers,
Diederick
--> Finished Dependency Resolution
R-core-2.10.0-2.el5.x86_64 from R-project has depsolving problems
--> Missing Dependency: perl(File::Copy::Recursive) is needed by package R-core-2.10.0-2.el5.x86_64 (R-project)
-------------- next part
2012 Apr 16
2
[LLVMdev] How to compile this linux-driver like programme into .bc file?
...4-15 18:12:24,"陳韋任" <chenwj at iis.sinica.edu.tw> wrote:
>Hi ZhenKai,
>
> Perhaps you can try to write a kernel module and compile it by using Clang first,
>(see http://www.faqs.org/docs/kernel/). You might be interested in this page,
>http://www.faqs.org/docs/kernel/x204.html which contains a Makefile used to compile
>a kernel module. Good Luck!
>
>Regards,
>chenwj
>
>--
>Wei-Ren Chen (陳韋任)
>Computer Systems Lab, Institute of Information Science,
>Academia Sinica, Taiwan (R.O.C.)
>Tel:886-2-2788-3799 #1667
>Homepage: http://peopl...
2007 Apr 19
2
Polycom SIP Phones On LAN can't register without WAN (Internet) Access
...es aren't able to register with
asterisk.
This baffles me because the phone has the LAN address for the Asterisk
server so I don't know why it's doing DNS lookups.
Phone Example: (SIP 600)
Phone's Config File:
reg.1.address="254"
reg.1.label="x204"
reg.1.type="private"
reg.1.thirdPartyName=""
reg.1.auth.userId="254"
reg.1.auth.password="mypass"
reg.1.server.1.address="192.168.0.5"
reg.1.server.1.port=""
reg.1.server.1.tran...
2012 Aug 08
1
basehaz() in package 'Survival' and warnings() with coxph
Hello,
I have a couple of questions with regards to fitting a coxph model to a data
set in R:
I have a very large dataset and wanted to get the baseline hazard using the
basehaz() function in the package : 'survival'.
If I use all the covariates then the output from basehaz(fit), where fit is
a model fit using coxph(), gives 507 unique values for the time and the
corresponding cumulative
2008 Nov 10
4
Running From Live DVD & Keeping Settings Between Boots
...I can not find it. I've done some searching and I either get way
too many hits or way too few, none of which are what I'm looking for. Does
anyone remember that post and can forward that message to me? Thanks.
--
Brent L. Bates (UNIX Sys. Admin.)
M.S. 912 Phone:(757) 865-1400, x204
NASA Langley Research Center FAX:(757) 865-8177
Hampton, Virginia 23681-0001
Email: B.L.BATES at larc.nasa.gov http://www.vigyan.com/~blbates/
2012 Aug 09
1
basehaz() in package survival and warnings with coxph
I've never seen this, and have no idea how to reproduce it.
For resloution you are going to have to give me a working example of the
failure.
Also, per the posting guide, what is your sessionInfo()?
Terry Therneau
On 08/09/2012 04:11 AM, r-help-request at r-project.org wrote:
> I have a couple of questions with regards to fitting a coxph model to a data
> set in R:
>
> I have a
2010 Jan 05
7
setup schedule cron job every other week?
We have CENTOS 5 on DELL server. I tried to setup schedule cron job to run every other week on Saturday (NOT first and third week ).
Does ayone has ideal how to do it?
Thanks.
___________________________________________________
??????? ? ????????????????
http://messenger.yahoo.com.tw/
2010 Mar 21
3
Looking for experiences with filesystem choices....
Lots of opinions out there and I have read and read, so I have a home server
that I have finally setup with a hot swap hdd cage and what I am planning on
doing is copying my data drive every other day and rotating them offsite,
haven't figured out how often though. So I did my first test last night and
the backup drive was formatted with ext3 but looking to try to speed things
up and was