Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 990 for pgstack (0.11 sec)

  1. src/internal/trace/testdata/generators/go122-create-syscall-reuse-thread-id.go

    	b0.Event("ProcStart", trace.ProcID(0), testgen.Seq(1))
    	b0.Event("GoStatus", trace.GoID(4), trace.NoThread, go122.GoRunnable)
    	b0.Event("GoStart", trace.GoID(4), testgen.Seq(1))
    	b0.Event("GoSyscallBegin", testgen.Seq(2), testgen.NoStack)
    	b0.Event("GoDestroySyscall")
    
    	// A new Go-created thread with the same ID appears and
    	// starts running, then tries to steal the P from the
    	// first thread. The stealing is interesting because if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/runtime/asm_ppc64x.s

    	// on the system stack.
    	SUB	$(asmcgocallSaveOffset+16), R1, R10
    	RLDCR	$0, R10, $~15, R1	// 16-byte alignment for gcc ABI
    	MOVD	R5, (asmcgocallSaveOffset+8)(R1)	// save old g on stack
    	MOVD	(g_stack+stack_hi)(R5), R5
    	SUB	R7, R5
    	MOVD	R5, asmcgocallSaveOffset(R1)    // save depth in old g stack (can't just save SP, as stack might be copied during a callback)
    #ifdef GOOS_aix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  3. src/runtime/sys_solaris_amd64.s

    	MOVQ	m_g0(DI), DX		// g
    
    	// Make TLS entries point at g and m.
    	get_tls(BX)
    	MOVQ	DX, g(BX)
    	MOVQ	DI, g_m(DX)
    
    	// Layout new m scheduler stack on os stack.
    	MOVQ	SP, AX
    	MOVQ	AX, (g_stack+stack_hi)(DX)
    	SUBQ	$(0x100000), AX		// stack size
    	MOVQ	AX, (g_stack+stack_lo)(DX)
    	ADDQ	$const_stackGuard, AX
    	MOVQ	AX, g_stackguard0(DX)
    	MOVQ	AX, g_stackguard1(DX)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. samples/tcp-echo/tcp-echo-dual-stack.yaml

    John Howard <******@****.***> 1710626582 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. tensorflow/c/eager/tape.h

      // TODO(apassos) multiple threads could be dequeuing from op_stack at the same
      // time, for better CPU backprop performance.
      VLOG(1) << "Initial stack:";
      if (VLOG_IS_ON(1)) {
        for (auto t : op_stack) {
          VLOG(1) << "  " << t;
        }
      }
      while (!op_stack.empty()) {
        const int64_t op = op_stack.back();
        VLOG(1) << "Popped " << op;
        op_stack.pop_back();
        auto op_it = state.op_tape.find(op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  6. src/runtime/asm_amd64.s

    	// Switch to system stack.
    	// The original frame pointer is stored in BP,
    	// which is useful for stack unwinding.
    	CALL	gosave_systemstack_switch<>(SB)
    	MOVQ	SI, g(CX)
    	MOVQ	(g_sched+gobuf_sp)(SI), SP
    
    	// Now on a scheduling stack (a pthread-created stack).
    	SUBQ	$16, SP
    	ANDQ	$~15, SP	// alignment for gcc ABI
    	MOVQ	DI, 8(SP)	// save g
    	MOVQ	(g_stack+stack_hi)(DI), DI
    	SUBQ	DX, DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

        argument_set.insert(argument.getImpl());
      }
    
      // Searching for ops from results to arguments. Duplicate ops in the op stack
      // are intentional in order to make sure the op on the top of the stack
      // doesn't depends on any ops below it.
      std::stack<Operation*> op_stack;
      while (!value_queue.empty()) {
        Value current_value = value_queue.front();
        value_queue.pop();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  8. src/runtime/sys_windows_arm64.s

    	MOVD	m_g0(R0), g
    	MOVD	R0, g_m(g)
    	BL	runtime·save_g(SB)
    
    	// Set up stack guards for OS stack.
    	MOVD	RSP, R0
    	MOVD	R0, g_stack+stack_hi(g)
    	SUB	$(64*1024), R0
    	MOVD	R0, (g_stack+stack_lo)(g)
    	MOVD	R0, g_stackguard0(g)
    	MOVD	R0, g_stackguard1(g)
    
    	BL	runtime·emptyfunc(SB)	// fault if stack check is wrong
    	BL	runtime·mstart(SB)
    
    	RESTORE_R19_TO_R28(8*3)
    
    	// Exit the thread.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. src/runtime/asm_arm.s

    	MOVW	g, m_g0(R8)
    	// save g->m = m0
    	MOVW	R8, g_m(g)
    
    	// create istack out of the OS stack
    	// (1MB of system stack is available on iOS and Android)
    	MOVW	$(-64*1024+104)(R13), R0
    	MOVW	R0, g_stackguard0(g)
    	MOVW	R0, g_stackguard1(g)
    	MOVW	R0, (g_stack+stack_lo)(g)
    	MOVW	R13, (g_stack+stack_hi)(g)
    
    	BL	runtime·emptyfunc(SB)	// fault if stack check is wrong
    
    #ifdef GOOS_openbsd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  10. src/runtime/sys_windows_arm.s

    	MOVW	m_g0(R0), g
    	MOVW	R0, g_m(g)
    	BL	runtime·save_g(SB)
    
    	// Layout new m scheduler stack on os stack.
    	MOVW	R13, R0
    	MOVW	R0, g_stack+stack_hi(g)
    	SUB	$(64*1024), R0
    	MOVW	R0, (g_stack+stack_lo)(g)
    	MOVW	R0, g_stackguard0(g)
    	MOVW	R0, g_stackguard1(g)
    
    	BL	runtime·emptyfunc(SB)	// fault if stack check is wrong
    	BL	runtime·mstart(SB)
    
    	// Exit the thread.
    	MOVW	$0, R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top