Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 93 for perblock (0.89 sec)

  1. src/cmd/link/internal/ld/pe.go

    		for _, s := range syms {
    			if !ldr.AttrReachable(s) {
    				continue
    			}
    			if ldr.SymValue(s) >= eaddr {
    				break
    			}
    			// Compute external relocations on the go, and pass to PEreloc1
    			// to stream out.
    			relocs := ldr.Relocs(s)
    			for ri := 0; ri < relocs.Count(); ri++ {
    				r := relocs.At(ri)
    				rr, ok := extreloc(ctxt, ldr, s, r)
    				if !ok {
    					continue
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

                   operand.getOwner()->getParentRegion()) ||
               (HasOutsideCompilationAncestor(operand.getOwner()) &&
                original_op_block == operand.getOwner()->getBlock());
      };
      for (auto result : llvm::zip(external_operands, recv_at_host->getResults())) {
        Value external_operand = std::get<0>(result);
        external_operand.replaceUsesWithIf(std::get<1>(result),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/arm/asm.go

    		got.AddUint32(ctxt.Arch, 0)
    		got.AddUint32(ctxt.Arch, 0)
    	}
    }
    
    func machoreloc1(*sys.Arch, *ld.OutBuf, *loader.Loader, loader.Sym, loader.ExtReloc, int64) bool {
    	return false
    }
    
    func pereloc1(arch *sys.Arch, out *ld.OutBuf, ldr *loader.Loader, s loader.Sym, r loader.ExtReloc, sectoff int64) bool {
    	rs := r.Xsym
    	rt := r.Type
    
    	if ldr.SymDynid(rs) < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      // Populate the control sinks (i.e. side-effecting ops with no control
      // successors) in the top level block.
      for (const auto& entry : sorted_control_predecessors_) {
        auto* op = entry.getFirst();
        if (op->getBlock() == &func_op.front() &&
            sorted_control_successors_.count(op) == 0) {
          sorted_control_sinks_.push_back(op);
        }
      }
      llvm::sort(sorted_control_sinks_, [](Operation* a, Operation* b) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

          }
        }
    
        // Move inner ops from island to block containing graph.
        auto &island_body = island_op.GetBody().getOperations();
        Operation *operation = op.getOperation();
        operation->getBlock()->getOperations().splice(
            operation->getIterator(), island_body, island_body.begin(),
            std::prev(island_body.end()));
        rewriter.replaceOp(op, new_rets);
    
        return success();
      }
    };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/arm64/asm.go

    	case 1:
    		v |= 0 << 25
    	case 2:
    		v |= 1 << 25
    	case 4:
    		v |= 2 << 25
    	case 8:
    		v |= 3 << 25
    	}
    
    	out.Write32(uint32(sectoff))
    	out.Write32(v)
    	return true
    }
    
    func pereloc1(arch *sys.Arch, out *ld.OutBuf, ldr *loader.Loader, s loader.Sym, r loader.ExtReloc, sectoff int64) bool {
    	rs := r.Xsym
    	rt := r.Type
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      auto transpose = dyn_cast_or_null<TF::TransposeOp>(op.getX().getDefiningOp());
      if (!transpose) return {};
    
      // If the transpose ops are on different devices, we don't fold them.
      if (transpose->getBlock() != op->getBlock()) {
        tensorflow::DataType dtype;
        auto status = tensorflow::ConvertToDataType(
            op.getX().getType().cast<TensorType>().getElementType(), &dtype);
        if (status.ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        // We make use of a separate builder to insert the source at the top of
        // the block.
        mlir::OpBuilder builder_at_begin(builder_.getBlock(),
                                         builder_.getBlock()->begin());
        auto source_op =
            builder_at_begin.create<mlir::tf_executor::NextIterationSourceOp>(
                loc, operands[0].getType(), result.attributes);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    	Machoreloc1    func(*sys.Arch, *OutBuf, *loader.Loader, loader.Sym, loader.ExtReloc, int64) bool
    	MachorelocSize uint32 // size of an Mach-O relocation record, must match Machoreloc1.
    	PEreloc1       func(*sys.Arch, *OutBuf, *loader.Loader, loader.Sym, loader.ExtReloc, int64) bool
    	Xcoffreloc1    func(*sys.Arch, *OutBuf, *loader.Loader, loader.Sym, loader.ExtReloc, int64) bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // Atomic memory updates.
    (AtomicAnd8  ptr val mem) => (ANDBlock ptr val mem)
    (AtomicAnd32 ptr val mem) => (ANDLlock ptr val mem)
    (AtomicOr8   ptr val mem) => (ORBlock  ptr val mem)
    (AtomicOr32  ptr val mem) => (ORLlock  ptr val mem)
    
    // Write barrier.
    (WB ...) => (LoweredWB ...)
    
    (PanicBounds [kind] x y mem) && boundsABI(kind) == 0 => (LoweredPanicBoundsA [kind] x y mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top