Displaying 19 results from an estimated 19 matches for "sovling".
2009 Jan 13
0
SOVLED Can sound be redirected from a remote computer to local computer?
On Sunday 11 January 2009 1:25 am, Brian McKerr wrote:
> Try NX from nomachine.com. The Free version FreeNX is in the centos extras
> repo.
Had to do a second install on the remote computer (I probably did something
wrong the first time) but everything that I needed to work, does work.
I even have sound to my local computer from the remote computer via a windows
application running with
2005 Aug 12
1
Compiling lirc on centos 4.1 - SOVLED
I used the following command to solvee the missing kernel problem.
./configure --with-port=0x3f8 --with-irq=4 --with-transmitter --enable-sandboxed --with-driver=serial --with-kerneldir=/lib/modules/2.6.9-11.EL/build
Things are going much better now..
Jerry
----------
Karanbir,
I am still having problems. I grabbed the rpm and installed it. I could not get a /dev/lircd device.
I put the
2005 Jan 16
2
[LLVMdev] LLVM 1.4 Build Error
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=GB18030" http-equiv="Content-Type">
<title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Hello,<br>
I built llvm1.4 with gcc3.4.3 and glibc2.3.2 on a redhat 9.0 machine,
2002 Apr 23
2
Asking about how to use R to draw Time Series graph
Hi
I'm study at University of Canterbury. Now, We have one project use R
to do time series. The problem is I don't know how to use R to draw time
series graph! Can you help me sovle this problem? I can not find in
manuals book! Can you tearch me what fuction command I have to use?
Thanks alway!
Sam
2005 Jan 16
0
[LLVMdev] LLVM 1.4 Build Error
The HAVE_MMAP_FILE macro comes from when you configured llvm. The configure
tested if your system is giving access to a various resources required by
llvm. LLVM needs the MMAP functionality by your system. Some times, if the
required resources aren't present, we use other resources.
However, in this case the building process is stopped, because the
functionality can't be implemented
2010 Mar 11
4
help about solving two equations
I have two matrix s1 and s2, each of them is 1000*1.
and I have two equations:
digamma(p)-digamma(p+q)=s1,
digamma(q)-digamma(p+q)=s2,
and I want to sovle these two equations to get the value of x and y, which are also two 1000*1 matrices.
I write a program like this:
f <- function(x) {
p<- x[1]; q <- x[2];
((digamma(p)-digamma(p+q)-s1[2,]) )^2 +((digamma(q)-digamma(p+q)-s2[2,]) )^2
2009 Mar 29
4
Constrined dependent optimization.
I have an optimization question that I was hoping to get some suggestions on how best to go about sovling it. I would think there is probably a package that addresses this problem.
This is an ordering optimzation problem. Best to describe it with a simple example. Say I have 100 "bins" each with a ball in it numbered from 1 to 100. Each bin can only hold one ball. This optimization is that I...
2004 Dec 09
3
urgent outbound dialing problem
If i leave my asterisk server running for a long time then try to dial
outbound on the zaptel channel i get this high pitch static noise and
won't dial out. This behavior is happening over two different servers i
am using. Rebooting asterisk does not sovle the problem.
I rmmod the zaptel driver then reload and that solved the problem. But
i cannot continue to do that.
Also sip to sip
2008 Jun 25
0
[LLVMdev] Using annotation attributes
Hi all,
I've also been developing an interest in using IR annotations for my compiler.
Some discussion with Bart turns out that he has implemented some code to parse
the llvm.globals.annotations array, but in no way integrated or reusable.
We've spent some thought about how this could be done properly, which I will
share here.
Firstly, however, I was wondering about the format of the
2012 Jun 23
0
[LLVMdev] Why can not sparcv9 backend handle i64 produced by FrameIndex?
Hi, all,
I have been recently porting a backend for our experimental DSP.
It has a regular register file for ALU, naming it R registers, and
another register file (J registers) for memory access.
Both R registers and J registers are 32-bit.
Since LLVM cannot distinguish 32-bit integers or pointers during
register allocation, I have to define J as 64-bit, although
it's physically 32-bit. This
2008 Nov 01
2
query FXRuby by ri
Hi Don,
Thanks for the tips.
But it works on an old XP computer but NOT on the new Vista.
I also notice that I can browse the classes from Fxruby when I use fxri or ri on the old computer. I see nothing about FxRuby''s stuff when I use fxri or ri on the new Vista. But I can use gem server to see the Rdoc about FxRuby''s classes on both computers. It looks Ruby doesn''t
2008 Oct 23
0
command - set sip_codec- does not work with asterisk-1.4.21
hello:
i want to test the g729 with asterisk. my scenario is sipp(ulaw)->asterisk1 with g729->asterisk2 with g729.
I want to test g729 module with asterisk-1.4.21, when i make calls from asterisk 1 to asterisk 2, the asterisk 1 always send ulaw to asterisk 2. my sip in asterisk 1 is with codec g729 and enforce that use g729, the sip in asterisk 2 also work with G729 only, but asterisk 2
2002 Dec 17
0
Program loading samba
I cannot load samba. Very vague that question is, so I shall become a
bit more specific.
Below is the last three actions that are in my logs with log level set
to 5. (Setting it to ten doesn't get much further, but a bit.)
[2002/12/18 01:13:02, 3] smbd/server.c:main(747)
loaded services
[2002/12/18 01:13:02, 3] smbd/server.c:main(762)
Becoming a daemon.
[2002/12/18 01:13:02, 5]
2008 Jun 05
5
[LLVMdev] Using annotation attributes
Hi,
I'm trying to annotate certain functions in C code, and do something with
these functions in my LLVM pass. I annotate the C code like this:
int __attribute__((annotate("annot"))) function() {
This nicely gets added to the LLVM bitcode in an
@llvm.global.annotations global. Now I had hoped that it'd be easy to extract
a list of functions annotated with my annotation
2004 Dec 07
1
[LLVMdev] Question adding dummy basic blocks
Hi,
I got a problem when I am trying to add a dummy basic block.
Let say there are two blocks, A and B.
A----->B
I am trying to generate new BB called C which is located between A and B, but not break the edge of AB. The graph is like the following
A---->B
\ /
\ /
C
There is new BB 'C' with edges AC and CB.
It is kind of like what breakcriticaledge pass does.
2010 Jul 02
4
Help: Virtual Network of Domu's
Basically what I am trying to attempt here is to have multiple vm''s in a private network that is seperate from any of the physical networking devices. So far all I have really been able to do is connect the vm''s to an etherstub, but cannot get them to communicate with eachother. I have been using this (http://blogs.sun.com/droux/entry/private_virtual_networks_for_solaris) as a
2008 Sep 13
1
[LLVMdev] Using annotation attributes
Hi all
I have a project where LLVM annotations could be very useful. My
current understanding of LLVM in general is still limited, hence a
nice interface to annotations or sample code that uses annotations
would help me to get started.
I was wondering what happened to the proposal for a better interface
to handling of annotations, which has been discussed in this thread
back in July.
2007 Jun 16
1
Re: [hylafax-users] Having problems running sendfax from a bash script.
I've been working on a way to send faxes from a bash script. It
requires changing what parameters are used for each command. I keep
having problems with quoted strings passed to the command.
I've created a really short test script which fails on my system.
commandline="sendfax -f noreply at prudentrx.com -n -x \"Test fax\" -d
13105551212 /etc/hosts"
echo
2009 Apr 01
0
回复: R-help Digest, Vol 73, Issue 32
...-ID:
<6ade6f6c0903300341p662c91a2tc51085cbf5d61543@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1
On Sun, Mar 29, 2009 at 9:45 PM, <rkevinburton@charter.net> wrote:
> I have an optimization question that I was hoping to get some suggestions on how best to go about sovling it. I would think there is probably a package that addresses this problem.
>
> This is an ordering optimzation problem. Best to describe it with a simple example. Say I have 100 "bins" each with a ball in it numbered from 1 to 100. Each bin can only hold one ball. This optimization...