search for: adc

Displaying 20 results from an estimated 606 matches for "adc".

Did you mean: ac
2004 Dec 06
0
Advanced server config question
...n my config, I'll appreciate any constructive criticism... Thanks! # Global parameters [global] workgroup = US realm = US.RAY.COM server string = Samba 3.08pre2 Server interfaces = eth0 security = ADS auth methods = winbind password server = eadc-gc101.us.ray.com log level = 1 log file = /var/log/samba/log.%m max log size = 50 name resolve order = wins bcast host lmhosts server signing = auto #socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192 os level = 5 preferred master = No...
2012 Jun 07
3
[LLVMdev] How to use LLVM optimizations with clang
Thanks alot Chad for quick response. Does this means that, we can not use LLVM optimizations except O1, O2, O3, O4 and unroll-loops with clang? One more thing I would like to know that If I want to process multiple modules with opt at the same time like opt -adce *.bc then how is it possible with opt in one go, if I process all the bytecode files within Makefile. Thanks. Shahzad On Thu, Jun 7, 2012 at 9:22 PM, Chad Rosier <mcrosier at apple.com> wrote: > > On Jun 7, 2012, at 10:59 AM, Abdul Wahid Memon wrote: > >> Hello everyone &g...
2014 Mar 20
2
Running an NT4 PDC and an ADC side by side
Dear List, I'm planning to migrate an existing Samba 3.4.7 NT4-domain (our.site.com) to a Samba 4.1.6 AD-domain (ad.our.site.com) on another machine. Our site currently has about 30 clients and 50 user accounts. My plan is to setup the ADC on the other machine and to migrate the user accounts using the Samba4 classicupgrade tool. I would then newly setup groups, permissions, etc. on the new ADC. After an extensive test phase I would then join one client machine after the other to the new AD-domain. My main question before I start is:...
2012 Jun 07
2
[LLVMdev] How to use LLVM optimizations with clang
Hello everyone I am trying to use some LLVM optimizations like -die or -adce. Is it possible to use them along clang? Or is there a way where these optimization can be passed on to "opt" tool through clang, if opt is being used by clang behind the scenes? Thanks alot Regards Shahzad
2013 Nov 26
1
matching id's for ADC and member server
Hai, ? Im bit lost. ? I've installed a member server with winbind.? ( samba 4.1.2 (sernet) ) the server joined the domain without any problems. ? when i type getent passwd on the ADC server, im getting:? ( and is ok ) ? ROTTERDAM\Administrator:*:0:100::/home/users/%U:/bin/bash ROTTERDAM\Guest:*:3000002:3000003::/home/users/%U:/bin/bash ROTTERDAM\krbtgt:*:3000020:100::/home/users/%U:/bin/bash ROTTERDAM\Admin:*:3000021:100:Admin:/home/users/%U:/bin/bash ? on the member server, al...
2012 Jun 07
0
[LLVMdev] How to use LLVM optimizations with clang
On Jun 7, 2012, at 10:59 AM, Abdul Wahid Memon wrote: > Hello everyone > > I am trying to use some LLVM optimizations like -die or -adce. Is it > possible to use them along clang? > > Or is there a way where these optimization can be passed on to "opt" > tool through clang, if opt is being used by clang behind the scenes? > No, opt only works on llvm IR/bitcode. You can generate it like this: clang -c f...
2015 Nov 10
2
Generating Big Num addition code which uses ADC (add with carry) instructions
I'm trying to work out LLVM code which generates something similar to the following when adding large multiword numbers stored as separate words: ADD x1 x1 ADC x2 y2 ADC x3 y3 etc, where such a three argument add like ADC on x86 (which includes a carry in the addition) is available as a machine op. The background to this is that I'm trying to implement fast multiword addition in Haskell, which can compile via LLVM, so I thought if I knew what LLVM c...
2010 Jun 10
1
Sound card problem in acoustic echo cancellation
From: Steve Underwood <steveu at coppice.org> > It seems some cards use a PLL for their ADC, so they can lock to an > incoming SPDIF signal, but always use a local crystal clock source for > their DAC. These cards do not have their ADC and DAC synchronised. Do common on-board or PCI sound card lock to some incoming signal? Yes, there is a crystal oscillator and a PLL or divider to g...
2014 Jul 18
1
Install Exchange 2013 with Samba ADC
Hello. I'm trying to install Exchange 2013 (SP1 CU5) on a domain with only a Samba ADC (because I've had many problems trying to get OpenChange to work with Outlook 2013.) I've already hacked the attributes of the ADC's LDAP entry so Exchange is happy with the OS version (see my previous post,) but I want to find out if there are any known problems with letting Exchan...
2007 Jul 24
2
Speex optimization and 12 bits conversion for 12 bits ADC
Hi, all, I am porting speex on ARM7TDMI, I have done some optimization, the result is that the encoder and decoder need about 60 MCPS for 5.96kbps bitrate and complexity 0. Can someone give me informtion about Speex optimization on ARM7? Another question, my ADC and DAC are 12 bits, but Speex codec is 16bits, Did someone try to modify speex to 12 bits? I think if I modify speex to 12 bits, the computation power will be reduced, is it right? and If it's feasible, How can I do? My application is wireless, for 12bits ADC, which bitrate is siutable for wir...
2012 Jun 08
2
[LLVMdev] How to use LLVM optimizations with clang
Hi Shahzad, > I tried your method and it works fine. What would be the next step to > produce the final executable? I have tried the following but it is > producing an error > > $ gcc -fplugin=/path/to/dragonegg.so -S *.c > -fplugin-arg-dragonegg-emit-ir | opt -adce this won't work because you aren't passing the IR to opt (you need -o - for that if using a pipe) and you aren't doing anything with opt output. What's more, you are trying to compile multiple files at once. Probably something like this would work: for F in *.c ; do B=`basen...
2010 Jul 20
1
Sound card problem in acoustic echo
...ltion effect in the same computers? What should we do to use AEC in most computers? (Don't tell me to change a sound card.) >> >> From: Steve Underwood <steveu at coppice.org <mailto:steveu at coppice.org>> >> >> > It seems some cards use a PLL for their ADC, so they can lock to an >> > incoming SPDIF signal, but always use a local crystal clock source for >> > their DAC. These cards do not have their ADC and DAC synchronised. >> >> Do common on-board or PCI sound card lock to some incoming signal? >> >I already s...
2010 Nov 24
0
[LLVMdev] how to eliminate dead infinite loops?
...es. > Is there a way to flag a loop as non-infinite? Or will I need to create > my own modified loop deletion pass that can eliminate potentially > infinite loops. Is it correct just to remove the above code to allow > deletion of infinite loops? I think what you actually want is the ADCE pass (opt -adce). The reason we turned ADCE off by default is that it kept deleting infinite loops, and the LoopDeletion pass was written as a safe replacement. Nick
2015 Sep 14
7
RFC: speedups with instruction side-data (ADCE, perhaps others?)
I’ve been playing around with optimizing performance various passes and noticed something about ADCE: it keeps an Alive set that requires a lot of upkeep time-wise, but if each instruction had a /single bit/ of side data (to represent liveness, solely within the pass), the set wouldn’t be needed. I tested this out and observed a ~1/3 reduction in time in ADCE: 1454ms to 982ms according to a profi...
2012 Jun 08
2
[LLVMdev] How to use LLVM optimizations with clang
...gt;>>>> >>>>>>>> >>>>>>>> One more thing I would like to know that If I want to process multiple >>>>>>>> modules with opt at the same time like >>>>>>>> >>>>>>>> opt -adce *.bc >>>>>>> >>>>>>> I don't think this will work. >>>>>>> >>>>>> ok. >>>>>>>> >>>>>>>> then how is it possible with opt in one go, if I process all the >>>...
2007 Jul 25
2
Speex optimization and 12 bits conversion for 12 bits ADC
...em16(),iir_mem16() and fir_mem16()) in C code, but the effect is very small, and I am going to do assembly optimization for these functions. Do you have another C code about these functions for assembly optimisations? Can you give me some information and suggestions? > > Another question, my ADC and DAC are 12 bits, but Speex codec is > > 16bits, Did someone try to modify speex to 12 bits? I think if I > > modify speex to 12 bits, the computation power will be reduced, is it > > right? > > Wrong. Speex would still need 16 bits internally. I also recommend you > o...
2003 Nov 29
1
W2k ADC + Samba Member + winbind + win 98 clients problem
Hi there. I have a windows 2000 Server in ADC mode. I have a samba 3 box as a domain member to the ADC where security=ADS I auth fine to this box from Windows 2000/XP clients. I see shares on the domain member with no issues. winbind works fine, in that it auth's ok etc etc Windows 98 clients are configured to log into the Bionomics do...
2012 Jun 08
0
[LLVMdev] How to use LLVM optimizations with clang
Hello Duncan I tried your method and it works fine. What would be the next step to produce the final executable? I have tried the following but it is producing an error $ gcc -fplugin=/path/to/dragonegg.so -S *.c -fplugin-arg-dragonegg-emit-ir | opt -adce $ clang *.s Regards Shahzad On Fri, Jun 8, 2012 at 9:10 AM, Duncan Sands <baldrick at free.fr> wrote: > Hi Shahzad, > > >> Is it possible that we can use LLVM optimization beside O1, O2, O3 >> along with dragonegg plugin? > > > sure, try this: > >  gcc...
2012 Jun 08
2
[LLVMdev] How to use LLVM optimizations with clang
...- but its producing an error > > gcc: fatal error: cannot specify -o with -c, -S or -E with multiple files > > What you suggest? what I wrote: >> for F in *.c ; do B=`basename $F .c` ; gcc -fplugin=/path/to/dragonegg.so >> -S -o - $F -fplugin-arg-dragonegg-emit-ir | opt -adce -o $B.ll ; done >> clang *.ll Thanks to the for loop and passing $F to gcc, you are no longer using gcc with multiple files. So if you are getting that message then you are don't what I suggested. Ciao, Duncan. >> >> Ciao, Duncan. >> >> >>> >>...
2012 Jun 08
0
[LLVMdev] How to use LLVM optimizations with clang
...t; > >> I tried your method and it works fine. What would be the next step to >> produce the final executable? I have tried the following but it is >> producing an error >> >> $ gcc -fplugin=/path/to/dragonegg.so -S *.c >> -fplugin-arg-dragonegg-emit-ir | opt -adce > > > this won't work because you aren't passing the IR to opt (you need -o - for > that if using a pipe) and you aren't doing anything with opt output.  What's > more, you are trying to compile multiple files at once.  Probably something > like this would work: I...