Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 251 for lhs0 (0.04 sec)

  1. src/cmd/compile/internal/types2/decl.go

    		return
    	}
    
    	if debug {
    		// obj must be one of lhs
    		found := false
    		for _, lhs := range lhs {
    			if obj == lhs {
    				found = true
    				break
    			}
    		}
    		if !found {
    			panic("inconsistent lhs")
    		}
    	}
    
    	// We have multiple variables on the lhs and one init expr.
    	// Make sure all variables have been given the same type if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  2. src/go/types/decl.go

    				check.declare(check.scope, name, lhs[i], scopePos)
    			}
    
    		case varDecl:
    			top := len(check.delayed)
    
    			lhs0 := make([]*Var, len(d.spec.Names))
    			for i, name := range d.spec.Names {
    				lhs0[i] = NewVar(name.Pos(), pkg, name.Name, nil)
    			}
    
    			// initialize all variables
    			for i, obj := range lhs0 {
    				var lhs []*Var
    				var init ast.Expr
    				switch len(d.spec.Values) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tests/bridge/convert_tf_quant_ops_to_mhlo.mlir

      // CHECK-DAG: %[[LHS:.*]] = mhlo.uniform_quantize %arg0 : (tensor<3x2xf32>) -> tensor<3x2x!quant.uniform<i32:f32, 2.000000e+00:4>>
      // CHECK-DAG: %[[LHS1:.*]] = mhlo.bitcast_convert %[[LHS]] : (tensor<3x2x!quant.uniform<i32:f32, 2.000000e+00:4>>) -> tensor<3x2xi32>
      // CHECK-DAG: %[[LHS2:.*]] = mhlo.bitcast_convert %[[LHS1]] : (tensor<3x2xi32>) -> tensor<3x2x!quant.uniform<i32:f32, 2.000000e+00:4>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    // Hoist coefficient-wise binary operation out of the Concat op:
    //
    //   %0 = tf.Mul(%lhs_0, %rhs_0)
    //   %1 = tf.Mul(%lhs_1, %rhs_1)
    //   ...
    //   %n = tf.Mul(%lhs_n, %rhs_n)
    //   %m = tf.ConcatV2(%0, %1, ..., %n, %axis)
    //
    // Rewrite it to:
    //
    //   %0 = tf.ConcatV2(%lhs0, %lhs1, ..., %lhs_n, %lhs_concat_axis)
    //   %1 = tf.ConcatV2(%rhs0, %rhs1, ..., %rhs_n, %rhs_concat_axis)
    //   %2 = tf.Mul(%0, %1)
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/assignments.go

    	// If the lhs doesn't have a type yet, use the type of x.
    	if lhs.typ == nil {
    		lhs.typ = x.typ
    	}
    
    	check.assignment(x, lhs.typ, "constant declaration")
    	if x.mode == invalid {
    		return
    	}
    
    	lhs.val = x.val
    }
    
    // initVar checks the initialization lhs = x in a variable declaration.
    // If lhs doesn't have a type yet, it is given the type of x,
    // or Typ[Invalid] in case of an error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. src/go/types/assignments.go

    	// If the lhs doesn't have a type yet, use the type of x.
    	if lhs.typ == nil {
    		lhs.typ = x.typ
    	}
    
    	check.assignment(x, lhs.typ, "constant declaration")
    	if x.mode == invalid {
    		return
    	}
    
    	lhs.val = x.val
    }
    
    // initVar checks the initialization lhs = x in a variable declaration.
    // If lhs doesn't have a type yet, it is given the type of x,
    // or Typ[Invalid] in case of an error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.td

        DefaultValuedOptionalAttr<I64Attr, "127">:$output_quantization_max_val
      );
    
      let results = (outs
        TensorOf<[TF_Qint32]>:$output
      );
    
      TF_DerivedOperandTypeAttr LhsT = TF_DerivedOperandTypeAttr<0>;
      TF_DerivedOperandTypeAttr RhsT = TF_DerivedOperandTypeAttr<1>;
      TF_DerivedResultTypeAttr Tout = TF_DerivedResultTypeAttr<0>;
    }
    
    def TF_CustomAggregatorOp : TF_Op<"CustomAggregator", [Pure]> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/objectGraph/AssignmentTrace.kt

                            is AssignmentResolver.AssignmentAdditionResult.UnresolvedValueUsedInRhs -> UnassignedValueUsed(additionResult, lhs, rhs)
                            is AssignmentResolver.AssignmentAdditionResult.Reassignment -> AssignmentTraceElement.Reassignment(additionResult, lhs, rhs)
                        }
                    )
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 19 16:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/client_ca_test.go

    	tests := []struct {
    		name     string
    		lhs      *dynamicCertificateContent
    		rhs      *dynamicCertificateContent
    		expected bool
    	}{
    		{
    			name:     "both nil",
    			expected: true,
    		},
    		{
    			name:     "lhs nil",
    			rhs:      &dynamicCertificateContent{},
    			expected: false,
    		},
    		{
    			name:     "rhs nil",
    			lhs:      &dynamicCertificateContent{},
    			expected: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 17 13:37:16 UTC 2019
    - 3.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions_fusion.td

    def LiftDotGeneralWithBiasSameShape : Pat<
      (StableHLO_AddOp:$res
        (StableHLO_DotGeneralOp
            $lhs, $rhs, $dot_dimension_numbers, $precision_config),
        $bias),
      (LiftAsTFXlaCallModule<"composite_dot_general_with_bias_same_shape_fn">
        (ArgumentList $lhs, $rhs, $bias),
        (ResultList $res),
        (NamedAttributeList
          (NamedAttr<"dot_dimension_numbers"> $dot_dimension_numbers),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top