Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 251 for lhs0 (0.04 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/defer_activation_transpose.cc

          input.getLoc(), input, rewriter.getDenseI64ArrayAttr(permutation));
    }
    
    // Defers the transpose of the left-hand side (LHS) to the right-hand side and
    // the result of a binary operation. In detail, this rewrites the
    // `op(transpose(%rhs), %lhs)` to `transpose(op(%rhs, transpose(%lhs)))`. The
    // LHS transpose permutation must be a NCHW->NHWC permutation.
    template <typename OpT>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. guava-tests/benchmark/com/google/common/base/AsciiBenchmark.java

        String lhs = testString;
        String rhs = testString.toUpperCase();
    
        boolean dummy = false;
        for (int i = 0; i < reps; i++) {
          dummy ^= Ascii.equalsIgnoreCase(lhs, rhs);
        }
        return dummy;
      }
    
      @Benchmark
      boolean equalsIgnoreCaseJDK(int reps) {
        // This benchmark has no concept of "noWorkToDo".
        String lhs = testString;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

                        lhs = PropertyAccess [indexes: 0..1, line/column: 1/1..1/2, file: test] (
                            name = a
                        )
                        rhs = IntLiteral [indexes: 4..5, line/column: 1/5..1/6, file: test] (1)
                    )
                    Assignment [indexes: 6..16, line/column: 2/1..2/11, file: test] (
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleDependency.java

        }
    
        private static boolean scopeEquals(String lhs, String rhs) {
            if ("COMPILE".equals(lhs)) {
                return Strings.isNullOrEmpty(rhs) || "COMPILE".equals(rhs);
            } else if ("COMPILE".equals(rhs)) {
                return Strings.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
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoUtils.kt

                        is AssignmentResolver.AssignmentAdditionResult.UnresolvedValueUsedInRhs -> "rhs: ${result.value}"
                    }
                    println("${element.lhs} !:= ${element.rhs} -- unassigned property in $locationString")
                }
                is AssignmentTraceElement.Reassignment -> {
                    println("${element.lhs} !:= ${element.rhs} -- reassignment")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/util/BinaryDiffUtils.groovy

                Splitter.fixedLength(2).split(line).join(" ")
            }
        }
    
        public static int levenshteinDistance(byte[] lhs, byte[] rhs) {
            int len0 = lhs.length + 1;
            int len1 = rhs.length + 1;
    
            // the array of distances
            int[] cost = new int[len0];
            int[] newcost = new int[len0];
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 14 11:47:34 UTC 2016
    - 2.4K bytes
    - Viewed (0)
Back to top