Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,355 for corerest (0.13 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batch_function_fallback_benchmark_test.cc

    std::unique_ptr<tfrt::CoreRuntime> CreateTestCoreRuntime() {
      auto corert = tfrt::CoreRuntime::Create(
          /*diag_handler=*/[](const tfrt::DecodedDiagnostic&
                                  diag) { LOG(ERROR) << diag.message(); },
          tfrt::CreateMallocAllocator(),
          tfrt::CreateMultiThreadedWorkQueue(16, 16));
      CHECK(corert);
      auto fallback_op_handler = tensorflow::tfd::CreateKernelFallbackOpHandler(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 08:08:48 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ResolutionAttributesOrderingIntegrationTest.groovy

                    @TaskAction
                    def verify() {
                        assert incomingFiles*.name == ["correct"]
                    }
                }
            """
        }
    
        def "resolve the correct files through artifactView"() {
            expect:
            succeeds ':verifyFiles'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/BUILD

        size = "small",
        srcs = ["ram_file_block_cache_test.cc"],
        deps = [
            ":ram_file_block_cache",
            "//tensorflow/c:tf_status_internal",
            "//tensorflow/core:lib",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core/platform:blocking_counter",
            "//tensorflow/core/platform/cloud:now_seconds_env",
        ],
    )
    
    tf_cc_test(
        name = "gcs_filesystem_test",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/pgo/devirtualize/devirt.go

    		// interfaces and implementations are mutually exclusive,
    		// devirtualization can still select the correct callee for
    		// each.
    		//
    		// If they were not mutually exclusive (for example, two Add
    		// calls), then we could not definitively select the correct
    		// callee.
    		val += m.Multiply(42, selectA(i).Add(one(i), 2))
    	}
    	return val
    }
    
    type AddFunc func(int, int) int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 18:17:57 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/README.md

    The end result is that if this `istio-iptables` wrapper is used, the correct `iptables` binary should be selected dynamically, regardless of whether the context is a pod, the host, a container, or the host filesystem, or what "default" binary is configured in either the container or the host.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/core/ops/BUILD

            "//tensorflow/core:all_kernels",
            "//tensorflow/core:framework",
            "//tensorflow/core:lib",
            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core/common_runtime:core_cpu_lib",
            "//tensorflow/core/common_runtime/eager:context",
            "//tensorflow/core/common_runtime/eager:core",
        ],
    )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/fallback.mlir

    // CHECK: tfrt_fallback_async.createop(%arg0) key(0) device("/device:CPU:0") "tf.ParseExampleV2"()
    // CHECK-SAME: Tdense = [f32, f32], dense_shapes = [#corert.shape<>, #corert.shape<>]
    // CHECK-SAME: num_sparse = 2 : i64, ragged_split_types = [], ragged_value_types = []
    // CHECK-SAME: sparse_types = [!corert.string, i64]}
    // CHECK-SAME: num_args(7)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. tensorflow/c/BUILD

            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
        ],
    )
    
    tf_cc_test(
        name = "while_loop_test",
        size = "medium",
        srcs = ["while_loop_test.cc"],
        deps = [
            ":c_api",
            ":c_test_util",
            "//tensorflow/core:lib",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
        ],
    )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/properties/ScriptSourceAwareImplementationResolverTest.groovy

    import org.gradle.util.internal.ClosureBackedAction
    import org.gradle.util.internal.ConfigureUtil
    import spock.lang.Specification
    
    class ScriptSourceAwareImplementationResolverTest extends Specification {
    
        def "correct implementation for #type coerced to Action is tracked"() {
            expect:
            ScriptSourceAwareImplementationResolver.unwrapBean(implementation as Action) == implementation
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:27:03 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.td

          $resource,
          (TF_SubOp
            (CreateTFReadVariableOp $src_op, $value, $resource),
            $value
          ),
          (CreateConstBoolAttrFalse)
        )
      >;
    
    // This decomposition is only correct inside XLA as it ignores use_locking
    // attribute.
    def DecomposeResourceApplyGradientDescentOp :
      Pat<
        (TF_ResourceApplyGradientDescentOp:$src_op $resource, $alpha, $delta, BoolAttr:$_),
        (TF_AssignVariableOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top