Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for argTypes (0.11 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

                BackwardsConstAnalysis(**subgraph, &const_args,
                                       /*compile_time_const_nodes=*/nullptr, flr));
    
            DataTypeVector arg_types(num_args);
            TF_RETURN_IF_ERROR(GetArgTypes(**subgraph, &arg_types));
    
            // Compute a permutation of the arguments such that the constant
            // arguments are first.
            const int num_consts =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

            methodVisitor.visitCode();
            return methodVisitor;
        }
    
        private void putFirstMethodArgumentOnStack(MethodVisitor methodVisitor, Type argType) {
            int loadCode = argType.getOpcode(ILOAD);
            methodVisitor.visitVarInsn(loadCode, 1);
        }
    
        private void putFirstMethodArgumentOnStack(MethodVisitor methodVisitor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  3. src/runtime/mgcmark.go

    		if frame.varp != 0 {
    			size := frame.varp - frame.sp
    			if size > 0 {
    				scanConservative(frame.sp, size, nil, gcw, state)
    			}
    		}
    
    		// Scan arguments to this frame.
    		if n := frame.argBytes(); n != 0 {
    			// TODO: We could pass the entry argument map
    			// to narrow this down further.
    			scanConservative(frame.argp, n, nil, gcw, state)
    		}
    
    		if isAsyncPreempt || isDebugCall {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top