Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 71 for si4ref (0.31 sec)

  1. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.cc

      }
    
      for (int i = 0; i < op_info.graph_op_def.input_arg_size(); ++i) {
        const auto& arg(op_info.graph_op_def.input_arg(i));
        // TODO(unda, b/249298521): deal with inputs that are required to be refs
        if (arg.is_ref()) {
          std::cout << "NOT fuzzing: " << op_info.graph_op_def.name()
                    << " requires a ref argument.\n";
          return false;
        }
      }
    
      std::set<string> unhandled_attr_types = {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 16:26:51 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/ar.go

    // strategy falls down in certain cases. We instead now do this
    // forwarding later on as a post-processing step, and meaning that
    // during the middle part of host object loading we can see a lot of
    // unresolved (SXREF) import symbols. We do not, however, want to
    // trigger the inclusion of an object from a host archive if the
    // reference is going to be eventually forwarded to the corresponding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 23:11:11 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/symtab.go

    		return true
    	}
    
    	// Data symbols.
    	for s := loader.Sym(1); s < loader.Sym(ldr.NSym()); s++ {
    		if !ldr.AttrReachable(s) {
    			continue
    		}
    		st := ldr.SymType(s)
    		if st >= sym.SELFRXSECT && st < sym.SXREF {
    			typ := elf.STT_OBJECT
    			if st == sym.STLSBSS {
    				if ctxt.IsInternal() {
    					continue
    				}
    				typ = elf.STT_TLS
    			}
    			if !shouldBeInSymbolTable(s) {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/ir/tfr_ops.cc

    void CallOp::setCalleeFromCallable(CallInterfaceCallable callee) {
      // Direct call.
      if (FlatSymbolRefAttr calleeAttr = getCalleeAttr()) {
        auto symRef = callee.get<SymbolRefAttr>();
        return setCalleeAttr(cast<FlatSymbolRefAttr>(symRef));
      }
      // Indirect call, callee Value is the first operand.
      return setOperand(0, callee.get<Value>());
    }
    
    LogicalResult ConstantTensorOp::verify() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 16:55:41 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/arm64/asm.go

    		if targType == sym.SDYNIMPORT {
    			ldr.Errorf(s, "unexpected R_AARCH64_PREL32 relocation for dynamic symbol %s", ldr.SymName(targ))
    		}
    		if targType == 0 || targType == sym.SXREF {
    			ldr.Errorf(s, "unknown symbol %s in pcrel", ldr.SymName(targ))
    		}
    		su := ldr.MakeSymbolUpdater(s)
    		su.SetRelocType(rIdx, objabi.R_PCREL)
    		su.SetRelocAdd(rIdx, r.Add()+4)
    		return true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  6. src/cmd/link/internal/amd64/asm.go

    		if targType == sym.SDYNIMPORT {
    			ldr.Errorf(s, "unexpected R_X86_64_PC32 relocation for dynamic symbol %s", ldr.SymName(targ))
    		}
    		if targType == 0 || targType == sym.SXREF {
    			ldr.Errorf(s, "unknown symbol %s in pcrel", ldr.SymName(targ))
    		}
    		su := ldr.MakeSymbolUpdater(s)
    		su.SetRelocType(rIdx, objabi.R_PCREL)
    		su.SetRelocAdd(rIdx, r.Add()+4)
    		return true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loadpe/ldpe.go

    				continue
    			}
    		}
    
    		bld, s, err := state.readpesym(pesym)
    		if err != nil {
    			return nil, err
    		}
    
    		if pesym.SectionNumber == 0 { // extern
    			if l.SymType(s) == sym.SXREF && pesym.Value > 0 { // global data
    				bld = makeUpdater(l, bld, s)
    				bld.SetType(sym.SNOPTRDATA)
    				bld.SetSize(int64(pesym.Value))
    			}
    
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/go.go

    			}
    
    			q := ""
    			if before, after, found := strings.Cut(remote, "#"); found {
    				remote, q = before, after
    			}
    			s := l.LookupOrCreateSym(local, 0)
    			st := l.SymType(s)
    			if st == 0 || st == sym.SXREF || st == sym.SBSS || st == sym.SNOPTRBSS || st == sym.SHOSTOBJ {
    				l.SetSymDynimplib(s, lib)
    				l.SetSymExtname(s, remote)
    				l.SetSymDynimpvers(s, q)
    				if st != sym.SHOSTOBJ {
    					su := l.MakeSymbolUpdater(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

        // non-derived ones.
        llvm::StringSet<> getDefinedAttributeNames() {
          llvm::StringSet<> all_attrs;
          for (auto& attr : (*this)->getAttrs()) {
            all_attrs.insert(attr.getName().strref());
          }
          for (const auto& operand : llvm::enumerate(getArgumentTypes())) {
            if (auto attr_name = getArgAttrOfType<StringAttr>(
                operand.index(), kAttrArgumentNameAttr)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/symbolbuilder.go

    	sb.relocs[i].SetType(uint16(t))
    }
    
    // SetRelocSym sets the target sym of the 'i'-th relocation on this sym to 's'
    func (sb *SymbolBuilder) SetRelocSym(i int, tgt Sym) {
    	sb.relocs[i].SetSym(goobj.SymRef{PkgIdx: 0, SymIdx: uint32(tgt)})
    }
    
    // SetRelocAdd sets the addend of the 'i'-th relocation on this sym to 'a'
    func (sb *SymbolBuilder) SetRelocAdd(i int, a int64) {
    	sb.relocs[i].SetAdd(a)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top