search for: usei

Displaying 10 results from an estimated 10 matches for "usei".

Did you mean: used
2014 Aug 30
2
[PATCH 1/2] nvc0/ir: avoid infinite recursion when finding first uses of tex
...dFirstUses( + const Instruction *texi, + const Instruction *insn, + std::list<TexUse> &uses, + std::tr1::unordered_set<const Instruction *>& visited) { for (int d = 0; insn->defExists(d); ++d) { Value *v = insn->getDef(d); for (Value::UseIterator u = v->uses.begin(); u != v->uses.end(); ++u) { Instruction *usei = (*u)->getInsn(); + /* XXX HACK ALERT XXX + * + * This shouldn't have to be here, we should always be making forward + * progress by looking at the uses. However thi...
2014 Jul 08
1
[PATCH] nv50/ir: use unordered_set instead of list to keep our instructions in uses
...nclude "codegen/nv50_ir_graph.h" @@ -581,10 +582,10 @@ public: static inline Value *get(Iterator&); - std::list<ValueRef *> uses; + std::tr1::unordered_set<ValueRef *> uses; std::list<ValueDef *> defs; - typedef std::list<ValueRef *>::iterator UseIterator; - typedef std::list<ValueRef *>::const_iterator UseCIterator; + typedef std::tr1::unordered_set<ValueRef *>::iterator UseIterator; + typedef std::tr1::unordered_set<ValueRef *>::const_iterator UseCIterator; typedef std::list<ValueDef *>::iterator DefIterato...
2014 Dec 02
0
[PATCH RESEND] nv50/ir: use unordered_set instead of list to keep track of var defs
...ess is certain @@ -583,11 +584,11 @@ public: static inline Value *get(Iterator&); std::tr1::unordered_set<ValueRef *> uses; - std::list<ValueDef *> defs; + std::tr1::unordered_set<ValueDef *> defs; typedef std::tr1::unordered_set<ValueRef *>::iterator UseIterator; typedef std::tr1::unordered_set<ValueRef *>::const_iterator UseCIterator; - typedef std::list<ValueDef *>::iterator DefIterator; - typedef std::list<ValueDef *>::const_iterator DefCIterator; + typedef std::tr1::unordered_set<ValueDef *>::iterator DefIterato...
2014 Feb 14
0
Regression caused by 2e9ee44797 ("nv50/ir/ra: some register spilling fixes")
...et everything working together all at once :) Below is a backtrace... looks like slot == NULL. Let me know if you need anything else from me. Thanks, -ilia Program received signal SIGSEGV, Segmentation fault. 0x00007ffff2756598 in nv50_ir::SpillCodeInserter::unspill ( this=0x7fffffffd160, usei=0x76a9a0, lval=0xc08f30, slot=0x0) at codegen/nv50_ir_ra.cpp:1514 1514 if (slot->reg.file == FILE_MEMORY_LOCAL) { (gdb) bt #0 0x00007ffff2756598 in nv50_ir::SpillCodeInserter::unspill ( this=0x7fffffffd160, usei=0x76a9a0, lval=0xc08f30, slot=0x0) at codegen/nv50_ir_ra.cpp:1514...
2017 Aug 22
5
[RFC] mir-canon: A new tool for canonicalizing MIR for cleaner diffing.
Patch for review. On Mon, Aug 21, 2017 at 11:45 PM Puyan Lotfi <puyan.lotfi.llvm at gmail.com> wrote: > Ping. > > Still working on preparing code for review. Will have a patch for review > ready in the coming days. > > PL > > On Tue, Aug 15, 2017 at 12:06 PM Puyan Lotfi <puyan.lotfi.llvm at gmail.com> > wrote: > >> Hi, >> >> >>
2016 Aug 11
3
File Server member DC ACL permissions
> Hmm, the numbers seem extremely large, did you set this number in the > users 'uidnumber' attribute in AD ? How do I do this uidNumber configuration? I'm running all services: smbd, nmbd and winbind It's hard to run the file server as a domain member. When was a file server with DC was much more easy.
2011 Mar 14
0
Acessar id através de url
..., :id => @ticket.id %> Mas não consigo fazer com que o @ticket.id me retorne na url o ticket em questão. Por exemplo digamos que o ticket 10 foi alterado e preciso que esse id seja enviado na url para quando o usuário acessar o email clicar no link e cair directamente no link em questão. Já usei o link para cada novo ticket criado e funciona muito bem, colocando o "count". Ele incrementa automaticamente no link do novo ticket criado. Digamos que eu preciso de uma forma para "dizer" à url que quero aceder ao ticket em questão, ou seja, ao ticket existente, mas não consig...
2016 Aug 12
0
File Server member DC ACL permissions
...in the main DC? The sssd service is disabled in the main DC. But in the nsswitch.conf file set: passwd: files sss shadow: files sss group: files sss The client stations, all are Windows 10. The RSAT I have already installed on my PC. No file server, quando compilei o pacote do Samba, eu não usei a opção: "--without-ad-dc" When changing the backend to rid it seems to be working, for the following command does not return error. Through Windows, by giving permission to share, I see the "Domain Admins" group: # setfacl -R -m g:"Domain Admins":rwx /mnt/dados/ #...
2003 Mar 27
0
A WIN95 machine list the shares but 98/win2k not
...-----END PGP PUBLIC KEY BLOCK----- -----Mensagem original----- De: Amir Mostafa Saleh [mailto:amir@ventosolar.com.br] Enviada em: quinta-feira, 27 de mar?o de 2003 09:00 Para: FRANCO Assunto: Testes com o Winbind Caro Franco, Ontem ? noite eu fiz os testes com o Winbind, conforme tinha dito. Usei um servidor Windows 2000 SP2 e um Red Hat 8. Funcionou muito bem. Eu integrei os usu?rios do Active Directory no Linux, e fiz testes de logon no console do Linux e de logon via telnet utilizando os usu?rios e senhas do AD. Que tipo de problema voc? enfrentou exatamente? []'s Amir Mostafa...
2012 Apr 20
4
Secuencias de ficheros
Hola, tengo que leer más de 2000 ficheros en un programa largo de estimación sobre imágenes médicas, con una estructura como ésta: desde "IM-0005-0001.dcm" hasta "IM-0005-2021.dcm" Si hago esto: ui <- NULL for (i in 1:8){ ui[i] <- paste("IM-0005-", i,".dcm", sep="") } ui Obtendría: [1] "IM-0005-1.dcm"