Displaying 20 results from an estimated 66 matches for "ustc".
Did you mean:
usec
2015 Apr 18
2
Is it possiable to suppress the site-specified messages?
...When connect to a remote rsync server, ofter it will give some site-
specified messages, say, the following one:
------------
_______________________________________________________________
| University of Science and Technology of China |
| Open Source Mirror (mirrors.ustc.edu.cn) |
|===============================================================|
| |
| Debian primary mirror in China mainland (ftp.cn.debian.org), |
| also mirroring a great many OSS projects & Linux distros. |
|...
2016 Dec 19
1
Mail from yangzhh@mail.ustc.edu.cn.
I want to control the unroll factor using the command line flag “-force-vector-unroll”, such as "clang -mllvm -force-vector-unroll=2", but produce an error: " clang-4.0: error: unknown argument: '-force-vector-unroll=2' " . could you help me ?
2015 Apr 04
1
Downloading a great number of files from different rsync servers for good loadbalancing and high efficiency.
...Make the packages list file to be downloaded based on the Packages.gz
files for the corresponding OS distribution and architecture, say, for
testing, i.e., coded name by jessie and the amd64 architecture, the
following files can be use for extracting the packages list information:
https://mirrors.ustc.edu.cn/debian/dists/jessie/main/binary-amd64/
Packages.gz
https://mirrors.ustc.edu.cn/debian/dists/jessie/main/binary-all/
Packages.gz
https://mirrors.ustc.edu.cn/debian/dists/jessie/contrib/binary-amd64/
Packages.gz
https://mirrors.ustc.edu.cn/debian/dists/jessie/contrib/binary-all/
Packages.gz
ht...
2024 Dec 23
4
[Bug 3768] New: Whether to add a switch to control whether to enable the hostkeys rotation mechanism.
...Product: Portable OpenSSH
Version: 9.9p1
Hardware: Other
OS: Linux
Status: NEW
Severity: enhancement
Priority: P5
Component: sshd
Assignee: unassigned-bugs at mindrot.org
Reporter: bty at mail.ustc.edu.cn
If the public key configuration file is not specified, sshd polls all
public keys, which affects the SCP performance in scenarios where
multiple small files are transmitted. Whether to add a switch to
control whether to enable the public key rotation mechanism.
https://github.com/openssh/o...
2012 May 21
3
Need help for R install
...ny way to install the R locally?
Thank you very much for helping me.
Renzhi Cao
Graduate Research Assistant
Department of Computer Science
University of Missouri-Columbia
Columbia, MO 65211
Cell: 573-825-8874
Email : rcrg4@mail.missouri.edu<mailto:rcrg4@mail.missouri.edu>
http://home.ustc.edu.cn/~ahjxcrz
[[alternative HTML version deleted]]
2005 Mar 20
3
who has purchased a V400 card from Varion ?
who has purchased a V400 card from Varion ?
I need some help .
please help me .
thanks a lot
2006 Feb 27
2
Tried to load a theme, didn't work. No error message.
I searched every wine forum and wiki I could find, but there's no
information on wine theming.
I downloaded an *.msstyles file, and opened it with winecfg (Desktop
Integration->Install theme...). Nothing changed. The style I selected
didn't even get added to the list - the only option is still "(No
Theme)". There was no error message.
wine 0.9.8
This is the style I tried:
2018 Dec 04
3
Bug report: Function ppois(0:20, lambda=0.9) does not generate a non-decreasing result.
Le 04/12/2018 ? 11:27, I?aki Ucar a ?crit?:
> On Tue, 4 Dec 2018 at 11:12, <qweytr1 at mail.ustc.edu.cn> wrote:
>> function ppois is a function calculate the CDF of Poisson distribution, it should generate a non-decreasing result, but what I got is:
>>
>>> any(diff(ppois(0:19,lambda=0.9))<0)
>> [1] TRUE
>>
>> Actually,
>>
>>> ppois(19...
2024 Jan 13
8
[Bug 3656] New: How to fix row hammer attacks?
https://bugzilla.mindrot.org/show_bug.cgi?id=3656
Bug ID: 3656
Summary: How to fix row hammer attacks?
Product: Portable OpenSSH
Version: -current
Hardware: All
OS: All
Status: NEW
Severity: security
Priority: P5
Component: sshd
Assignee: unassigned-bugs at mindrot.org
2010 Oct 15
2
[LLVMdev] how to get MachineBasicBlock of a BasicBlock
Hello, we can get BasicBlock from MachineBasicBlock through MachineBasicBlock::getBasicBlock() function, but how can I get MachineBasicBlock of a BasicBlock?
Thank you!
2010 Oct 15
0
[LLVMdev] how to get MachineBasicBlock of a BasicBlock
...Block * block ) : block(block) {}
bool operator( MachineBasicBlock * mbb ) { return
mbb->getBasicBlock() == block; }
} findBlock;
MachineBasicBlock = *std::find( machineFunction.begin(), machineFunction.end(),
findBlock( basicBlock ) );
-Thanks
-Jeff Kunkel
2010/10/15 徐敏 <xm1988 at mail.ustc.edu.cn>:
> Hello, we can get BasicBlock from MachineBasicBlock through MachineBasicBlock::getBasicBlock() function, but how can I get MachineBasicBlock of a BasicBlock?
> Thank you!
>
>
>
>
> _______________________________________________
> LLVM Developers mailing list
&...
2010 Jun 01
2
Error: when updating the latestt kernel 2.6.34 in centos 5.5
...now the centos 5.5 ' s kernel is 2.6.18. which has
dm-raid45.ko module.
I do not know which changes to 2.6.34 about LVM. I think the errro is about
the LVM.
Anyone can give me answer or advice. Thanks.
--
Best regards to you !
>From Yanfei wang
Addr: Anhui China
Email:backyes at mail.ustc.edu.cn <Email%3Abackyes at mail.ustc.edu.cn>
QQ:23475391
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.centos.org/pipermail/centos/attachments/20100601/1400bf0c/attachment-0001.html>
2018 Dec 03
2
Bug report: Function ppois(0:20, lambda=0.9) does not generate a non-decreasing result.
function ppois is a function calculate the CDF of Poisson distribution, it should generate a non-decreasing result, but what I got is:
> any(diff(ppois(0:19,lambda=0.9))<0)
[1] TRUE
Actually,
> ppois(19,lambda=0.9)<ppois(18,lambda=0.9)
[1] TRUE
Which could not be TRUE.
Code is tested in both R 3.5.1 and Microsoft R Open 3.5.1.
_
2010 Oct 15
1
[LLVMdev] how to get MachineBasicBlock of a BasicBlock
...or( MachineBasicBlock * mbb ) { return
> mbb->getBasicBlock() == block; }
> } findBlock;
> MachineBasicBlock = *std::find( machineFunction.begin(),
> machineFunction.end(),
> findBlock( basicBlock ) );
>
> -Thanks
> -Jeff Kunkel
>
> 2010/10/15 徐敏 <xm1988 at mail.ustc.edu.cn>:
> > Hello, we can get BasicBlock from MachineBasicBlock through
> MachineBasicBlock::getBasicBlock() function, but how can I get
> MachineBasicBlock of a BasicBlock?
> > Thank you!
> >
> >
> >
> >
> > ______________________________________...
2008 May 06
1
[LLVMdev] Problem about "llc -march=msil"
...low commands work well:
[dayin at localhost src]$ llc ftp.bc -o ftp.s
[dayin at localhost src]$ llc ftp.bc -march=c -o ftp.c.s
[dayin at localhost src]$ llvm-dis ftp.bc -o ftp.ll
Enc. ftp.bc and ftp.ll
Thank you!
----------------------------------------------
Shao-Yin Cheng
sycheng at ustc.edu.cn
2008-4-26
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080506/7d369c86/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: ftp.ll
Type: appli...
2013 May 23
0
[LLVMdev] LLVM Loop Vectorizer puzzle
...unt below this value we don’t attempt to vectorize the loop. The loop below has an unknown trip count.
Once we decide to vectorize a loop, we emit code to check whether we can execute one iteration of the vectorized body. This is the code quoted below.
On May 22, 2013, at 10:23 PM, maxs <xtxwy.ustc at gmail.com> wrote:
> Hi,
> I have the llvm loop vectorizer to complie the following sample:
> //=================
> int test(int *a, int n) {
>
> for(int i = 0; i < n; i++) {
>
> a[i] += i;
>
> }
>
>
>...
2013 May 23
2
[LLVMdev] LLVM Loop Vectorizer puzzle
Hi,
I have the llvm loop vectorizer to complie the following sample:
//=================
int test(int *a, int n) {
for(int i = 0; i < n; i++) {
a[i] += i;
}
return 0;
}
//================
The corresponded .ll file has a loop preheader:
//================
for.body.lr.ph: ; preds = %entry
2013 May 23
2
[LLVMdev] LLVM Loop Vectorizer puzzle
...t
> attempt to vectorize the loop. The loop below has an unknown trip count.
>
> Once we decide to vectorize a loop, we emit code to check whether we can
> execute one iteration of the vectorized body. This is the code quoted below.
>
> On May 22, 2013, at 10:23 PM, maxs <xtxwy.ustc at gmail.com> wrote:
>
> > Hi,
> > I have the llvm loop vectorizer to complie the following sample:
> > //=================
> > int test(int *a, int n) {
> >
> > for(int i = 0; i < n; i++) {
> >
> > a[i] += i;
&g...
2002 Sep 24
2
rsync to a symlink directory
Here is the structure of my servers :
Source :
/home/test1/link_dir
sub_dir1
file1
file2
...
sub_dir2
...
Destination:
/home/test2/real_dir
sub_dir1
file1
file2
...
subdir2
2017 Sep 01
2
Natural vs National in R signon banner?
...l/en/nlsref/69741/HTML/default/viewer.htm#n1n9bwctsthuqbn1xgipyw5xwujl.htm
> https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=GSA_config_nls
> https://sites.ualberta.ca/dept/chemeng/AIX-43/share/man/info/C/a_doc_lib/aixprggd/genprogc/nls.htm
> http://scc.ustc.edu.cn/zlsc/tc4600/intel/2017.0.098/compiler_f/common/core/GUID-1AEC889E-98A7-4A7D-91B3-865C476F603D.html
> It does appear, however, that what I call 'National Language' is often
> referred to as 'Native Language'. And the 'National Language' terminology
&...