Displaying 20 results from an estimated 187 matches for "dimas".
Did you mean:
dias
1999 Jul 20
2
tensor() function and sets
Hi Everyone,
To complete the outer() and kronecker() functions in the base, may I
suggest the following tensor() function, which allows the multiplication
of arrays through sets of conformable dimensions. I am happy to write a
help page if required.
The code also needs a setdiff() function which prompts me to ask: what
about simple set functions? I expect many of us have written our own
2006 Feb 05
30
Emacs rails.el
Features:
* Management WEBrick - start, stop
* Viewing log files
* Abbrev from TextMate
* Switching between View/Action
http://www.emacswiki.org/cgi-bin/emacs/rails.el
2012 Feb 13
23
Set nodatacow per file?
Hello,
is it possible to set nodatacow on a per-file basis? I couldn''t find
anything.
If not, wouldn''t that be a great feature to get around the performance
issues with VM and database storage? Of course cloning should still
cause COW.
Thanks,
Ralf-Peter
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to
2016 Apr 19
2
state of the lld linker for aarch64
Hi,
Some time ago there were some information about aarch64 support for the lld
linker project:
http://lld.llvm.org/open_projects.html#elf-aarch64
Right now there is no such information.
Also there is some presentation described that the simple application can
be linked using
lld:
http://llvm.org/devmtg/2016-03/Presentations/EuroLLVM%202016-%20New%20LLD%20linker%20for%20ELF.pdf
What is the
2016 Apr 21
2
lld and linker scripts
Hi,
I tried to use linker script with lld (this script works just file with GNU
ld). I got a problem with defining new symbols and assign values
(addresses) to them. For instance I got the following code in the linker
script:
SECTIONS
{
_exec_sym = 0;
...
After using lld command with the --script option I got the following error:
line 3: : expected, but got =
_exec_sym = 0;
^
As
2004 Jul 25
2
file index-mail-headers.c: line 408 (index_mail_get_header): assertion failed: (ret != 0)
FreeBSD 4.10-RELEASE, dovecot-1.0-test29 crashes on sort and thread
commands:
Jul 25 15:12:08 owl dovecot: imap-login: Login: dima [81.19.64.101]
Jul 25 15:12:26 owl dovecot: IMAP(dima): file index-mail-headers.c: line
408 (index_mail_get_header): assertion failed: (ret != 0)
Jul 25 15:12:26 owl dovecot: child 20384 (imap) killed with signal 6
(gdb) bt
#0 0x281e0fc4 in kill () from
2002 Jul 01
1
samba PDC & XP
Hi
I can't join to samba 2.2.5 PDC with WinXP.
Is samba PDC works with XP?
I use Samba-HOWTO-Collection.pdf, build smb.conf, but it doesn't work.
debug level 0 doesn't show error, level 1 too.
level 2 give 45k log, but I'm not good in samba. I could't understand,
what happend.
Could anybody help me?
Dima mailto:samba@asv.ru
2009 Jan 19
1
iscsi of a SAN on a DomU
Hi,
i have a debian Etch x86_64 with a xen 3.1 on a kernel 2.6.18-xen.
I have some DomU with Debian Etch.
I installed open-iscsi, configure /etc/iscsi/iscsid.conf:
---
node.active_cnx = 1
node.startup = automatic
#node.session.auth.username = dima
#node.session.auth.password = aloha
node.session.timeo.replacement_timeout = 120
node.session.err_timeo.abort_timeout = 10
2007 Dec 19
3
array addition
Hi
suppose I have two arrays x1,x2 of dimensions a1,b1,c1 and
a2,b2,c2 respectively.
I want x = x1 "+" x2 with dimensions c(max(a1,a2), max(b1,b2),max
(c1,c2))
with
x[a,b,c] = x1[a1,b1,c1] + x2[a2,b2,c2] if a <=min(a1,a2) , b<=min
(b1,b2), c<=min(c1,c2)
and the other bits either x1 or x2 or zero according to whether the
coordinates
are "in range" for
2012 Jun 28
2
[LLVMdev] Why some registered passes are not available through opt?
Dear LLVM,
I'm trying to understand why opt tool does not know some of the
registered passes, for example, -targetpassconfig, -gc-lowering,
-unreachableblockelim, -unreachableblockelim, -stack-protector,
-machinemoduleinfo. This prevents me from using bugpoint to reduce the
crash in backend. As I understand, they should be registered and
available through the command line in the same way as
2012 Jul 31
1
[LLVMdev] How to create a mangler instance from target machine?
Dear LLVM,
Might be a easy question for someone, but not for me now. Consider there is
a TargetMachine instance. Having this target, how could you get a
corresponding Mangler class instance?
Mangler depends on MCContext, which is connected with LLVMTargetMachine
inherited from TargetMachine. However, LLVMTargetMachine is only available
for targets machines implementations, and not available
2010 Jun 29
2
Matrix operations
Hello
I have a quick question.
I need to compute matrix in R, like A <- t(X) %*% solve(V) %*% X, where X is
a vector and V is a matrix
This code works, but now i want to optimize it. I have try:
A <- crossprod(X, solve(V)) %*% X
Is there another, better way?
WBR
Dima
[[alternative HTML version deleted]]
2011 Oct 16
2
unresolved ref root error
Hello,
On a newly created filesystem with btrfs-progs-git-20111009 and the 3.1.0-rc8
kernel I am getting the following error when doing btrfsck after main OS
installation
fs tree 256 refs 2
unresolved ref root 256 dir 256 index 2 namelen 8 name __active error 600
found 4215058432 bytes used err is 1
total csum bytes: 3962760
total tree bytes: 157192192
total fs tree bytes: 146976768
2012 Apr 08
2
[LLVMdev] Privatize global variables
Dear LLVM,
To workaround the GPU modules visibility rules, we need to lower
global variables into scope-variables of main entry and arguments in
other functions. For example,
int foo = 0;
int func() { return foo + 1; }
int main() { return func(); }
should become:
int func(int* foo) { return *foo + 1; }
int main() { int foo = 0; return func(&foo); }
Is there a strong name/term for this
2012 Jun 14
2
[LLVMdev] A simple tutorial on generating PTX assembler out of Ada source code using LLVM NVPTX backend
Dear LLVM,
FWIW, attached presentation provides a simple jump-start tutorial for
newbies to start doing something useful with LLVM, DragonEgg, NVPTX backend
and some custom high-level language. Along with short software overview
from the user perspective it contains instructions on building components
necessary to experiment with NVPTX and an example usecase of generating PTX
assembler out of the
2011 Nov 21
2
[LLVMdev] A way to pass const char* arg without creating a GlobalVariable
Hi,
Is it possible to make up a ConstantArray containing a "const char*"
string and pass it directly to the function "char*" argument *without*
creating a GlobalVaribable?
I looked around and found the usual implementation is
array->globalVar->gep. If we omit globalVar & gep, then the argument
type would be [ i8 x N ], where N is set to the exact string length,
and
2012 Jun 29
2
[LLVMdev] Why some registered passes are not available through opt?
Hi Duncan,
Is it correct that opt does not understand codegen passes, but llc
understands both analysis/transformation and codegen passes? I would
like to modify bugpoint to work on this end.
Thanks,
- D.
2012/6/29 Duncan Sands <baldrick at free.fr>:
> Hi Dima,
>
>> I'm trying to understand why opt tool does not know some of the
>> registered passes, for example,
2017 Jun 07
2
libc++ failed to link against musl
On 6 Jun 2017, at 21:41, Dmitry Golovin <dima at golovin.in> wrote:
>
> Neither is the case. The system that I want to build with this toolchain is Linux-based, but not GNUish. I would like to use musl instead of glibc and libc++ instead of libstdc++, only use binutils provided by LLVM. I think that in that case I will link libc++abi and libunwind to libc++ statically, so I will not
2011 Mar 04
2
How to copy data from data.frame to matrix
Hello
I'm a new in R
I have a large data.frame "s" (this is actualy just a table in mysql) :
> names(s)
[1] "symbols", "day", "value"
I need to convert it to simple matrix. I have define this matrix like this:
> data.matrix <- matrix(nrow=nDays, ncol=nSymbols, dimnames=list(days,
symbols))
then i just copy values to the matrix using for()
2013 Feb 27
0
[LLVMdev] GSoC 2013
Hi Anton,
I think it would be worth to remove this signature in the bottom line:
Last modified: $Date: 2009/12/16 09:03:23 $
Otherwise, new people may think this page is long time abandoned :)
Also, a question: may side projects that use LLVM enlist the
mutually-beneficial tasks and add new categories? For example, we are
interested specifically in Polly & GPU backend, plus some minor core