Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,181 for call27 (0.15 sec)

  1. src/runtime/asan_amd64.s

    	JMP	asancall<>(SB)
    
    // Switches SP to g0 stack and calls (AX). Arguments already set.
    TEXT	asancall<>(SB), NOSPLIT, $0-0
    	get_tls(R12)
    	MOVQ	g(R12), R14
    	MOVQ	SP, R12		// callee-saved, preserved across the CALL
    	CMPQ	R14, $0
    	JE	call	// no g; still on a system stack
    
    	MOVQ	g_m(R14), R13
    	// Switch to g0 stack.
    	MOVQ	m_g0(R13), R10
    	CMPQ	R10, R14
    	JE	call	// already on g0
    
    	MOVQ	(g_sched+gobuf_sp)(R10), SP
    call:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 02:20:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/stablehlo-custom-call-legalize-composite.mlir

    // RUN: odml-to-stablehlo-opt %s -stablehlo-custom-call-legalize-composite | FileCheck %s
    
    // CHECK-LABEL: module
    module {
      // CHECK-LABEL: @main
      func.func @main(%arg0: tensor<1xf32>, %arg1: tensor<2xf32>) {
        // CHECK: stablehlo.custom_call @foo
        stablehlo.custom_call @foo() : () -> ()
        // CHECK-NOT: stablehlo.custom_call
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 19:49:44 UTC 2024
    - 1009 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

    // It will first check if the callee was previously handled, and try to reuse
    // that result if so. Otherwise, it will clone and convert the callee function,
    // and performs stack ops decomposition on it.
    template <typename CallOp>
    LogicalResult HandlePartitionedCallOp(
        CallOp call, func::FuncOp callee, ModuleOp module,
        const llvm::SmallDenseMap<Value, Value>& data_var_to_size_var,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. src/runtime/asm_386.s

    	MOVL	CX, 12(SP)
    	MOVL	$0, 16(SP)
    	CALL	runtime·reflectcallmove(SB)
    	RET
    
    CALLFNcall16, 16)
    CALLFNcall32, 32)
    CALLFNcall64, 64)
    CALLFNcall128, 128)
    CALLFNcall256, 256)
    CALLFN(·call512, 512)
    CALLFN(·call1024, 1024)
    CALLFN(·call2048, 2048)
    CALLFN(·call4096, 4096)
    CALLFN(·call8192, 8192)
    CALLFN(·call16384, 16384)
    CALLFN(·call32768, 32768)
    CALLFN(·call65536, 65536)
    CALLFN(·call131072, 131072)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/stack_ops_decomposition.mlir

      // CHECK: "tf.StatefulPartitionedCall"
      // CHECK-SAME: f = @callee
      %call = "tf.StatefulPartitionedCall"(%stack, %arg0) {f = @callee, config = "", config_proto = "", executor_type = ""}
        : (tensor<!tf_type.resource>, tensor<i1>) -> tensor<!tf_type.resource>
      // CHECK: "tf.PartitionedCall"
      // CHECK-SAME: f = @callee
      %call2 = "tf.PartitionedCall"(%stack, %arg0) {f = @callee, config = "", config_proto = "", executor_type = ""}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  6. src/runtime/race_s390x.s

    // func runtime·RaceRead(addr uintptr)
    TEXT	runtime·RaceRead(SB), NOSPLIT, $0-8
    	// This needs to be a tail call, because raceread reads caller pc.
    	JMP	runtime·raceread(SB)
    
    // func runtime·racereadpc(void *addr, void *callpc, void *pc)
    TEXT	runtime·racereadpc(SB), NOSPLIT, $0-24
    	// void __tsan_read_pc(ThreadState *thr, void *addr, void *callpc, void *pc);
    	MOVD	$__tsan_read_pc(SB), R1
    	LMG	addr+0(FP), R3, R5
    	JMP	racecalladdr<>(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_ppc64x.s

    	// Allocate space for argument storage to call runtime.sigtrampgo.
    	STACK_AND_SAVE_HOST_TO_GO_ABI(32)
    
    	// this might be called in external code context,
    	// where g is not set.
    	MOVBZ	runtime·iscgo(SB), R6
    	CMP	R6, $0
    	BEQ	2(PC)
    	BL	runtime·load_g(SB)
    
    	// R3,R4,R5 already hold the arguments. Forward them on.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tensor_array_ops_decomposition.cc

      if (lowered_callee != callee) {
        if (!info.signature_change) {
          // Signature is not modified. We do not need to keep two copies.
          lowered_callee.setName(
              StringAttr::get(callee->getContext(), callee.getName()));
          callee.erase();
        } else {
          // Add the clone with a new name.
          lowered_callee.setName(StringAttr::get(
              callee->getContext(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 40.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      }
    
      // Clone the callee before making changes.
      SmallString<64> name_base = callee.getName();
      auto module = callee->getParentOfType<ModuleOp>();
      name_base += "_resource_lifted";
      auto name = name_base;
      callee = callee.clone();
      callee.setPrivate();
      callee.setName(mlir::StringAttr::get(callee->getContext(), name));
      SymbolTable(module).insert(callee);
      result->lifted_callee = callee;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/rules/ClosureBackedRuleActionTest.groovy

        def "one arg closure called with subject and no inputs"() {
            given:
            def called = false
            String thing = "1"
            def closure = { String val ->
                called = true
                assert val.is(thing)
                assert delegate.is(thing)
            }
    
            when:
            action(closure).execute(thing, [])
    
            then:
            called
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top