search for: synthesise

Displaying 20 results from an estimated 42 matches for "synthesise".

Did you mean: synthesis
2008 May 30
3
loess plot
I was trying to plot some data in R. I used the following code to draw a loess fit and got the output as >?lines(lowess(log(abs(t(res))), log(abs(t(synthesised)))), col="red") Error in lowess(log(abs(t(res))), log(abs(t(synthesised)))) :?? NA/NaN/Inf in foreign function call (arg 1) Then I thought to use your Limma package for background correction. Do you think it's a right choice ? However, I installed Limma using > source("http...
2017 Jun 06
4
LLD support for ld64 mach-o linker synthesised symbols
Hi Folks, I have a question regarding LLD support for ld64 mach-o linker synthesised symbols. I did a quick search of the LLD source and I can not find support for them so before I start trying to use lld I thought I would ask. I have found a couple of cases where they are essential. i.e. where there is no other way to get the required information, such as getting the address of...
2017 Jun 06
2
LLD support for ld64 mach-o linker synthesised symbols
...rom the community came up with a patch to support aliases that it would be merged. In that case I might check out the LLD code and try linking “x86_64-xnu-musl” with it. My requirements are likely simpler than Apple’s however I do need symbol aliases and these are not supported by ld64. The linker synthesised symbols are likely not too difficult to add if they are not present… now on my to do list… Michael. > On 7 Jun 2017, at 11:30 AM, Rui Ueyama <ruiu at google.com> wrote: > > Hi Michael, > > The Mach-O version of LLD is not being developed actively, and if some feature is mi...
2017 Jun 07
3
LLD support for ld64 mach-o linker synthesised symbols
...p with a patch to support aliases that it would be merged. > > In that case I might check out the LLD code and try linking > “x86_64-xnu-musl” with it. My requirements are likely simpler than Apple’s > however I do need symbol aliases and these are not supported by ld64. The > linker synthesised symbols are likely not too difficult to add if they are > not present… now on my to do list… > > Michael. > > On 7 Jun 2017, at 11:30 AM, Rui Ueyama <ruiu at google.com> wrote: > > Hi Michael, > > The Mach-O version of LLD is not being developed actively, and if so...
2009 Sep 21
2
How to handle missing values for the GeneMeta package?
Hello all, It seems that the GeneMeta passage returns NA in the respective row if any gene in the data sets to be synthesised are missing. Do you know of a way to overcome this problem? I tried using the 'impute' package to fill-in the missing values, but R crashes if 'impute' and 'GeneMeta' packages are used together. I have asked a separate question for that. Thanks Vassilis
2019 Apr 30
3
[RFC][clang/llvm] Allow efficient implementation of libc's memory functions in C/C++
Thx for the feedback David. So we're heading toward a broader > __attribute__((disable_call_synthesis)) David what do you think about the additional version that restrict the effect to a few named functions? > e.g. __attribute__((disable_call_synthesis("memset", "memcpy", "sqrt"))) A warning should be issued if the arguments are not part of
2007 Nov 24
3
Asterisk+HylaFAX+SpanDSP+IAXmodem tutorial.
I made a little write-up that attempts to synthesise a lot of the information out there about how to get HylaFAX working with Asterisk by way of IAXmodem for inbound faxing: http://blog.evaristesys.com/?p=24 Of course, there are bound to be some things I've left out or are grossly in need of correction. So, before I link it off the voip-w...
2014 Nov 10
2
[LLVMdev] About inlining the modulo function in ARM architecture
Hi all, Sorry for bothering those not interested. I found that ARM backend will insert a modulo function (like __modsi3) instead of the modulo instruction. I wonder how we can inline the modulo function into the program. Is there any OPTION we can use in the opt or llc? Thanks, Ray -------------- next part -------------- An HTML attachment was scrubbed... URL:
2004 Mar 25
1
Packet usage
Hi again. One question: If I have an audio packet with size of (example) 35 all the bits in this packet MUSTbe read when synthesising it? Or It is normal to use only a few bits (>50%) and then get another packet?? Thanks a lot Adriano --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to
2013 Oct 25
0
[LLVMdev] Is there pass to break down <4 x float> to scalars
...hat you had in mind? To be honest I hadn't really thought about targets with vector units at all. :-) I was just assuming that we'd want to keep vector operations together if there's native support. E.g. ISTR comments about not wanting to rewrite vec_selects because it can be hard to synthesise optimal sequences from a single canonical form. But I might have got that wrong. Also, llvmpipe uses intrinsics for some things, so it might be strange if we decompose IR operations but leave the intriniscs alone. I'd half wondered whether, as an extension, the pass should split wide vectors...
2013 May 15
6
xenfs: race condition on xenstore watch
...uot;OK" first. Here''s what is happening: The userspace process xenstore-watch writes to /proc/xen/xenbus with msg_type==XS_WATCH. This is handled by xenbus_write_watch which calls register_xenbus_watch with watch_fired as a callback *before* acquiring the reply_mutex and sending the synthesised "OK" reply. This gives a fast xenstore the opportunity to cause the watch_fired to run (and briefly grab the reply_mutex for itself) before the fake "OK" message is sent. Below, I''ve included a putative patch for pre-3.3 xenfs that fixes this problem. (It looks like...
2013 Oct 25
3
[LLVMdev] Is there pass to break down <4 x float> to scalars
On 25 October 2013 11:06, Richard Sandiford <rsandifo at linux.vnet.ibm.com>wrote: > I wanted the same thing for SystemZ, which doesn't have vectors, > in order to improve the llvmpipe code. > Hi Richard, This is a nice patch. I was wondering how hard it'd be to do that, and it seems that you're catching lots of corner cases. My interest is also due to converting odd
2018 Jan 31
1
Problems with "predict" function
Hello, I am synthesising some sales data over a twelve month period, and then trying to use the "predict" function, firstly to generate a thirteenth month forecast with upper and lower 95% confidence limits. So far so good But what I then want to do is add the upper sales value at the 95th confidence limit to the vector of thirteen months and their respective sales to create a
2013 Oct 25
2
[LLVMdev] Is there pass to break down <4 x float> to scalars
...: > To be honest I hadn't really thought about targets with vector units > at all.:-) I was just assuming that we'd want to keep vector operations > together if there's native support. E.g. ISTR comments about not wanting > to rewrite vec_selects because it can be hard to synthesise optimal > sequences from a single canonical form. But I might have got that wrong. > Also, llvmpipe uses intrinsics for some things, so it might be strange > if we decompose IR operations but leave the intriniscs alone. The issue of intrinsics and vectorization was discussed some time ag...
2013 Feb 12
6
Run Puppet Against Master with Local node.pp Manifest?
...Master, but using a locally created node.pp manifest? I''m looking into doing some unit tests on applications that are installed by Puppet. To do this, I''m trying to use a test VM server which I''ll deploy applications onto. I figure that the easiest way is probably to synthesise a node.pp manifest file and tell Puppet to use it. The problem is, when I try to do this, Puppet seems to want to work entirely locally and forgets that it''s got a Master. To elaborate on how I think this would work.. 1) On the client machine, I generate a node.pp style manifest file,...
2016 Nov 16
3
Clients can't write to group-writable files - plea for help
...is that samba things that the file GID is > 0 and that group write is not allowed. This is not at all what the > file permissions are though. Am I mis-reading this or is Samba > getting permissions some other way. This is a purely Unix filesystem > - there should be no NTFS ACLs. smbd synthesises NT ACLs from the POSIX perms in order to do the access checks. Then it checks the open request using the current process token against the NT ACL to decide whether to allow access. > Also, the line: > > [2016/11/14 12:49:21.964411, 5, pid=28398, effective(2310, 2049), > real(2310, 0...
2006 Dec 05
2
intro + specification remarks + some questions
...packet and decode as setup: - decode codebooks - decode floors - decode residues - decode mappings - decode modes - read (packets) as audio packet: - header - 'packet decode' floor curves - 'packet decode' residues - synthesise I.e. a bit more highlevel structure to the docs would be cool and provide a lot of clarity. The lowlevel pseudocode is great and highly readable, but I did notice that somewhere halfway (after decoding the headers) the style changed quite a bit leading me to suspect two authors at work. * The...
2014 Nov 10
3
[LLVMdev] About inlining the modulo function in ARM architecture
...er how we can > > inline the modulo function > > into the program. Is there any OPTION we can use in the opt or llc? > > It depends on whether the CPU actually supports integer division. > Surprisingly modern CPUs don't (the Cortex-A9 for example), and LLVM > doesn't synthesise an entire divide loop. > I know this may degrade the performance. I wonder whether there is any easy way to inline these functions into the callsite? Thanks again! > > Oddly, it also seems to call the library at -O0, because that's what > the FastISel decides to do. That strik...
2016 Nov 16
0
Clients can't write to group-writable files - plea for help
...SMB_ACL_OTHER >> ace_flags = 0x0 perms r-x > > Looks like a perm set of rwxr-xr-x on the file to me, with > owner and group of root. But the file is not root:root - it's owned by uid 12477 and group 9006. Why is Samba getting the wrong owner/group for this file? > > smbd synthesises NT ACLs from the POSIX perms in order to do > the access checks. Then it checks the open request using the > current process token against the NT ACL to decide whether to > allow access. > >> Also, the line: >> >> [2016/11/14 12:49:21.964411, 5, pid=28398, effective(...
2007 Mar 19
0
SAPI (Speech Synthesis API)
...are usually SAPI 5 speech engines, but I can't find any mention anywhere of running SAPI 5 under Wine. Thanks. Silas (PS - yes I do know about MBROLA, but it lacks a TTS front-end for Asian voices and it has no support for Chinese at all. There are also occasionally some Windows speech synthesisers which are not SAPI-based and which will run under Wine, e.g. Bider's Speech Plus for Chinese, but that too has its limitations. Things would be better if the hundreds of SAPI-based voices out there could be used.)