Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HandleIf (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

        }
        if (changed) {
          rewriter.finalizeOpModification(f);
          return success();
        } else {
          rewriter.cancelOpModification(f);
          return failure();
        }
      }
    };
    
    class HandleIf : public OpRewritePattern<TF::IfOp> {
      // Optional-agnostic pattern that propagates types across the program.
      using OpRewritePattern::OpRewritePattern;
    
      LogicalResult adjustBranch(TF::IfOp ifop, func::FuncOp branch,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. src/runtime/export_debug_test.go

    	h.gp = gp
    	// gp may not be running right now, but we can still get the M
    	// it will run on since it's locked.
    	h.mp = gp.lockedm.ptr()
    	h.fv, h.regArgs, h.argp, h.argSize = fv, regArgs, argp, argSize
    	h.handleF = h.handle // Avoid allocating closure during signal
    
    	defer func() { testSigtrap = nil }()
    	for i := 0; ; i++ {
    		testSigtrap = h.inject
    		noteclear(&h.done)
    		h.err = ""
    
    		if err := tkill(tid); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top