Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 226 for lhs0 (0.05 sec)

  1. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/descriptor/internal/DefaultEarModuleTest.groovy

    import spock.lang.Specification
    
    class DefaultEarModuleTest extends Specification {
    
        def "equals works correctly"(lhs, rhs, equals) {
    
            expect:
            lhs.equals(rhs) == equals
            rhs.equals(lhs) == equals
    
            where:
            lhs || rhs || equals
            new DefaultEarModule("some.jar") | new DefaultEarModule("some-other.jar") | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    // Rsqrt op patterns.
    //===----------------------------------------------------------------------===//
    
    // RsqrtGrad(lhs, rhs) = (lhs * lhs * lhs) * (rhs / -2)
    def LowerRsqrtGradOp : Pat<
      (TF_RsqrtGradOp $lhs, $rhs),
      (TF_MulOp
        (TF_MulOp
          (TF_MulOp $lhs, $lhs),
          $lhs
        ),
        (TF_DivOp
          $rhs,
          (TF_ConstOp
            (GetScalarOfType<-2> $rhs)
          )
        )
      )>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/order.go

    // effects to o.out as needed.
    // If this is part of an assignment lhs = *np, lhs is given.
    // Otherwise lhs == nil. (When lhs != nil it may be possible
    // to avoid copying the result of the expression to a temporary.)
    // The result of expr MUST be assigned back to n, e.g.
    //
    //	n.Left = o.expr(n.Left, lhs)
    func (o *orderState) expr(n, lhs ir.Node) ir.Node {
    	if n == nil {
    		return n
    	}
    	lno := ir.SetPos(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/ConstructorComparator.java

                long lhs = 0;
                for (Class<?> paramType : o1.getParameterTypes()) {
                    lhs += paramType.getCanonicalName().hashCode();
                }
                long rhs=0;
                for (Class<?> paramType : o2.getParameterTypes()) {
                    rhs += paramType.getCanonicalName().hashCode();
                }
                return Long.compare(lhs, rhs);
            }
            return parameterSort;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/go/parser/resolver.go

    		}
    		ast.Walk(r, n.Body)
    
    	case *ast.RangeStmt:
    		r.openScope(n.Pos())
    		defer r.closeScope()
    		ast.Walk(r, n.X)
    		var lhs []ast.Expr
    		if n.Key != nil {
    			lhs = append(lhs, n.Key)
    		}
    		if n.Value != nil {
    			lhs = append(lhs, n.Value)
    		}
    		if len(lhs) > 0 {
    			if n.Tok == token.DEFINE {
    				// Note: we can't exactly match the behavior of object resolution
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/atomic/atomic.go

    	nodeFilter := []ast.Node{
    		(*ast.AssignStmt)(nil),
    	}
    	inspect.Preorder(nodeFilter, func(node ast.Node) {
    		n := node.(*ast.AssignStmt)
    		if len(n.Lhs) != len(n.Rhs) {
    			return
    		}
    		if len(n.Lhs) == 1 && n.Tok == token.DEFINE {
    			return
    		}
    
    		for i, right := range n.Rhs {
    			call, ok := right.(*ast.CallExpr)
    			if !ok {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

        auto lhs = op->getOperand(0);
        auto rhs = op->getOperand(1);
        auto out = op->getResult(0);
    
        // Calculates symbolic broadcast shape that is only used in types.
        SmallVector<int64_t, 4> symbolic_broadcast_shape;
        // Matches fail when lhs or rhs is unranked tensor.
        // TODO(b/176202543): Support unranked tensor.
        if (!mlir::cast<ShapedType>(lhs.getType()).hasRank() ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/nodes.go

    		Full bool
    		expr
    	}
    
    	// X.(Type)
    	AssertExpr struct {
    		X    Expr
    		Type Expr
    		expr
    	}
    
    	// X.(type)
    	// Lhs := X.(type)
    	TypeSwitchGuard struct {
    		Lhs *Name // nil means no Lhs :=
    		X   Expr  // X.(type)
    		expr
    	}
    
    	Operation struct {
    		Op   Operator
    		X, Y Expr // Y == nil means unary expression
    		expr
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/device_target.h

          return llvm::hash_combine_range(val.begin(), val.end());
        }
        static bool isEqual(Signature LHS, Signature RHS) {
          if (RHS == getEmptyKey()) return LHS == getEmptyKey();
          if (RHS == getTombstoneKey()) return LHS == getTombstoneKey();
          if (LHS.size() != RHS.size()) return false;
          for (auto arg : llvm::zip(LHS, RHS)) {
            if (std::get<0>(arg) != std::get<1>(arg)) return false;
          }
          return true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. src/go/printer/testdata/parser.go

    				// RecvStmt with assignment
    				if len(lhs) > 2 {
    					p.errorExpected(lhs[0].Pos(), "1 or 2 expressions")
    					// continue with first two expressions
    					lhs = lhs[0:2]
    				}
    				p.next()
    				rhs = p.parseRhs()
    			} else {
    				// rhs must be single receive operation
    				if len(lhs) > 1 {
    					p.errorExpected(lhs[0].Pos(), "1 expression")
    					// continue with first expression
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
Back to top