Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for newop (0.13 sec)

  1. pkg/proxy/iptables/proxier_test.go

    		} else {
    			for i := range expected[x] {
    				newEp := newMap[x][i]
    				if newEp.String() != expected[x][i].endpoint ||
    					newEp.IsLocal() != expected[x][i].isLocal {
    					t.Errorf("[%d] expected new[%v][%d] to be %v, got %v", tci, x, i, expected[x][i], newEp)
    				}
    			}
    		}
    	}
    }
    
    func TestUpdateEndpointsMap(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		n := n.(*ir.UnaryExpr)
    		a := s.expr(n.X)
    		if n.Type().IsComplex() {
    			tp := types.FloatForComplex(n.Type())
    			negop := s.ssaOp(n.Op(), tp)
    			return s.newValue2(ssa.OpComplexMake, n.Type(),
    				s.newValue1(negop, tp, s.newValue1(ssa.OpComplexReal, tp, a)),
    				s.newValue1(negop, tp, s.newValue1(ssa.OpComplexImag, tp, a)))
    		}
    		return s.newValue1(s.ssaOp(n.Op(), n.Type()), a.Type, a)
    	case ir.ONOT, ir.OBITNOT:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        //  move downwards towards the subdiagonals. So the start indices will
        //  be decreasing.)
        Value d = rewriter.create<SubtractOp>(loc, b_k1, iotaM);
        Value neg_d = rewriter.create<NegOp>(loc, d);
    
        // diag_len_d = min(rows + min(d, 0), cols - max(d, 0))
        // (Length of a diagonal for a given d. Same as max_diag_len for m = 0.)
        Value diag_len_d = rewriter.create<MinOp>(
            loc,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top