Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for stack_frame (0.23 sec)

  1. src/internal/trace/testtrace/validation.go

    		return s
    	}
    	return s
    }
    
    func checkStack(e *errAccumulator, stk trace.Stack) {
    	// Check for non-empty values, but we also check for crashes due to incorrect validation.
    	i := 0
    	stk.Frames(func(f trace.StackFrame) bool {
    		if i == 0 {
    			// Allow for one fully zero stack.
    			//
    			// TODO(mknyszek): Investigate why that happens.
    			return true
    		}
    		if f.Func == "" || f.File == "" || f.PC == 0 || f.Line == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        } else if (stack_traces_.contains(debug_info_key)) {
          stack_trace = stack_traces_.at(debug_info_key);
        } else {
          DVLOG(1) << "No stack trace for " << node.name();
        }
    
        llvm::SmallVector<mlir::Location, 4> locations;
    
        if (stack_trace != nullptr) {
          DVLOG(1) << "Stack available for " << node.name();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/static/trace_viewer_full.html

    let hasName=false;let hasTitle=false;table.tableRows=stackFrame.stackTrace;table.tableRows.forEach(function(row){hasName|=row.name...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
  4. src/internal/trace/traceviewer/emitter.go

    			// Same should be applied to splittingTraceConsumer.
    			written++
    		},
    		ConsumeViewerFrame: func(k string, v format.Frame) {
    			allFrames[k] = v
    		},
    		Flush: func() {
    			io.WriteString(w, `], "stackFrames":`)
    			enc.Encode(requiredFrames)
    			io.WriteString(w, `}`)
    		},
    	}
    }
    
    func SplittingTraceConsumer(max int) (*splitter, TraceConsumer) {
    	type eventSz struct {
    		Time   float64
    		Sz     int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_function_test.cc

      TF_Operation* feed = Placeholder(func_graph.get(), s.get());
      TF_Operation* neg = Neg(feed, func_graph.get(), s.get());
    
      std::vector<StackFrame> feed_frames = {{"feed.cc", 10, "alpha"}};
      std::vector<StackFrame> neg_frames = {{"neg.cc", 15, "beta"}};
      feed->node.SetStackTrace(std::make_shared<FrozenStackTrace>(feed_frames));
      neg->node.SetStackTrace(std::make_shared<FrozenStackTrace>(neg_frames));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/canonicalize.mlir

      %2 = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
      %3 = "tf.Const"() {value = dense<2> : tensor<i32>} : () -> tensor<i32>
      %4 = "tf.StackV2"(%3) {elem_type = f32, stack_name = "s"} : (tensor<i32>) -> tensor<!tf_type.resource>
      %5:5 = "tfl.while"(%2, %3, %2, %4, %0) ({
      ^bb0(%arg1: tensor<i32>, %arg2: tensor<i32>, %arg3: tensor<i32>, %arg4: tensor<!tf_type.resource>, %arg5: tensor<f32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm/obj5.go

    			p.From.Offset = int64(autosize)
    			p.From.Reg = REGSP
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = REGPC
    
    			// If there are instructions following
    			// this ARET, they come from a branch
    			// with the same stackframe, so no spadj.
    
    			if p.To.Sym != nil { // retjmp
    				p.To.Reg = REGLINK
    				q2 = obj.Appendp(p, newprog)
    				q2.As = AB
    				q2.To.Type = obj.TYPE_BRANCH
    				q2.To.Sym = p.To.Sym
    				p.To.Sym = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

    func.func @ignore_stack_ops(%arg0: tensor<i32>) -> () {
      "tf_device.cluster"() ({
        // CHECK: "tf.StackV2"
        // CHECK-NOT: _xla_outside_compilation
        %0 = "tf.StackV2"(%arg0) {elem_type = f32, stack_name = "s"} : (tensor<i32>) -> tensor<!tf_type.resource>
        tf_device.return
      }) {allow_soft_placement = true, num_cores_per_replica = 1, topology =  "", device_assignment =  []} : () -> ()
      func.return
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 16:22:32 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/obj6.go

    				p = obj.Appendp(p, newprog)
    			}
    
    			p.As = obj.ARET
    			p.To = to
    
    			// If there are instructions following
    			// this ARET, they come from a branch
    			// with the same stackframe, so undo
    			// the cleanup.
    			p.Spadj = +autoffset
    		}
    
    		if p.To.Sym != nil { // retjmp
    			p.As = obj.AJMP
    		}
    	}
    }
    
    func isZeroArgRuntimeCall(s *obj.LSym) bool {
    	if s == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

        // expected-remark@above {{Successors: {6}}}
            %stack_handle1 = "tf.StackV2"(%arg0) {elem_type = f32, stack_name = "s"} : (tensor<i32>) -> tensor<!tf_type.resource>
            // expected-remark@above {{ID: 0}}
            %stack_handle2 = "tf.StackV2"(%arg0) {elem_type = f32, stack_name = "s"} : (tensor<i32>) -> tensor<!tf_type.resource>
            // expected-remark@above {{ID: 1}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
Back to top