Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 418 for corerest (0.26 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

      let summary = "Convert fallback tensor to corert tensorhandle";
    
      let description = [{
        Convert the fallback tensor to corert tensorhandle.
    
        args: a list of fallback tensors.
        device: the name of the tensorflow device that is associated with the
          input fallback tensors.
    
        results: the converted corert tensorhandles.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

            }
        }
    
        @ToBeFixedForConfigurationCache(because = "build listener")
        def 'projectsLoaded listeners are attributed to the correct registrant'() {
            given:
            def addGradleListeners = { String source ->
                """
                    gradle.projectsLoaded({
                        println "gradle.projectsLoaded(Action) from $source"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/BUILD

            "//tensorflow/compiler/mlir/tensorflow:attribute_utils",
            "//tensorflow/compiler/tf2xla:xla_op_registry",
            "//tensorflow/core:framework",
            "//tensorflow/core:lib",
            "//tensorflow/core:test",
            "//tensorflow/core/lib/monitoring:cell_reader",
            "//tensorflow/core/platform:resource_loader",
            "//tensorflow/core/tpu:tpu_defs",
            "@com_google_absl//absl/status",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/BUILD

        srcs = ["mlir_pass_instrumentation_test.cc"],
        deps = [
            ":mlir_pass_instrumentation",
            "//tensorflow/compiler/mlir/tf2xla/api/v1:compile_mlir_util_no_tf_dialect_passes",
            "//tensorflow/core:test",
            "@com_google_googletest//:gtest_main",
        ],
    )
    
    cc_library(
        name = "legalize_tf_mlir",
        srcs = ["legalize_tf_mlir.cc"],
        hdrs = ["legalize_tf_mlir.h"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. pkg/controlplane/reconcilers/endpointsadapter_test.go

    			// No error when we need to create the Endpoints but the correct
    			// EndpointSlice already exists
    			expectedError:  nil,
    			expectedResult: endpoints1,
    			expectCreate:   []runtime.Object{endpoints1},
    			initialState:   []runtime.Object{epSlice1},
    			namespaceParam: endpoints1.Namespace,
    			endpointsParam: endpoints1,
    		},
    		"existing-endpointslice-correct": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepositoryTest.groovy

            cost == remoteAnswer
    
            where:
            remoteAnswer << MetadataFetchingCost.values()
        }
    
        def "estimates cost for missing metadata is correct (remote says #remoteAnswer, must refresh = #mustRefreshMissingModule)"() {
            def module = Mock(ModuleComponentIdentifier)
            def localAccess = repo.localAccess
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/tests/compose-uniform-quantized-type.mlir

    // CHECK: return %[[DEQUANT]] : tensor<1x3x3x4xf32>
    
      // The following uniform_quantize & uniform_dequantize functions do NOT have
      // the correct body. Only the type signatures matter for testing.
      func.func private @uniform_quantize_0(%arg0: tensor<1x3x3x4xf32>, %arg1: tensor<1x1x1x1xf32>, %arg2: tensor<1x1x1x1xi8>) -> tensor<1x3x3x4xi8> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 37K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/base/FunctionsTest.java

        assertEquals("correct", f.apply(new Object()));
        assertEquals("correct", f.apply(null));
    
        Function<@Nullable Object, @Nullable String> g = Functions.constant(null);
        assertEquals(null, g.apply(2));
        assertEquals(null, g.apply(null));
    
        new EqualsTester()
            .addEqualityGroup(f, Functions.constant("correct"))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

        }
    
        def "build succeeds if test class is only available in one test task"() {
            given:
            file("src/moreTests/java/more/MoreTest.java") << """
                package more;
                public class MoreTest {
                    @org.junit.Test public void bar() throws Exception {
                         org.junit.Assert.assertEquals(2, 2);
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. src/go/printer/printer_test.go

    const (
    	export checkMode = 1 << iota
    	rawFormat
    	normNumber
    	idempotent
    	allowTypeParams
    )
    
    // format parses src, prints the corresponding AST, verifies the resulting
    // src is syntactically correct, and returns the resulting src or an error
    // if any.
    func format(src []byte, mode checkMode) ([]byte, error) {
    	// parse src
    	f, err := parser.ParseFile(fset, "", src, parser.ParseComments)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top