Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for argTypes (0.33 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

    };
    
    // Updates func argument type to have the updated input shape.
    void UpdateFuncType(func::FuncOp func) {
      auto arg_types = func.front().getArgumentTypes();
      auto result_types = func.front().getTerminator()->getOperandTypes();
      func.setType(FunctionType::get(func.getContext(), arg_types, result_types));
    }
    
    void HandleFuncOp(Operation* op) {
      auto func = llvm::cast<func::FuncOp>(op);
      UpdateFuncType(func);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

      auto init_func = builder.create<func::FuncOp>(
          loc, /*sym_name=*/"init_func_restore_op", func_type);
      builder.createBlock(&init_func.getBody(), /*insertPt=*/init_func.begin(),
                          /*arg_types=*/{}, /*arg_locs=*/{});
    
      init_func->setAttr(kTfSavedModelExportedNamesAttr,
                         builder.getStrArrayAttr(
                             {"tf_saved_model.session_initializer_restore_op"}));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_xla_computations_pass_test.cc

        EXPECT_EQ((DataTypeVector{DT_INT32, DT_FLOAT, DT_INT32, DT_FLOAT,
                                  DT_RESOURCE, DT_RESOURCE, DT_RESOURCE}),
                  result.arg_types);
        EXPECT_EQ((DataTypeVector{DT_FLOAT, DT_INT32, DT_FLOAT, DT_FLOAT}),
                  result.ret_types);
        TF_EXPECT_GRAPH_EQ(expected_body_def, result.gdef);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 18:03:15 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/ir/tfr_ops.cc

    }
    
    ParseResult TFRFuncOp::parse(OpAsmParser &parser, OperationState &result) {
      auto build_func_type =
          [](Builder &builder, ArrayRef<Type> arg_types, ArrayRef<Type> results,
             function_interface_impl::VariadicFlag,
             std::string &) { return builder.getFunctionType(arg_types, results); };
      return function_interface_impl::parseFunctionOp(
          parser, result, /*allowVariadic=*/false,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 16:55:41 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  5. 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)
  6. src/runtime/heapdump.go

    		// locals.
    		dumpbv(&bv, s.varp-uintptr(bv.n)*goarch.PtrSize-s.sp)
    	}
    	dumpint(fieldKindEol)
    
    	// Record arg info for parent.
    	child.argoff = s.argp - s.fp
    	child.arglen = s.argBytes()
    	child.sp = (*uint8)(unsafe.Pointer(s.sp))
    	child.depth++
    	stkmap = (*stackmap)(funcdata(f, abi.FUNCDATA_ArgsPointerMaps))
    	if stkmap != nil {
    		child.args = stackmapdata(stkmap, pcdata)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/runtime/asm_loong64.s

    	MOVV	f+8(FP), REGCTXT;			\
    	MOVV	(REGCTXT), R25;			\
    	PCDATA  $PCDATA_StackMapIndex, $0;	\
    	JAL	(R25);				\
    	/* copy return values back */		\
    	MOVV	regArgs+40(FP), R25;		\
    	JAL	·spillArgs(SB);		\
    	MOVV	argtype+0(FP), R7;		\
    	MOVV	arg+16(FP), R4;			\
    	MOVWU	n+24(FP), R5;			\
    	MOVWU	retoffset+28(FP), R6;		\
    	ADDV	$8, R3, R12;				\
    	ADDV	R6, R12; 			\
    	ADDV	R6, R4;				\
    	SUBVU	R6, R5;				\
    	JAL	callRet<>(SB);			\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. 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)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

            val kid: KaClassLikeSymbol
        }
    
        interface JsExternalArgument : KaFirDiagnostic<KtExpression> {
            override val diagnosticClass get() = JsExternalArgument::class
            val argType: KaType
        }
    
        interface WrongExportedDeclaration : KaFirDiagnostic<KtElement> {
            override val diagnosticClass get() = WrongExportedDeclaration::class
            val kind: String
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<KtDeclaration>(firDiagnostic, token), KaFirDiagnostic.JsExternalInheritorsOnly
    
    internal class JsExternalArgumentImpl(
        override val argType: KaType,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<KtExpression>(firDiagnostic, token), KaFirDiagnostic.JsExternalArgument
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
Back to top