Displaying 20 results from an estimated 900 matches similar to: "[LLVMdev] running a pass on multiple files"
2018 Jul 06
4
join samba to an existing AD failed
Hello,
I was trying to join a samba DC to an existing AD. But it failed when I used the command ‘samba-tool domain join euler.huawei.com DC ‘ to join it to the domain. Here’s the log:
euler-2:/usr/custom # samba-tool domain join euler.huawei.com DC --option='idmap_ldb:use rfc2307 = yes' -U vdsadmin at euler.huawei.com
Finding a writeable DC for domain 'euler.huawei.com'
2012 Oct 23
3
[LLVMdev] precondition suggestion to LLVM
Thank you, it was what I really was searching for :)
However, I don't know if I well understood. I've find this link in the second link which seemed what i was looking for: http://nondot.org/sabre/LLVMNotes/BuiltinUnreachable.txt .If I put around the code block (inside my function with precondition (x>0 && y>0)) a contruct like that that use __builtin_unreachable:
int foo(int
2012 Oct 23
0
[LLVMdev] precondition suggestion to LLVM
On Mon, Oct 22, 2012 at 9:33 PM, Niko Zarzani <koni10 at hotmail.it> wrote:
> Thank you, it was what I really was searching for :)
>
> However, I don't know if I well understood. I've find this link in the
> second link which seemed what i was looking for:
> http://nondot.org/sabre/LLVMNotes/BuiltinUnreachable.txt .
> If I put around the code block (inside my
2018 Feb 20
2
Does Huawei break the license of CentOS?
Hello, CentOS team and everyone who cares about CentOS,
Huawei release an Euler OS, which is an distribution based on CentOS.
http://developer.huawei.com/ict/en/site-euleros/euleros-introduction
According to CentOS's statement, CentOS is distributed under the GPLv2 License.
http://mirror.centos.org/centos/7.4.1708/os/x86_64/EULA
The GPL license requires the modified version to be
2012 Dec 18
1
Breaking out of multiple loops
Hey all,
I'm currently working through the problems at Project Euler -- this
question came up while working on Problem 9
(http://projecteuler.net/problem=9):
"A Pythagorean triplet is a set of three natural numbers, a < b < c,
for which, a^2 + b^2 = c^2. For example, 3^2 + 4^2 = 9 + 16 = 25 =
5^2. There exists exactly one Pythagorean triplet for which a + b + c
= 1000. Find the
2012 Oct 22
5
[LLVMdev] precondition suggestion to LLVM
Hi all,Is there any way to tell LLVM some additional information about the variables in the code in order to make better optimization?For example, if my function has a certain precondition (such as x>0) then it will be possible to better optimize the code given that information (which the compiler does not know).I am new in this field and I don't know if there are ways to tell the compiler
2018 Feb 21
4
Does Huawei break the license of CentOS?
Hello, Peter, thanks for your reply
1. Huawei DOES change the distribution EULA, if type in the following command:
vi /usr/share/eula/eula.en_US
you can see it changed to "HUAWEI EulerOS-2.0"
which is a copyright one, let alone original GPL license.
According to CentOS Linux EULA
The Distribution is released as GPLv2. Individual packages in the
distribution come with their own
2010 Oct 24
1
Optimize parameters of ODE Problem which is solved numeric
Hi,
I have a data-matrix:
> PID
sato hrs fim health
214 3 4.376430 6.582958 5
193 6 4.361825 3.138525 6
8441 6 4.205771 3.835886 7
7525 6 4.284489 3.245139 6
6806 7 4.168926 2.821833 7
5682 7 1.788707 1.212653 7
5225 6 1.651463 1.436980 7
4845 6 1.692710 1.267359 4
4552 5 1.686448 1.220539 6
2012 Oct 23
0
[LLVMdev] precondition suggestion to LLVM
Hi Niko,
Do you mean branch prediction, i.e. __builtin_expect [1]? Many
compilers support it, I think clang (LLVM's C/C++ frontend) is among
them.
- D.
[1] http://gcc.gnu.org/onlinedocs/gcc/Other-Builtins.html
2012/10/23 Niko Zarzani <koni10 at hotmail.it>:
> Hi all,
> Is there any way to tell LLVM some additional information about the
> variables in the code in order to
2013 Sep 12
1
[LLVMdev] (no subject)
I tried it on a simple file test.c (as you did) but actually clang does not show me any output.
In addition I tried to set the CFLAGS specifying the -mllvm -time-passes options. However I still have anything about the time passes informations in the output and I also get this warning during the build with make:clang: warning: argument unused during compilation: '-mllvm -time-passes'Maybe
2007 Mar 25
2
Installing R on a machine with 64-bit Opteron processors
I have been tasked with installing statistical and other data
analysis applications on a new Sun Fire X4600 M2 x64 server that came
equipped with eight AMD dual core Opteronn 64-bit processors. It is
running the 64-bit version of Suse Linux 9.
I have read through the installation docs, and I guess I don't
understand what to do, or even how to identify which version, if any,
of this
2013 Oct 06
3
[LLVMdev] Pass sequence
Hi all,
I wrote 2 passes and I want to make run llvm run the passes in this order:
-mem2reg -load=…/mypass1.dylib -mypass1 -load=…/mypass2.dylib -mypass2 -O1 -O2 -O3
I know I can do this by manually passing them as an argument to opt.
Is there any way to force this sequence directly from clang?
I am asking this because I am trying to compile a program and I can specify in the ./configure
2013 Sep 12
0
[LLVMdev] (no subject)
To use options like "-time-passes" and "-stats" you need to prefix
them with "-mllvm":
clang -mllvm -time-passes -O3 test.c -o /dev/null
Note that I believe you need asserts enabled or some other build
configuration for this to work,
the timing code is disabled in fully release builds IIRC.
Hope this helps!
~Will
On Thu, Sep 12, 2013 at 11:50 AM, Niko Zarzani
2008 Apr 04
4
Arbitrary Precision Numbers
Hi
(If you're wondering, this is a Project Euler question :))
If I wanted to calculate the sum of the digits in the decimal representation
of 2^1000, what would be a good way to go about that? I've tried the
following methods:
# Calculate the sum of digits in the decimal representation of 2^n
# Only works for smaller values of n
bsum <- function(n) {
s <- 0
e <-
2013 Sep 12
2
[LLVMdev] (no subject)
Hi all,
I was interested in knowing which of the passes spends the most of the time compiling the dns server BIND.With the -CC option I selected clang as my compiler and, as I was expecting, the compilation gave me no problems.Now I have a question, is there any way to set an option similiar to "-time-passes" to clang in order to get those information I was interested in?Or do you think
2005 Nov 07
0
[LLVMdev] LLVM 1.6 Release Branch
Everything builds fine on sparc. The configure script needs to be fixed
though (see previous email).
Sparc testing results:
make check:
# of expected passes 1189
# of expected failures 34
Regressions Single Source:
None
New Failures Single Source (new tests):
2005-05-12-Int64ToFP: llc,jit
Regressions MultiSource:
Applications/d/make_dparser: llc, cbe, jit
2013 Oct 07
0
[LLVMdev] Pass sequence
On Oct 5, 2013, at 9:17 PM, Niko Zarzani <koni10 at hotmail.it> wrote:
> Hi all,
>
> I wrote 2 passes and I want to make run llvm run the passes in this order:
> -mem2reg -load=…/mypass1.dylib -mypass1 -load=…/mypass2.dylib -mypass2 -O1 -O2 -O3
>
> I know I can do this by manually passing them as an argument to opt.
>
> Is there any way to force this sequence
2012 Oct 23
0
[LLVMdev] precondition suggestion to LLVM
You may want to check this out:
http://lists.cs.uiuc.edu/pipermail/llvmdev/2012-October/053924.html
and also
http://llvm.org/PR810
- xi
On 10/22/12 6:05 PM, Niko Zarzani wrote:
> Hi all,
> Is there any way to tell LLVM some additional information about the
> variables in the code in order to make better optimization?
> For example, if my function has a certain precondition (such
2018 Jul 03
0
4.8.3 join domain as DC failed
Hello everyone,
I’ve met a strange problem with 4.8.3. I firstly built a DC using samba 4.8.3 in one linux, and I can create a domain ‘euler.huawei.com’ successfully. Then I try to install samba 4.8.3 in another linux mechine, and add it to the existed domain. It failed when I used the command ‘samba-tool domain join euler.huawei.com DC ‘ to join it to the domain. Here’s the log:
2018 Jul 06
0
join samba to an existing AD failed
On Fri, 6 Jul 2018 15:50:08 +0800 (CST)
Ryan via samba <samba at lists.samba.org> wrote:
> Hello,
>
> I was trying to join a samba DC to an existing AD. But it failed when
> I used the command ‘samba-tool domain join euler.huawei.com DC ‘ to
> join it to the domain. Here’s the log:
>
>
> euler-2:/usr/custom # samba-tool domain join euler.huawei.com DC
>