search for: ppu

Displaying 16 results from an estimated 16 matches for "ppu".

Did you mean: cpu
2007 Aug 13
3
[LLVMdev] delete/creates modules
...globals in a different than the given way? No way to partition the structure new? I would really like to know how code is generated for heterogeneous architectures like Cell? I thought they use a kind of (module?) partition to difference between the parts that should be mapped on SPU and PPU ... :-( Time to think about again ;-) Nico
2009 Nov 18
1
[LLVMdev] Triple for PS3
...mediate step in that direction, could someone do me the favor of reviewing and submitting the enclosed patch, or giving me feedback on it? Basically, I need to be able to differentiate the triple for a PS3 target. These are the triples currently used in the gcc-based compiler from the PS3 devkit: ppu-unknown-lv2 spu-unknown-lv2 "ppu" is an alias for the existing ppc64 architecture (though in the future there might need to be some specialization), "spu" is already an alias for cellspu, and "lv2" is the alias for a new Lv2 type, refering to the name used for the PS3...
2009 May 09
0
[LLVMdev] llvm JIT to another target code?
Hi, I am using llvm on cell, there are two different cores on cell, one is PPU and the other is SPU. but the JIT'ed code is always for PPU. I am trying to emit code for SPU through JIT. but I face the following questions: 1. I've trace the JIT code, but I still cant find exactly where JIT allocate PPU as it's target. is it done at make time? 2. I am trying t...
2010 Nov 11
2
SAMBA accessible with hostname only on local subnet
hi all, i have integrated SAMBA with active directory and everthing is working . however SAMBA server is accessible with hostname only on local subnet. it is not opening in other subnets and opening with ipaddress. it keeps on asking for password and saying access denied while using net view \\testsamba corp.raju.ad. command any one faced the same problem ?? please help me out. Regards
2010 Feb 28
1
Altivec optimized vorbis decoder
...http://lists.xiph.org/pipermail/vorbis-dev/2003-October/007835.html but the link is dead, so the source code is lost (forever ?). I need to decode from 10 to 30 ogg files on my PS3 on the fly (files are already in memory, so I'm not I/O bound) and do something with output ... but on CELL the PPU is weak, and this decoding alone takes 30 - 40 % of it's time that I need for other tasks. Moving vorbis to SPU's (spurs or raw) is not a trivial task as the context size is large (to large for SPU in it's unmodified form as they have only 256kb of local storage for code AND data)....
2010 Sep 15
1
SAMBA share permissions all other known users
hi all, i have integrated SAMBA with active directory and everthing is working . however in share defination i want to give write permissions to few users and read access to few users. i have mentioned write list and read list in samba config file as follows. this is working but all other known users (domain users) are getting read access . is there any way to restirct the same :( . this
2007 Dec 09
1
Create a live stream and problem in the webplayer
Hi guys , I have a big trouble using theora and vorbis for create real time streaming , or better to say the real time encoding. I try to explain better to you my problem. I have some video files on my hd ,i can choose for this files between avi , or other know format. My problem it's that i use a scheduling system , that play the original files at particular time . Now i must to taje
2007 Aug 13
2
[LLVMdev] delete/creates modules
Hi, is it possible to implement a pass which creates new modules or deletes old ones (which kind of pass could do this)? Perhaps there is already a pass which implements that - but I didn't found it. Ciao, Nico BTW: will there be one day the Cell BE slides on the dev-meeting webpages?
2007 Aug 13
0
[LLVMdev] delete/creates modules
On Mon, 13 Aug 2007, nico wrote: > is it possible to implement a pass which creates new modules or > deletes old ones (which kind of pass could do this)? > Perhaps there is already a pass which implements that - but I didn't > found it. Nope, passes work within a module, they can't create/delete them. > BTW: will there be one day the Cell BE slides on the dev-meeting >
2011 Mar 16
0
[LLVMdev] [release_29] Good status of ppc-redhat-linux on Fedora 12 PS3
On Mar 15, 2011, at 7:25 PM, NAKAMURA Takumi wrote: > Good morning. > Hi Nakamura, > LLVM and clang can be built successfully on Fedora 12 PS3. > Hooray! :-) > On RC1, only one test failed. > test/CodeGen/X86/fold-pcmpeqd-0.ll > Eric commented that this should be fixed on the release branch right now. > On release_29 branch, all llvm tests can pass. Woo! :-) >
2010 Jun 28
1
samba winbind is not showing full list
...ull list. only few domain groups it is showing . do u have any idea about this ??? .please help On Fri, Jun 25, 2010 at 6:44 PM, <tms3 at tms3.com> wrote: > > > > --- Original message --- > *Subject:* Re: [Samba] samba winbind problem with trusted domains > *From:* ****@ppu <appaji04cn002 at gmail.com> > *To:* <tms3 at tms3.com> > *Date:* Friday, 25/06/2010 4:09 AM > > hi > > yes netbios is active on windows machines and i m able to ping samba server > with .domain.extension. it is asking for user authentiation but it is not > takin...
2011 Mar 16
3
[LLVMdev] [release_29] Good status of ppc-redhat-linux on Fedora 12 PS3
Good morning. LLVM and clang can be built successfully on Fedora 12 PS3. On RC1, only one test failed. test/CodeGen/X86/fold-pcmpeqd-0.ll On release_29 branch, all llvm tests can pass. (I don't mention clang tests :p ) ...Takumi Fedora release 12 (Constantine) Linux speedking.localdomain 2.6.32.23-170.fc12.ppc64 #1 SMP Mon Sep 27 17:09:35 UTC 2010 ppc64 ppc64 ppc64 GNU/Linux llvm
2010 Jun 23
3
samba winbind problem with trusted domains
hi all i am new to samba and struggling with trusted domains authentication from many days .i have a win2k3 domain(corp.raju.ad )and win2k8 domain ( testraju.ad) . i have joined samba server as a member to win2k8 domain (testraju.ad) using net ads join commands / i m able to access samba shares using testraju.ad user ID's successfully , while authenticating with corp.raju.ad users i m
2008 Sep 30
0
[LLVMdev] Integer handling
...cale to any number of CPU's, so it is 'future-proof' with how CPU's are advancing. Even if CPU's have different capabilities (and LLVM supports compiling to those other sets) then you can have specialized Actors running on them (like the Cell processor with its little secondary PPU's with non-shared memory, but using a Message Passing central bus, the Actor model represents these style CPU's perfectly, unlike C++). Er, I think I made this too long. Either way, nothing is really dynamic in this setup, everything is pretty well set-in-stone at compile time. I am most...
2008 Sep 30
2
[LLVMdev] Integer handling
OvermindDL1 wrote: > > It is using the Actor-Oriented model, not Object-Oriented. > /* snip */ > By keeping the type system based on the actual types it allows > arbitrary message passing to any other actor without needing to load > any code relating to the actors, you can just send a structure with > the appropriate ID and format and it will 'just work' as the
2010 Jul 07
1
The specified server can't perform the requested operation. Problem Accessing samba from windows 7 and vista
Hi all, i have installed samba in RHEL 5 with likewise backend authentication . everything is working but am unable to access samba shares from windows 7 and vista machines . It is simply giving error as "the specified server cannot perform the requested operation" I have spent many days working on this but no luck . please help me :( following is the log . when i try to access samba