Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for lhs0 (0.23 sec)

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

        (BinaryOp (TFL_ReshapeOp:$lhs $input, (Arith_ConstantOp:$shape $s)),
                  $rhs, $act_fn),
        (BinaryOp $input, $rhs, $act_fn),
        [(AnyStaticShapeTensor $input),
         (AnyStaticShapeTensor $rhs),
         (IsRankLessThanEqualTo $input, $lhs),
         (IsRankLessThanEqualTo $lhs, $rhs),
         (IsReducedTailOfShape $lhs, $input),
         (HasOneUseOrUsedByOnlyBinaryOps $lhs),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser.go

    		switch p.tok {
    		case _AssignOp:
    			// lhs op= rhs
    			op := p.op
    			p.next()
    			return p.newAssignStmt(pos, op, lhs, p.expr())
    
    		case _IncOp:
    			// lhs++ or lhs--
    			op := p.op
    			p.next()
    			return p.newAssignStmt(pos, op, lhs, nil)
    
    		case _Arrow:
    			// lhs <- rhs
    			s := new(SendStmt)
    			s.pos = pos
    			p.next()
    			s.Chan = lhs
    			s.Value = p.expr()
    			return s
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  3. src/go/types/expr.go

    ensures that a client sees the actual (run-time) type an untyped value would
    have. It also permits type-checking of lhs shift operands "as if the shift
    were not present": when updateExprType visits an untyped lhs shift operand
    and assigns it it's final type, that type must be an integer type, and a
    constant lhs must be representable as an integer.
    
    When an expression gets its final type, either on the way out from rawExpr,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/expr.go

    ensures that a client sees the actual (run-time) type an untyped value would
    have. It also permits type-checking of lhs shift operands "as if the shift
    were not present": when updateExprType visits an untyped lhs shift operand
    and assigns it it's final type, that type must be an integer type, and a
    constant lhs must be representable as an integer.
    
    When an expression gets its final type, either on the way out from rawExpr,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

         * find the containing binary expression and resolve that instead.
         *
         * However, if, say, `+=` resolves to `plusAssign`, then the LHS is self-contained. In this case we do not return the containing binary
         * expression so that the FIR element corresponding to the LHS is used directly.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

            op.getLoc(), /*resultType0=*/
            mlir::cast<TensorType>(op.getResult().getType())
                .clone(output_uniform_quantized_type),
            /*lhs=*/op.getLhs(), /*rhs=*/op.getRhs(),
            /*dot_dimension_numbers=*/op.getDotDimensionNumbers(),
            /*precision_config=*/op.getPrecisionConfigAttr());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

          return errors::FailedPrecondition(
              "Cluster names mismatch: lhs: ", lhs_cluster_name,
              " rhs: ", rhs_cluster_name);
        }
    
        if (lhs_cluster_name_parts[2] == rhs_cluster_name_parts[2]) {
          return errors::FailedPrecondition(
              "cluster sequence numbers are the same: lhs: ", lhs_cluster_name,
              " rhs: ", rhs_cluster_name);
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				}))),
    			}),
    			expectCost: map[string]int64{
    				"self.objs[0] == self.objs[1]":                7,  // equal even though order is different
    				"self.objs[0] + self.objs[2] == self.objs[2]": 11, // rhs overwrites lhs values
    				"self.objs[2] + self.objs[0] == self.objs[0]": 11,
    
    				"self.objs[0] == [self.objs[0][0], self.objs[0][1]]": 22, // equal against a declared list
    				"self.objs[0] == [self.objs[0][1], self.objs[0][0]]": 22,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

                                             RawType expected,
                                             RawType actual) {
      const FloatingPoint<RawType> lhs(expected), rhs(actual);
    
      if (lhs.AlmostEquals(rhs)) {
        return AssertionSuccess();
      }
    
      ::std::stringstream expected_ss;
      expected_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/api_test.go

    			"c = 0", "d = 0", "b = d + c", "e = 0", "a = e + c",
    		}},
    		// emit an initializer for n:1 initializations only once (not for each node
    		// on the lhs which may appear in different order in the dependency graph)
    		{`package p12; var (a = x; b = 0; x, y = m[0]; m map[int]int)`, []string{
    			"b = 0", "x, y = m[0]", "a = x",
    		}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
Back to top