Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 93 for zipsum (0.12 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalCppStaleCompileOutputApp.groovy

     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    class IncrementalCppStaleCompileOutputApp extends IncrementalCppApp {
        private final greeter = new CppGreeter()
        private final sum = new CppSum()
        private final multiply = new CppMultiply()
        private final main = new CppMain(greeter, sum)
    
        final List<IncrementalElement.Transform> incrementalChanges = [
            preserve(greeter),
            rename(sum),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/jax.requirements.txt

    # REQUIREMENTS_FILE=jax.requirements.txt
    
    
    setuptools
    wheel
    cloudpickle
    colorama>=0.4.4
    matplotlib
    pillow>=9.1.0
    rich
    absl-py
    portpicker
    six
    opt-einsum
    auditwheel
    typing_extensions
    importlib_metadata>=4.6
    numpy==1.26.0;python_version=="3.12"
    numpy==1.23.4;python_version=="3.11"
    numpy==1.22.4;python_version<"3.11"
    scipy==1.11.2;python_version=="3.12"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 20:02:17 UTC 2024
    - 570 bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/tasks/CppUnexportMainSymbolIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.CppGreeter
    import org.gradle.nativeplatform.fixtures.app.CppMultiply
    import org.gradle.nativeplatform.fixtures.app.CppSourceElement
    import org.gradle.nativeplatform.fixtures.app.CppSum
    import org.gradle.nativeplatform.fixtures.app.IncrementalCppElement
    import org.gradle.nativeplatform.fixtures.app.IncrementalElement
    import org.gradle.nativeplatform.fixtures.app.SourceElement
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/batchmatmul_to_einsum.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/core/util/matmul_bcast.h"
    
    namespace mlir {
    namespace TF {
    
    namespace {
    
    // Replace TF BatchMatMul by TF Einsum op
    template <typename BatchMatMulOpType>
    class ConvertTFBatchMatMulToEinsumOp
        : public OpRewritePattern<BatchMatMulOpType> {
      using OpRewritePattern<BatchMatMulOpType>::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/verify_tfxla_legalization_test.cc

      CreateModule(kNonStaticFailure);
    
      auto result = Run();
    
      EXPECT_TRUE(result.succeeded());
      EXPECT_EQ(static_error.Delta("mhlo.einsum"), 0);
      EXPECT_EQ(skipped.Delta("mhlo.einsum"), 1);
    }
    
    TEST_F(VerifyTfxlaLegalizationTest, SkipsNonStaticInputsWithBounds) {
      // Using a string constant here instead of testdata to make this compatible
      // with open source.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. src/archive/tar/fuzz_test.go

    // license that can be found in the LICENSE file.
    
    package tar
    
    import (
    	"bytes"
    	"io"
    	"testing"
    )
    
    func FuzzReader(f *testing.F) {
    	b := bytes.NewBuffer(nil)
    	w := NewWriter(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 13 18:06:33 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

      if (!value_type.hasRank()) return false;
      if (!value_type.getElementType().isInteger(integer_width)) return false;
    
      return true;
    }
    
    // Constraint to check:
    // 1. The einsum has two inputs and one output.
    // 2. The einsum is not created by the convert function itself.
    // 3. Both inputs are int32 tensor.
    // 4. Both inputs have the graph ancestor of either const-(sub), or cast-sub.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalCppStaleCompileOutputLib.groovy

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    class IncrementalCppStaleCompileOutputLib extends IncrementalCppElement {
        final greeter = new CppGreeter()
        final sum = new CppSum()
        final multiply = new CppMultiply()
    
        final List<IncrementalElement.Transform> incrementalChanges = [
            preserve(greeter),
            rename(sum),
            delete(multiply)
        ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 994 bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalCppStaleLinkOutputLib.groovy

    /**
     * A Cpp library that removes all sources.
     */
    class IncrementalCppStaleLinkOutputLib extends IncrementalCppElement {
        private final greeter = new CppGreeter()
        private final sum = new CppSum()
    
        final List<IncrementalElement.Transform> incrementalChanges = [
            delete(greeter.asLib()), delete(sum.asLib())]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 994 bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppLib.groovy

    package org.gradle.nativeplatform.fixtures.app
    
    /**
     * A single project C++ library, with several source files.
     */
    class CppLib extends CppSourceElement {
        final greeter = new CppGreeter().asLib()
        final sum = new CppSum().asLib()
    
        @Override
        SourceElement getHeaders() {
            ofElements(greeter.headers, sum.headers)
        }
    
        SourceElement getPublicHeaders() {
            ofElements(greeter.publicHeaders, sum.publicHeaders)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top