Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isSelect (0.29 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      }
    };
    
    using ConvertMaxPool2DOp = ConvertMaxPoolOp<TF::MaxPoolOp, /*num_dims=*/4>;
    using ConvertMaxPool3DOp = ConvertMaxPoolOp<TF::MaxPool3DOp, /*num_dims=*/5>;
    
    // Converts tf.Select (SelectV1) to mhlo.select. It has optional broadcasting on
    // the condition only.
    class ConvertSelectOp : public OpRewritePattern<TF::SelectOp> {
     public:
      using OpRewritePattern::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    			// and that muddles the debugging experience.
    			if b.Pos == src.NoXPos {
    				b.Pos = bCond.Pos
    			}
    		}
    
    		s.startBlock(bEnd)
    
    	case ir.OSWITCH, ir.OSELECT:
    		// These have been mostly rewritten by the front end into their Nbody fields.
    		// Our main task is to correctly hook up any break statements.
    		bEnd := s.f.NewBlock(ssa.BlockPlain)
    
    		prevBreak := s.breakTo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top