Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for stack_frame (0.34 sec)

  1. tensorflow/compiler/jit/deadness_analysis.cc

      ~PredicateFactory() {
        DCHECK_EQ(stack_depth_, 0) << "Unnested IncrementStackDepth?";
      }
    
     private:
      Predicate* MakeNotPredicateImpl(Predicate* pred) {
        IncrementStackDepth stack_frame(this);
        if (!stack_frame.HasOverflowed()) {
          if (Predicate* simplified = SimplifyUsingDeMorgan(pred)) {
            return simplified;
          }
    
          // ~~A => A
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/compilability_check_util.h

          const Node& node, FunctionLibraryRuntime* lib_runtime,
          const std::vector<StackFrame>* node_stack_trace = nullptr) const;
    
      // Returns true if `node` can be compiled by XLA.
      bool IsCompilableNode(const Node& node,
                            FunctionLibraryRuntime* lib_runtime) const {
        std::vector<StackFrameView> stack_trace;
        stack_trace.emplace_back(StackFrameView{node.name(), ""});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/compilability_check_util.cc

        for (const auto& frame : *node_stack_trace) {
          stack_trace.emplace_back(
              StackFrameView{frame.name, frame.function_name, frame.stack_trace});
        }
      }
      stack_trace.emplace_back(
          StackFrameView{node.name(), "", node.GetStackTrace()});
    
      RecursiveCompilabilityChecker::UncompilableNodesMap uncompilable_nodes;
      IsCompilableNode(node, lib_runtime, &stack_trace,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/StacktraceIntegrationTest.groovy

            if (cause != null) {
                failure.assertHasCause(cause)
            }
            failure.assertHasDescription(description)
            failure.assertHasErrorOutput('Exception is:')
            failure.assertHasErrorOutput(stackFrame)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/stack_ops_decomposition.mlir

    func.func @main(%arg0: tensor<i1>) -> () {
      %max_size = "tf.Const"() {value = dense<10> : tensor<i32>} : () -> tensor<i32>
      %stack = "tf.StackV2"(%max_size) {elem_type = f32, stack_name = "s"} : (tensor<i32>) -> tensor<!tf_type.resource>
      %stack2 = "tf.StackV2"(%max_size) {elem_type = f32, stack_name = "s2"} : (tensor<i32>) -> tensor<!tf_type.resource>
      %if_op = "tf.If"(%arg0, %stack, %stack2) {then_branch = @if_then, else_branch = @if_else, is_stateless = false}
    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/internal/trace/internal/testgen/go122/trace.go

    		}
    	}
    	return raw.Event{
    		Version: version.Go122,
    		Ev:      ev,
    		Args:    args,
    		Data:    data,
    	}
    }
    
    type stack struct {
    	stk [32]trace.StackFrame
    	len int
    }
    
    var (
    	NoString = ""
    	NoStack  = []trace.StackFrame{}
    )
    
    // Generation represents a single generation in the trace.
    type Generation struct {
    	trace   *Trace
    	gen     uint64
    	batches []*Batch
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/compilability_check_util_test.cc

      EXPECT_TRUE(absl::StrContains(uncompilable_node_info.uncompilable_reason,
                                    "unsupported op"));
      ASSERT_EQ(1, uncompilable_node_info.stack_trace.size());
      ASSERT_EQ("", uncompilable_node_info.stack_trace.at(0).function_name);
    }
    
    TEST_F(CompilabilityCheckUtilTest, CheckOutsideCompiledNode) {
      GraphDefBuilder builder(GraphDefBuilder::kFailImmediately);
      auto opts = builder.opts();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock/fake.go

    			if isMine {
    				boundary = 2
    			}
    			callers = append(callers, stackFrame{file: fileParts[len(fileParts)-1], line: frame.Line})
    			if i >= boundary && !isMine {
    				break
    			}
    		}
    		klogV.InfoS("Add", "counter", fmt.Sprintf("%p", wgc), "delta", delta, "callers", callers)
    	}
    	wgc.wg.Add(delta)
    }
    
    type stackExcerpt []stackFrame
    
    type stackFrame struct {
    	file string
    	line int
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  9. src/cmd/trace/viewer.go

    // used to store the frames to reduce allocations.
    func viewerFrames(stk trace.Stack) []*trace.Frame {
    	var frames []*trace.Frame
    	stk.Frames(func(f trace.StackFrame) bool {
    		frames = append(frames, &trace.Frame{
    			PC:   f.PC,
    			Fn:   f.Func,
    			File: f.File,
    			Line: int(f.Line),
    		})
    		return true
    	})
    	return frames
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/trace/regions.go

    type regionFingerprint struct {
    	Frame trace.StackFrame
    	Type  string
    }
    
    func fingerprintRegion(r *trace.UserRegionSummary) regionFingerprint {
    	return regionFingerprint{
    		Frame: regionTopStackFrame(r),
    		Type:  r.Name,
    	}
    }
    
    func regionTopStackFrame(r *trace.UserRegionSummary) trace.StackFrame {
    	var frame trace.StackFrame
    	if r.Start != nil && r.Start.Stack() != trace.NoStack {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top