Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 167 for lhs0 (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/resource_dataflow.cc

    }
    
    ResourceConstructingOps ResourceConstructingOps::join(
        const ResourceConstructingOps &lhs, const ResourceConstructingOps &rhs) {
      // Take union of both sets of possible GlobalTensorOp values that can be
      // referenced here.
      ResourceConstructingOps ret;
      ret.ops.insert(lhs.ops.begin(), lhs.ops.end());
      ret.ops.insert(rhs.ops.begin(), rhs.ops.end());
      return ret;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/objectGraph/AssignmentResolver.kt

            }
    
            return buildMap {
                assignmentByNode.forEach { (lhs, _) ->
                    put(lhs.propertyReferenceResolution, run {
                        when (val result = get(lhs)) {
                            is ResolutionNode.PrimitiveValue -> {
                                val assignmentMethod = assignmentMethodByProperty.getValue(lhs)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoSimple/AssignmentResolverTest.kt

                    str = c1.d.id
                    """.trimIndent()
                )
            ).run {
                val strAssignment = elements.find { it.lhs.property.name == "str" }
                assertIs<AssignmentTraceElement.RecordedAssignment>(strAssignment)
                val value = resolvedAssignments[strAssignment.lhs]
                assertIs<AssignmentResolver.AssignmentResolutionResult.Assigned>(value)
                val valueOrigin = value.objectOrigin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:53:44 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/fold_broadcast_pass.cc

      auto rhs_op = op->getRhs().template getDefiningOp<mhlo::ConstantOp>();
      if (!lhs_op || !lhs_op) return {};
    
      auto lhs = dyn_cast_or_null<DenseElementsAttr>(lhs_op.getValue());
      auto rhs = dyn_cast_or_null<DenseElementsAttr>(rhs_op.getValue());
      if (!lhs || !rhs) return {};
    
      ShapedType type = mlir::cast<ShapedType>(op->getType());
      if (!type.hasStaticShape()) {
        return {};
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    		RequestHeaderUsernameHeaders:     combineUniqueStringSlices(lhs.RequestHeaderUsernameHeaders, rhs.RequestHeaderUsernameHeaders),
    	}
    
    	var err error
    	ret.ClientCA, err = combineCertLists(lhs.ClientCA, rhs.ClientCA)
    	if err != nil {
    		return ClusterAuthenticationInfo{}, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/staticinit/sched.go

    		}
    		lhs, rhs = n.Lhs, n.Rhs[0]
    	case ir.OCALLFUNC:
    		return false // outlined map init call; no mutations
    	}
    
    	if !s.seenMutation {
    		s.seenMutation = mayModifyPkgVar(rhs)
    	}
    
    	if allBlank(lhs) && !AnySideEffects(rhs) {
    		return true // discard
    	}
    
    	// Only worry about simple "l = r" assignments. The OAS2*
    	// assignments mostly necessitate dynamic execution anyway.
    	if len(lhs) > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleLibrary.java

        }
    
        private static boolean scopeEquals(String lhs, String rhs) {
            if ("COMPILE".equals(lhs)) {
                return isNullOrEmpty(rhs) || "COMPILE".equals(rhs);
            } else if ("COMPILE".equals(rhs)) {
                return isNullOrEmpty(lhs);
            } else {
                return Objects.equal(lhs, rhs);
            }
        }
    
        @Override
        public int hashCode() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.cc

      auto scalar_add = [&](Value lhs, Value rhs) {
        return builder.create<TF::AddOp>(loc, int32_scalar_type, lhs, rhs);
      };
      auto scalar_mul = [&](Value lhs, Value rhs) {
        return builder.create<TF::MulOp>(loc, int32_scalar_type, lhs, rhs);
      };
      auto scalar_sub = [&](Value lhs, Value rhs) {
        return builder.create<TF::SubOp>(loc, int32_scalar_type, lhs, rhs);
      };
      auto scalar_div = [&](Value lhs, Value rhs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionApplicationHandler.kt

            referencedSoftwareTypes.flatMap { softwareType ->
                softwareType.assignments.map { assignmentRecord ->
                    assignmentRecord.copy(
                        lhs = assignmentRecord.lhs.copy(receiverObject = transfer(assignmentRecord.lhs.receiverObject)),
                        rhs = transfer(assignmentRecord.rhs)
                    )
                }
            }
    
        fun applyAdditionConventions(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. src/net/netip/slow_test.go

    	fs := strings.Split(s, "::")
    	switch len(fs) {
    	case 1:
    		// No ::, nothing to do.
    	case 2:
    		lhs, rhs := fs[0], fs[1]
    		// Found a ::, figure out how many zero blocks need to be
    		// inserted.
    		nblocks := strings.Count(lhs, ":") + strings.Count(rhs, ":")
    		if lhs != "" {
    			nblocks++
    		}
    		if rhs != "" {
    			nblocks++
    		}
    		if nblocks > 7 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top