Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,863 for addDep (0.07 sec)

  1. src/cmd/internal/obj/data.go

    	// Allow 4-byte addresses for DWARF.
    	if siz != ctxt.Arch.PtrSize && siz != 4 {
    		ctxt.Diag("WriteAddr: bad address size %d in %s", siz, s.Name)
    	}
    	s.prepwrite(ctxt, off, siz)
    	r := Addrel(s)
    	r.Off = int32(off)
    	if int64(r.Off) != off {
    		ctxt.Diag("WriteAddr: off overflow %d in %s", off, s.Name)
    	}
    	r.Siz = uint8(siz)
    	r.Sym = rsym
    	r.Type = rtype
    	r.Add = roff
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 24 14:38:53 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  2. hack/testdata/CRD/foo-added-subfield.yaml

    Nikhita Raghunath <******@****.***> 1506872372 +0530
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 01 15:43:24 UTC 2017
    - 201 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    	XORI:      "XOR",
    	ORI:       "OR",
    	ANDICC:    "ANDCC",
    	ANDC:      "ANDN",
    	ANDCCC:    "ANDNCC",
    	ADDEO:     "ADDEV",
    	ADDEOCC:   "ADDEVCC",
    	ADDO:      "ADDV",
    	ADDOCC:    "ADDVCC",
    	ADDMEO:    "ADDMEV",
    	ADDMEOCC:  "ADDMEVCC",
    	ADDCO:     "ADDCV",
    	ADDCOCC:   "ADDCVCC",
    	ADDZEO:    "ADDZEV",
    	ADDZEOCC:  "ADDZEVCC",
    	SUBFME:    "SUBME",
    	SUBFMECC:  "SUBMECC",
    	SUBFZE:    "SUBZE",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loong64/asm.go

    	//	0:	1a000004	pcalau12i	$a0, 0
    	//				0: R_LARCH_PCALA_HI20	local.moduledata
    	o(0x1a000004)
    	rel, _ := initfunc.AddRel(objabi.R_LOONG64_ADDR_HI)
    	rel.SetOff(0)
    	rel.SetSiz(4)
    	rel.SetSym(ctxt.Moduledata)
    
    	//	4:	02c00084	addi.d	$a0, $a0, 0
    	//				4: R_LARCH_PCALA_LO12	local.moduledata
    	o(0x02c00084)
    	rel2, _ := initfunc.AddRel(objabi.R_LOONG64_ADDR_LO)
    	rel2.SetOff(4)
    	rel2.SetSiz(4)
    	rel2.SetSym(ctxt.Moduledata)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/outline_composites.cc

      auto add_op =
          rewriter.create<stablehlo::AddOp>(erf_op.getLoc(), erf_op, one_cst);
      auto lhs_mul_op = rewriter.create<stablehlo::MulOp>(
          half_cst.getLoc(), new_func.getArguments()[0], half_cst);
      auto output_mul_op = rewriter.create<stablehlo::MulOp>(lhs_mul_op.getLoc(),
                                                             lhs_mul_op, add_op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/seh.go

    			// The SEH unwind data can contain relocations,
    			// make sure those are copied over.
    			rels := ldr.Relocs(uw)
    			for i := 0; i < rels.Count(); i++ {
    				r := rels.At(i)
    				rel, _ := xdata.AddRel(r.Type())
    				rel.SetOff(int32(off) + r.Off())
    				rel.SetSiz(r.Siz())
    				rel.SetSym(r.Sym())
    				rel.SetAdd(r.Add())
    			}
    		}
    
    		// Reference:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

          return failure();
        }
    
        if (fuse_bias_constant) {
          Operation* add_op = FindUserOfType<stablehlo::AddOp>(op);
          if (add_op == nullptr) {
            LLVM_DEBUG(llvm::dbgs() << "Failed to find AddOp for bias fusion.\n");
            return failure();
          }
          Operation* bias_const_op = GetBiasConstOp(add_op);
          if (bias_const_op == nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/README.md

      else:
        return res
    
    ```
    
    Besides defining new ops, composition can be specified for an existing op
    for portability. The following code defines the semantics of `AddNOp`:
    
    ```python
    @Composite('AddNOp')
    def _my_op_c(ins):
      N = len(ins)
      if N == 1:
        return ins[0]
      sum = ins[0]
      for i in range(1, N):
        sum += ins[i]
      return sum
    ```
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

        }
        if (output_arg.is_ref()) {
          // For all types that were added by this function call, make them refs.
          for (Type& type : llvm::make_range(&state_->types[original_size],
                                             state_->types.end())) {
            Type output_type;
            TF_RETURN_IF_ERROR(AddRef(type, &output_type));
            type = output_type;
          }
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/loader_test.go

    		t.Errorf("SymAlign(es3): expected 128, got %d", es3al)
    	}
    
    	// Add some relocations to the new symbols.
    	r1, _ := sb1.AddRel(objabi.R_ADDR)
    	r1.SetOff(0)
    	r1.SetSiz(1)
    	r1.SetSym(ts1)
    	r2, _ := sb1.AddRel(objabi.R_CALL)
    	r2.SetOff(3)
    	r2.SetSiz(8)
    	r2.SetSym(ts2)
    	r3, _ := sb2.AddRel(objabi.R_USETYPE)
    	r3.SetOff(7)
    	r3.SetSiz(1)
    	r3.SetSym(ts3)
    
    	// Add some data to the symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:09 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top