Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for aframe (0.2 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      auto enter_0 = ops::internal::Enter(root.WithOpName("enter_a"), a, "frame");
      auto exit_0 = ops::internal::Exit(root.WithOpName("exit_a"), enter_0);
      auto tanh = ops::Tanh(root.WithOpName("tanh"), exit_0);
      auto enter_1 =
          ops::internal::Enter(root.WithOpName("enter_1"), tanh, "frame");
      auto exit_1 = ops::internal::Exit(root.WithOpName("exit_1"), enter_1);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    			}
    		}
    	}
    
    	var frame stkframe
    	frame.pc = pc0
    	frame.sp = sp0
    	if usesLR {
    		frame.lr = lr0
    	}
    
    	// If the PC is zero, it's likely a nil function call.
    	// Start in the caller's frame.
    	if frame.pc == 0 {
    		if usesLR {
    			frame.pc = *(*uintptr)(unsafe.Pointer(frame.sp))
    			frame.lr = 0
    		} else {
    			frame.pc = *(*uintptr)(unsafe.Pointer(frame.sp))
    			frame.sp += goarch.PtrSize
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis.cc

    // the same root frame are placed adjacent to each other.  This grouping enables
    // processing the graph per root frame at a time and guarantees that when a root
    // frame is being processed, nodes in the downstream frames have not yet been
    // processed.  This property is important because we need to process an entire
    // frame to know whether the optimistic mode converges or not.  In other words,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    		// and registers that ever contain a pointer.
    		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)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    TEXT runtime·retpolineR8(SB),NOSPLIT|NOFRAME,$0; RETPOLINE(8)
    TEXT runtime·retpolineR9(SB),NOSPLIT|NOFRAME,$0; RETPOLINE(9)
    TEXT runtime·retpolineR10(SB),NOSPLIT|NOFRAME,$0; RETPOLINE(10)
    TEXT runtime·retpolineR11(SB),NOSPLIT|NOFRAME,$0; RETPOLINE(11)
    TEXT runtime·retpolineR12(SB),NOSPLIT|NOFRAME,$0; RETPOLINE(12)
    TEXT runtime·retpolineR13(SB),NOSPLIT|NOFRAME,$0; RETPOLINE(13)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        while (buffer.size != 1024L) source.read(buffer, 1024)
        stream1.close(ErrorCode.CANCEL, null)
        val frame1 = peer.takeFrame()
        assertThat(frame1.type).isEqualTo(Http2.TYPE_HEADERS)
        val frame2 = peer.takeFrame()
        assertThat(frame2.type).isEqualTo(Http2.TYPE_RST_STREAM)
        val frame3 = peer.takeFrame()
        assertThat(frame3.type).isEqualTo(Http2.TYPE_RST_STREAM)
        assertThat(connection.readBytes.acknowledged).isEqualTo(0L)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  7. src/testing/testing.go

    	var pc [maxStackLen]uintptr
    	// Skip two extra frames to account for this function
    	// and runtime.Callers itself.
    	n := runtime.Callers(skip+2, pc[:])
    	if n == 0 {
    		panic("testing: zero callers found")
    	}
    	frames := runtime.CallersFrames(pc[:n])
    	var firstFrame, prevFrame, frame runtime.Frame
    	for more := true; more; prevFrame = frame {
    		frame, more = frames.Next()
    		if frame.Function == "runtime.gopanic" {
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    		}
    	} else {
    		mp.profStack[0] = uintptr(skip)
    		if gp.m.curg == nil || gp.m.curg == gp {
    			if skip > 0 {
    				// We skip one fewer frame than the provided value for frame
    				// pointer unwinding because the skip value includes the current
    				// frame, whereas the saved frame pointer will give us the
    				// caller's return address first (so, not including
    				// saveblockevent)
    				mp.profStack[0] -= 1
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof_test.go

    // shows a goroutine in the given state with a stack frame in
    // runtime/pprof.<fName>.
    func awaitBlockedGoroutine(t *testing.T, state, fName string, count int) {
    	re := fmt.Sprintf(`(?m)^goroutine \d+ \[%s\]:\n(?:.+\n\t.+\n)*runtime/pprof\.%s`, regexp.QuoteMeta(state), fName)
    	r := regexp.MustCompile(re)
    
    	if deadline, ok := t.Deadline(); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        enter_builder.Input(node, 0);
        Node* enter_node = options.FinalizeBuilder(&enter_builder);
        // Adopt the new Enter node as the value in the current frame.
        node = enter_node;
        // Recurse to the parent frame to see if more Enter nodes need to be added.
        src_node = control_flow_info[src_node->id()].parent_frame;
      }
      return node;
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top