Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 93 for zipsum (0.17 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composite_functions.mlir

    // CHECK: Number of dequantize layers added: 1
    }
    
    
    // -----
    
    module {
      func.func @float_einsum(%arg0: tensor<?x64x32xf32>, %arg1: tensor<32x2x16xf32>) -> (tensor<?x64x2x16xf32>) {
        %0 = "tf.Einsum"(%arg0, %arg1) {equation = "abc,cde->abde"} : (tensor<?x64x32xf32>, tensor<32x2x16xf32>) -> tensor<?x64x2x16xf32>
        func.return %0 : tensor<?x64x2x16xf32>
      }
    
    // CHECK-LABEL: func @float_einsum
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  2. requirements_lock_3_10.txt

        # via
        #   -r requirements.in
        #   h5py
        #   jax
        #   keras-nightly
        #   ml-dtypes
        #   opt-einsum
        #   scipy
        #   tb-nightly
    opt-einsum==3.3.0 \
        --hash=sha256:2455e59e3947d3c275477df7f5205b30635e266fe6dc300e3d9f9646bfcea147 \
        --hash=sha256:59f6475f77bbc37dcf7cd748519c0ec60722e91e63ca114e68821c0c54a46549
        # via
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 19:00:33 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. requirements_lock_3_9.txt

        # via
        #   -r requirements.in
        #   h5py
        #   jax
        #   keras-nightly
        #   ml-dtypes
        #   opt-einsum
        #   scipy
        #   tb-nightly
    opt-einsum==3.3.0 \
        --hash=sha256:2455e59e3947d3c275477df7f5205b30635e266fe6dc300e3d9f9646bfcea147 \
        --hash=sha256:59f6475f77bbc37dcf7cd748519c0ec60722e91e63ca114e68821c0c54a46549
        # via
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 19:00:33 UTC 2024
    - 43K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ArchivesContinuousIntegrationTest.groovy

    import org.gradle.integtests.fixtures.archives.TestReproducibleArchives
    import spock.lang.Ignore
    
    @TestReproducibleArchives
    class ArchivesContinuousIntegrationTest extends AbstractContinuousIntegrationTest {
        def "creating zips"() {
            given:
            def sourceDir = file("src")
            def subDir = sourceDir.file("subdir")
            def outputFile = file("build/distributions/zip.zip")
            def unpackDir = file("build/unpack")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/IntegrationTestBuildContext.java

        }
    
        public GradleVersion getVersion() {
            return GradleVersion.current();
        }
    
        /**
         * The timestamped version used in the docs and the bin and all zips. This should be different to {@link GradleVersion#getVersion()}.
         */
        public GradleVersion getDistZipVersion() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/Hashing.java

          }
          return HashCode.fromBytesNoCopy(bytes);
        }
    
        @Override
        public int bits() {
          int bitSum = 0;
          for (HashFunction function : functions) {
            bitSum += function.bits();
          }
          return bitSum;
        }
    
        @Override
        public boolean equals(@CheckForNull Object object) {
          if (object instanceof ConcatenatedHashFunction) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/BUILD

            "decompose_reduce_dataset.cc",
            "decompose_resource_ops_pass.cc",
            "device_attribute_to_launch.cc",
            "device_index_selector.cc",
            "drop_while_shape_invariant.cc",
            "einsum.cc",
            "executor_island_coarsening.cc",
            "executor_tpuv1_inline_tpu_island.cc",
            "executor_tpuv1_island_coarsening.cc",
            "executor_tpuv1_outline_tpu_island.cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/replace_cast_hacks_with_tf_xla_ops.mlir

    // CHECK: %[[ARG0_CAST:.*]] = "tf.Cast"(%[[ARG0]]
    // CHECK: %[[ARG0_REDUCE:.*]] = "tf.Einsum"(%[[ARG0_CAST]]
    // CHECK-SAME: __tf_quant_created_einsum
    // CHECK: %[[ARG0_ZP:.*]] = "tf.Mul"(%[[ARG0_REDUCE]]
    
    // CHECK: %[[ARG1_CAST:.*]] = "tf.Cast"(%[[ARG1]]
    // CHECK: %[[ARG1_REDUCE:.*]] = "tf.Einsum"({{.*}}, %[[ARG1_CAST]]
    // CHECK-SAME: __tf_quant_created_einsum
    // CHECK: %[[ARG1_ZP:.*]] = "tf.Mul"(%[[ARG1_REDUCE]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 81K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modcmd/verify.go

    	if len(args) != 0 {
    		// NOTE(rsc): Could take a module pattern.
    		base.Fatalf("go: verify takes no arguments")
    	}
    	modload.ForceUseModules = true
    	modload.RootMode = modload.NeedRoot
    
    	// Only verify up to GOMAXPROCS zips at once.
    	type token struct{}
    	sem := make(chan token, runtime.GOMAXPROCS(0))
    
    	mg, err := modload.LoadModGraph(ctx, "")
    	if err != nil {
    		base.Fatal(err)
    	}
    	mods := mg.BuildList()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_sum_ambiguous.txt

    go list -m all
    stdout '^example.com/ambiguous/a v1.0.0$'
    stdout '^example.com/ambiguous/a/b v0.0.0-empty$'
    
    # If two modules could provide a package, but only one does,
    # 'go mod tidy' should retain sums for both zips.
    go mod tidy
    grep '^example.com/ambiguous/a v1.0.0 h1:' go.sum
    grep '^example.com/ambiguous/a/b v0.0.0-empty h1:' go.sum
    
    # 'go mod download' should also add sums.
    cp go.sum.buildlist-only go.sum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 13 23:37:31 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top