Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 107 for 1011 (0.17 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize-stablehlo-tfl-composite.mlir

        return %1#0, %1#1 : tensor<1x500x4x4xf32>, tensor<1x500x4x4xf32>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/parallel_execute_to_islands_legacy.mlir

            tf_device.return %2 : tensor<i1>
          }, {
            %2 = "tf.opB"() : () -> tensor<i32>
            tf_device.return %2 : tensor<i32>
          }) {} : () -> (tensor<i1>, tensor<i32>)
          tf_executor.yield %1#0, %1#1 : tensor<i1>, tensor<i32>
        }
        %3 = tf_executor.island(%0#2) {
          "tf.someOp"() : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch %3 : !tf_executor.control
      }
      func.return
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java

            assertVersionOlder("1", "2.5");
            assertVersionEqual("1", "1.0");
            assertVersionEqual("1", "1.0.0");
            assertVersionOlder("1.0", "1.1");
            assertVersionOlder("1.1", "1.2");
            assertVersionOlder("1.0.0", "1.1");
            assertVersionOlder("1.1", "1.2.0");
    
            assertVersionOlder("1.1.2.alpha1", "1.1.2");
            assertVersionOlder("1.1.2.alpha1", "1.1.2.beta1");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/NativeAlignmentWithJavaPlatformResolveIntegrationTest.groovy

                }
            """
    
            when:
            run "publishAllPublicationsToMavenRepo", "-Pver=1.0"
            run "publishAllPublicationsToMavenRepo", "-Pver=1.1"
    
            then:
            ['1.0', '1.1'].each { v ->
                def platform = mavenRepo.module("com.acme.foo", "platform", v)
                platform.assertPublished()
                platform.hasGradleMetadataRedirectionMarker()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/inl.go

    // and g has two calls to h(), and that f, g, and h are inlineable:
    //
    //	 1 func main() {
    //	 2     f()
    //	 3 }
    //	 4 func f() {
    //	 5     g()
    //	 6 }
    //	 7 func g() {
    //	 8     h()
    //	 9     h()
    //	10 }
    //	11 func h() {
    //	12     println("H")
    //	13 }
    //
    // Assuming the global tree starts empty, inlining will produce the
    // following tree:
    //
    //	[]InlinedCall{
    //	  {Parent: -1, Func: "f", Pos: <line 2>},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 22:47:15 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. tensorflow/cc/client/client_session_test.cc

        });
      }
      barrier.Block();
    
      TF_EXPECT_OK(session.RunCallable(
          callable,
          {test::AsTensor<int>({2}, {1, 1}), test::AsTensor<int>({10}, {1, 1})},
          &outputs, nullptr, threadPoolOptions));
      test::ExpectTensorEqual<int>(outputs[0], test::AsTensor<int>({20}, {1, 1}));
      TF_EXPECT_OK(session.ReleaseCallable(callable));
      ASSERT_GT(inter_op_threadpool->GetNumScheduleCalled(), 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. src/crypto/cipher/cbc.go

    // Cipher block chaining (CBC) mode.
    
    // CBC provides confidentiality by xoring (chaining) each plaintext block
    // with the previous ciphertext block before applying the block cipher.
    
    // See NIST SP 800-38A, pp 10-11
    
    package cipher
    
    import (
    	"bytes"
    	"crypto/internal/alias"
    	"crypto/subtle"
    )
    
    type cbc struct {
    	b         Block
    	blockSize int
    	iv        []byte
    	tmp       []byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:55:33 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/CommandLineIntegrationSpec.groovy

            and:
            failure.assertHasDescription "Value '$value' given for org.gradle.debug.port Gradle property is invalid (must be a number between 1 and 65535)"
    
            where:
            value << ["-1", "0", "1.1", "foo", " 1", "65536"]
        }
    
        @Flaky(because = "Sometimes it hangs for hours")
        @Issue('https://github.com/gradle/gradle/issues/18084')
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 05:05:14 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. manifests/charts/README.md

    `istio-system`. The new components will not interfere with existing apps, but can interoperate,
    and it is possible to gradually move apps from Istio 1.0/1.1 to the new environments and
    across environments ( for example canary -> prod )
    
    Note: there are still some cluster roles that may need to be fixed, most likely cluster permissions
    will need to move to the security component.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/decompose_reduce_dataset.mlir

        func.return %1#0, %1#1: tensor<i64>, tensor<i32>
    }
    
    func.func private @__reduce_func_3(%arg0: tensor<i64> {tf._user_specified_name = "args_0"}, %arg1: tensor<i32> {tf._user_specified_name = "args_1"},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 18 17:16:34 UTC 2022
    - 9.8K bytes
    - Viewed (0)
Back to top