Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for fn_call (0.47 sec)

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

    		}
    
    		// TODO(mundaym): remove this special case - see issue 14218.
    		if target.IsS390X() {
    			switch rt {
    			case objabi.R_PCRELDBL:
    				rt = objabi.R_PCREL
    				rv = sym.RV_390_DBL
    			case objabi.R_CALL:
    				rv = sym.RV_390_DBL
    			}
    		}
    
    		var o int64
    		switch rt {
    		default:
    			switch siz {
    			default:
    				st.err.Errorf(s, "bad reloc size %#x for %s", uint32(siz), ldr.SymName(rs))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm6.go

    					ab.Put1(o.op[z+1])
    					r = obj.Addrel(cursym)
    					r.Off = int32(p.Pc + int64(ab.Len()))
    					r.Sym = p.To.Sym
    					// Note: R_CALL instead of R_PCREL. R_CALL is more permissive in that
    					// it can point to a trampoline instead of the destination itself.
    					r.Type = objabi.R_CALL
    					r.Siz = 4
    					ab.PutInt32(0)
    					break
    				}
    
    				// Assumes q is in this function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        if ((output_state_size != n_batch * n_output) ||
            (state_size != n_batch * n_cell) ||
            (input_to_output_weights.getDimSize(1) != n_input) ||
            (recurrent_to_output_weights.getRank() != 2) ||
            (recurrent_to_output_weights.getDimSize(0) != n_cell) ||
            (input_to_output_weights.getRank() != 2)) {
          return op.emitOpError("inputs don't match with the dimensions.");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      return host_compute_node;
    }
    
    // Resets "_device_ordinal" attr to placeholder value for related nodes
    // (XlaRecvAtHost nodes; XlaSendFromHost nodes; If/While/FuncCall nodes
    // containing XlaRecvAtHost/XlaSendFromHost).
    Status ResetDeviceOrdinalToPlaceholderValue(Graph* g) {
      AttrValue device_ordinal_value;
      device_ordinal_value.set_placeholder("_device_ordinal");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/asmz.go

    	rel := obj.Addrel(c.cursym)
    	rel.Off = int32(c.pc + offset)
    	rel.Siz = 4
    	rel.Sym = sym
    	rel.Add = add + offset + int64(rel.Siz)
    	rel.Type = objabi.R_CALL
    	return rel
    }
    
    func (c *ctxtz) branchMask(p *obj.Prog) CCMask {
    	switch p.As {
    	case ABRC, ALOCR, ALOCGR,
    		ACRJ, ACGRJ, ACIJ, ACGIJ,
    		ACLRJ, ACLGRJ, ACLIJ, ACLGIJ:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
Back to top