Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for rhs (0.06 sec)

  1. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeMul : Pat<(TF_MulOp $lhs, $rhs),
                          (TFL_MulOp $lhs, $rhs, TFL_AF_None)>;
    def LegalizeRealDiv : Pat<(TF_RealDivOp $lhs, $rhs),
                              (TFL_DivOp $lhs, $rhs, TFL_AF_None)>;
    def LegalizeDiv : Pat<(TF_DivOp $lhs, $rhs),
                          (TFL_DivOp $lhs, $rhs, TFL_AF_None)>;
    
    // When batch size is known, TF BatchMatMul gets unfolded to TFL FullyConnected
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    //===----------------------------------------------------------------------===//
    
    // 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. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

        public int compare(@Nullable String lhs, @Nullable String rhs) {
          if (lhs == rhs) {
            return 0;
          }
          if (lhs == null) {
            // lhs (null) comes just before justAfterNull.
            // If rhs is b, lhs comes first.
            if (rhs.equals(justAfterNull)) {
              return -1;
            }
            return justAfterNull.compareTo(rhs);
          }
          if (rhs == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/Helpers.java

        public int compare(@Nullable String lhs, @Nullable String rhs) {
          if (lhs == rhs) {
            return 0;
          }
          if (lhs == null) {
            // lhs (null) comes just before justAfterNull.
            // If rhs is b, lhs comes first.
            if (rhs.equals(justAfterNull)) {
              return -1;
            }
            return justAfterNull.compareTo(rhs);
          }
          if (rhs == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        "StringAttr":$fusedActivationFunction),
      [{
        buildFusedBroadcastableBinOp(
           &$_builder, $_state, lhs, rhs, fusedActivationFunction);
      }]>;
    
    def TFL_ComparisonBinaryBuilder :
      OpBuilder<(ins "Value":$lhs, "Value":$rhs),
      [{
        buildComparisonBinOp(&$_builder, $_state, lhs, rhs);
      }]>;
    
    //===----------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api.go

    // expression.
    type Initializer struct {
    	Lhs []*Var // var Lhs = Rhs
    	Rhs syntax.Expr
    }
    
    func (init *Initializer) String() string {
    	var buf strings.Builder
    	for i, lhs := range init.Lhs {
    		if i > 0 {
    			buf.WriteString(", ")
    		}
    		buf.WriteString(lhs.Name())
    	}
    	buf.WriteString(" = ")
    	syntax.Fprint(&buf, init.Rhs, syntax.ShortForm)
    	return buf.String()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    	if types.Identical(want, got) {
    		return true
    	}
    	// Code segment to help check for untyped equality from (golang/go#32146).
    	if rhs, ok := want.(*types.Basic); ok && rhs.Info()&types.IsUntyped > 0 {
    		if lhs, ok := got.Underlying().(*types.Basic); ok {
    			return rhs.Info()&types.IsConstType == lhs.Info()&types.IsConstType
    		}
    	}
    	return types.AssignableTo(want, got)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    		}
    	})
    	return nil, nil
    }
    
    // checkCopyLocksAssign checks whether an assignment
    // copies a lock.
    func checkCopyLocksAssign(pass *analysis.Pass, as *ast.AssignStmt) {
    	for i, x := range as.Rhs {
    		if path := lockPathRhs(pass, x); path != nil {
    			pass.ReportRangef(x, "assignment copies lock value to %v: %v", analysisutil.Format(pass.Fset, as.Lhs[i]), path)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. schema/naming.go

    }
    
    var (
    	// https://github.com/golang/lint/blob/master/lint.go#L770
    	commonInitialisms         = []string{"API", "ASCII", "CPU", "CSS", "DNS", "EOF", "GUID", "HTML", "HTTP", "HTTPS", "ID", "IP", "JSON", "LHS", "QPS", "RAM", "RHS", "RPC", "SLA", "SMTP", "SSH", "TLS", "TTL", "UID", "UI", "UUID", "URI", "URL", "UTF8", "VM", "XML", "XSRF", "XSS"}
    	commonInitialismsReplacer *strings.Replacer
    )
    
    func init() {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    //
    // In case of inconsistencies (rank disagreement for example), it returns `lhs`.
    Type TypeMeet(Type lhs, Type rhs) {
      DCOMMENT("RefineTypeWith : " << lhs << " : " << rhs);
      if (lhs == rhs) return lhs;
    
      auto rhs_shape_type = mlir::dyn_cast<ShapedType>(rhs);
      if (!rhs_shape_type) return lhs;
      auto lhs_shape_type = mlir::cast<ShapedType>(lhs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top