Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for fn_call (0.11 sec)

  1. tensorflow/compiler/aot/tests/make_test_graphs.py

      @function.Defun(dtypes.int32, dtypes.int32)
      def test_func(a, b):
        return a + b
    
      x = constant_op.constant([1], name='x_const')
      y = constant_op.constant([2], name='y_const')
      test_func(x, y, name='func_call')  # pylint: disable=unexpected-keyword-arg
    
    
    def tfsplits(_):
      """A more complex graph, including splits."""
      x = array_ops.placeholder(dtypes.float32, shape=[2, 2], name='x')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/InstallExecutable.java

                toolChainPath.append("%PATH%");
            }
    
            String runScriptText =
                  "\n@echo off"
                + "\nSETLOCAL"
                + "\n" + toolChainPath
                + "\nCALL \"%~dp0lib\\" + executable.getName() + "\" %*"
                + "\nEXIT /B %ERRORLEVEL%"
                + "\nENDLOCAL"
                + "\n";
            GFileUtils.writeFile(runScriptText, runScript);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. src/cmd/internal/objabi/reloctype.go

    	// address, by encoding it into the instruction.
    	R_ADDRMIPS
    	// R_ADDROFF resolves to a 32-bit offset from the beginning of the section
    	// holding the data being relocated to the referenced symbol.
    	R_ADDROFF
    	R_SIZE
    	R_CALL
    	R_CALLARM
    	R_CALLARM64
    	R_CALLIND
    	R_CALLPOWER
    	// R_CALLMIPS (only used on mips64) resolves to non-PC-relative target address
    	// of a CALL (JAL) instruction, by encoding the address into the instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. internal/s3select/sql/parser.go

    	JPathExpr     *JSONPath   `parser:"| @@"`
    	ListExpr      *ListExpr   `parser:"| @@"`
    	SubExpression *Expression `parser:"| \"(\" @@ \")\""`
    	// Include function expressions here.
    	FuncCall *FuncExpr `parser:"| @@"`
    }
    
    // FuncExpr represents a function call
    type FuncExpr struct {
    	SFunc     *SimpleArgFunc `parser:"  @@"`
    	Count     *CountFunc     `parser:"| @@"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/compilability_check_util_test.cc

      FunctionDef call_identity = FunctionDefHelper::Create(
          "CallIdentity",
          /*in_def=*/{"x:float"},
          /*out_def=*/{"z:float"}, /*attr_def=*/{},
          /*node_def=*/
          {{{"func_call"},
            "PartitionedCall",
            {"x"},
            {{"Tin", DataTypeSlice({DT_FLOAT})},
             {"Tout", DataTypeSlice({DT_FLOAT})},
             {"f",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/loader_test.go

    	}
    
    	// 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.
    	d1 := []byte{1, 2, 3}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/cmd/internal/dwarf/dwarf.go

    	}
    	i := len(s.Ranges)
    	if i > 0 && s.Ranges[i-1].End == r.Start {
    		s.Ranges[i-1].End = r.End
    		return
    	}
    	s.Ranges = append(s.Ranges, r)
    }
    
    type InlCalls struct {
    	Calls []InlCall
    }
    
    type InlCall struct {
    	// index into ctx.InlTree describing the call inlined here
    	InlIndex int
    
    	// Position of the inlined call site.
    	CallPos src.Pos
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/link/internal/wasm/asm.go

    				}
    				wfn.Write(P[off:r.Off()])
    				off = r.Off()
    				rs := r.Sym()
    				switch r.Type() {
    				case objabi.R_ADDR:
    					writeSleb128(wfn, ldr.SymValue(rs)+r.Add())
    				case objabi.R_CALL:
    					writeSleb128(wfn, int64(len(hostImports))+ldr.SymValue(rs)>>16-funcValueOffset)
    				case objabi.R_WASMIMPORT:
    					writeSleb128(wfn, hostImportMap[rs])
    				default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. 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)
Back to top