search for: synthesize

Displaying 20 results from an estimated 572 matches for "synthesize".

Did you mean: synthesizes
2013 Jul 30
3
[LLVMdev] Disable memset synthesization
Hi all, LLVM is smart that it can synthesize llvm.memset, llvm.memcpy etc. from loops, which can be lowered into calls to memset, memcpy and so on. Is there an option that can disable this optimization? For some cases, I do not want the code to depend on libc. Thanks in advance! Bin -------------- next part -------------- An HTML attachment...
2016 Aug 25
2
Issue with acl_xattr:ignore system acls in 4.5rc2
...te: > > Yeah, as much as I'd like to avoid adding a new option, I guess we > have to do something about it, my latest take on this is > > acl_xattr:default acl style = [posix|windows] > > This parameter determines the type of ACL that is > synthesized in case a file or directory lacks an > security.NTACL xattr. > > When set to posix, an ACL will be synthesized based on the > POSIX mode permissions for user, group and others, with an > additional ACE for NT Authority\SYSTEM will full ri...
2009 Jul 13
2
[LLVMdev] [PATCH] Support asm comment output
...less obvious than the former > ones. It also seems that this is really a basic block property, not > an instruction property. Yes, we tag basic blocks. That patch is coming later. I added a pass that explicitly examines loop information and adds the appropriate comments. So this could be synthesized on-the-fly, I think. > If these are the planned uses of the comments, it would be nice try to > not add a per-machine-instr list of comments. Instead, the asmprinter > could synthesize the list as it processes each instruction. This > makes the list of comments transient instead of...
2013 Jul 30
0
[LLVMdev] Disable memset synthesization
On 7/30/2013 12:55 PM, Bin Tzeng wrote: > Hi all, > > LLVM is smart that it can synthesize llvm.memset, llvm.memcpy etc. from > loops, which can be lowered into calls to memset, memcpy and so on. Is > there an option that can disable this optimization? For some cases, I do > not want the code to depend on libc. You can use -fno-builtin, if that suits your needs. -K -- Qualco...
2011 Sep 22
0
[LLVMdev] Patch to synthesize x86 hadd instructions; need help with the tablegen bits
The output of the avx-hadd program is 3 11 7 15 Preston -----Original Message----- From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Duncan Sands Sent: Thursday, September 22, 2011 3:14 PM To: Bruno Cardoso Lopes Cc: LLVMdev Subject: Re: [LLVMdev] Patch to synthesize x86 hadd instructions; need help with the tablegen bits Hi Bruno, > Some comments: > > + // Try to synthesize horizontal adds from adds of shuffles. > + if (((Subtarget->hasSSE3()&& (VT == MVT::v4f32 || VT == MVT::v2f64)) || > + (Subtarget->hasAVX()&&...
2011 Sep 21
2
[LLVMdev] Patch to synthesize x86 hadd instructions; need help with the tablegen bits
This patch synthesizes haddps/haddpd/hsubps/hsubpd instructions from floating point additions and subtractions of appropriate vector shuffles. To do this I introduced new x86 FHADD and FHSUB opcodes. These need to be wired up somehow in the .td file to the appropriate instructions. Since I have no idea how tablegen w...
2006 May 26
1
Transmitting synthetic speech using Speex?
...turn the VBR quality down (to say, 2) to save bandwidth. Tom Reed Hedges <reed@mobilerobots.com> wrote: > > > Hello, I'm wondering if anyone has done this before and has any advice, or if > anyone in general has ideas about it. > > I just implemented transmitting synthesized speech (text-to-speech) over Speex > (narrowband) in an application. I'm using Swift from Cepstral > (http://www.cepstral.com). The voice I'm using is a pretty deep male voice. I'm > telling Swift to generate audio at 8khz, then encoding each chunk of audio > output b...
2010 Dec 25
0
For sale Yamaha DGX-640 Grand Piano Keyboard for $450USD
...D Roland Fantom-XR Sound Module.............................$700USD Roland VK-8M Organ Sound Module.........................$350USD Roland SP-555 Creative Sampler Workstation.............$200USD Roland SonicCell 128-Voice Expandable Synth Module with Audio Interface........$300USD Roland V-Synth XT Synthesizer....................$1100USD Yamaha MOTIF ES Rack Module.........$500USD Yamaha VL70-M Virtual Acoustic Tone Generator.............$200USD Technics SL-1210MK5 Pro Turntable.................$250USD Technics SL-1210MK2 Turntable......................$150USD Technics SL-1210M5G Pro Turntable.............
2009 Jul 13
3
[LLVMdev] [PATCH] Support asm comment output
...ad and do it. > Before we settle on whether this is the right thing to do or not, can > you talk about what comments you plan to add to these instructions? > Comments indicating what a memoperand are (for example) don't need to > be explicitly store in the machineinstr, they can be synthesized from > the MachineOperand directly. Some things we've used comments for: - Tag instructons with source line information (customers really want this). - Tag instructions as register spills or reloads. - Tag instructions as top-of-loop, with nesting information (we use this to do some s...
2011 Sep 21
0
[LLVMdev] Patch to synthesize x86 hadd instructions; need help with the tablegen bits
Hi Duncan, On Wed, Sep 21, 2011 at 1:24 PM, Duncan Sands <baldrick at free.fr> wrote: > This patch synthesizes haddps/haddpd/hsubps/hsubpd instructions from > floating > point additions and subtractions of appropriate vector shuffles.  To do this > I > introduced new x86 FHADD and FHSUB opcodes.  These need to be wired up > somehow > in the .td file to the appropriate instructions.  Since...
2009 Jul 13
0
[LLVMdev] [PATCH] Support asm comment output
...gt;> Before we settle on whether this is the right thing to do or not, can >> you talk about what comments you plan to add to these instructions? >> Comments indicating what a memoperand are (for example) don't need to >> be explicitly store in the machineinstr, they can be synthesized from >> the MachineOperand directly. > > Some things we've used comments for: > > - Tag instructons with source line information (customers really > want this). Right, that would be nice. This should be synthesizable from the DebugLoc on the instruction in the asm pr...
2023 May 16
1
Synthesize low batt (LB) fron SNMP UPS which does not support this?
...arning. Looking at clients/upsmon.c I think, without the flag ST_LOWBATT set for ups->status, MINSUPPLY will never truly be considered a usable threshold and thus I'm left with a machine which would not shutdown. Thus, what would e the best way forward here? * Try to patch the server to synthesize LB there? If so, any suggestion how to do this? * Try to patch upsmon.c's is_ups_critical method to also include extra criteria, e.g. remaining run time/battery charge? * Keep nut unpatched but use our own NOTIFYCMD or CMDSCRIPT to pull the values from the server and implement our logic th...
2023 May 22
1
Synthesize low batt (LB) fron SNMP UPS which does not support this?
Hi all, On 5/19/23 15:11, Greg Troxel wrote: > LB is baked in to nut behavior. So if a UPS doesn't report LB, then > it makes sense to synthesize it. Synthetic LB is the cleanest fix at > the earlier processing point. I fully agree and thus this ought to be done in/near uspd IMHO. I glanced over the server/ directory and was not sure where even to begin hooking this in. Should this be directly in upsd (upsd.c) or rather in/near th...
2011 Sep 22
3
[LLVMdev] Patch to synthesize x86 hadd instructions; need help with the tablegen bits
Hi Bruno, > Some comments: > > + // Try to synthesize horizontal adds from adds of shuffles. > + if (((Subtarget->hasSSE3()&& (VT == MVT::v4f32 || VT == MVT::v2f64)) || > + (Subtarget->hasAVX()&& (VT == MVT::v8f32 || VT == MVT::v4f64)))&& > + isHorizontalBinOp(LHS, RHS, true)) > > 1) You proba...
2023 May 19
3
Synthesize low batt (LB) fron SNMP UPS which does not support this?
My $0.02: LB is baked in to nut behavior. So if a UPS doesn't report LB, then it makes sense to synthesize it. Synthetic LB is the cleanest fix at the earlier processing point. One could have a config that is basically synthetic-lowbatt-percent that generates LB if (as Jim says) on battery, not calibrating, and batt% <= that. One could have a similar config synthetic-lowbatt-volt...
2010 Feb 02
1
Fwd: Re: Fixed Point on wideband-mode: Single Frame loss on 2000 Hz sine causes "freak off"
...eschrieben: > Can you look at the residual signal? i.e. what it looks like after the pitch is > removed. Any significant difference there? Also, the pitch gain can be > informative. > I catched the "orignal" residual (st->exc from line 400 inside nb_celp.c) plus the "synthesized" one (exc on line 880 inside nb_celp.c) both for fixed and floating point. There is a significant difference in the residual signal -- the fixed point signal shows some kind of "glitches" (see attachments) while the floating point version looks more or less smooth. But it is intere...
2010 Feb 02
1
Fwd: Re: Fixed Point on wideband-mode: Single Frame loss on 2000 Hz sine causes "freak off"
...eschrieben: > Can you look at the residual signal? i.e. what it looks like after the pitch is > removed. Any significant difference there? Also, the pitch gain can be > informative. > I catched the "orignal" residual (st->exc from line 400 inside nb_celp.c) plus the "synthesized" one (exc on line 880 inside nb_celp.c) both for fixed and floating point. There is a significant difference in the residual signal -- the fixed point signal shows some kind of "glitches" (see attachments) while the floating point version looks more or less smooth. But it is intere...
2006 Oct 31
1
2 questions, frame size and SPEEX_GET_LOOKAHEAD
Hi, Andras, Thanks for the comments. Yes, I am aware of those issues. I probably should have been more accurate on my usage of terms. Actually in my project, the unit collection is a mixture of diphones and words. However seems to me, these synthesizer specific issue is irrelevant to my question about speex. As you said, i merely use speex as storage methods. All I ask for is to get the samples as close to original recording as possible after encoding and decoding. Blending, cross fading, pitch adjustment, these signal processing issues...
2011 Mar 03
2
[LLVMdev] MachineOperand type
Hi all, I have a question about the types of MachineOperand. There are 12 different types of MachineOperand such as MO_Register, MO_Immediate and so on. Some of the names are self-explanatory such as MO_Register and MO_Immediate. Some of them are a little confusing such as MO_FrameIndex, MO_ConstantPoolIndex and so on. For example, what is the different between MO_ExternalSymbol and
2007 Dec 05
2
Text-To-Speech synthesizer--help required
Hello users, Actually i wanted to implement Text-To-Speech engine from cepstral voice using swift application i tried the documentation of doing this and i was unsuccessful at doing this work with asterisk can anybody please help me out finding the solution to installation thanks in advacnce srinivas Antarvedi -------------- next part -------------- An HTML attachment was scrubbed... URL: