Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 129 for defs (0.04 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/BUILD

        td_file = "passes/bridge/optimize.td",
        deps = [":optimize_td_files"],
    )
    
    tf_cc_test(
        name = "convert_tf_quant_to_mhlo_int_test",
        srcs = [
            "passes/bridge/convert_tf_quant_to_mhlo_int_test.cc",
        ],
        tags = ["nomac"],  # TODO(b/297362678): re-enable mac test.
        deps = [
            ":bridge_passes",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/plugin/v1beta1/stub.go

    	klog.InfoS("GetPreferredAllocation", "request", r)
    
    	devs := make(map[string]pluginapi.Device)
    
    	for _, dev := range m.devs {
    		devs[dev.ID] = *dev
    	}
    
    	return m.getPreferredAllocFunc(r, devs)
    }
    
    // Allocate does a mock allocation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 11:19:10 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/BUILD

        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "runtime_passes.td",
        deps = [
            "@llvm-project//mlir:PassBaseTdFiles",
        ],
    )
    
    cc_library(
        name = "runtime_passes",
        hdrs = [
            "runtime_passes.h",
        ],
        textual_hdrs = [
            "runtime_passes.h.inc",
        ],
        deps = [
            ":runtime_passes_inc_gen",
            ":tpu_merge_variable_with_execute",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/devel.usertools/code_check_full.bats

      # Find all one-step dependencies of those tests which are from //tensorflow
      # (since external deps will come from Python-level pip dependencies),
      # excluding dependencies and files that are known to be unneccessary.
      # This creates a list of targets under //tensorflow that are required for
      # TensorFlow python tests.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v1/BUILD

        ],
    )
    
    cc_library(
        name = "compile_mlir_util_no_tf_dialect_passes",
        srcs = ["compile_mlir_util.cc"],
        hdrs = ["compile_mlir_util.h"],
        visibility = ["//visibility:public"],
        deps = [
            "//tensorflow/compiler/mlir/quantization/stablehlo:bridge_passes",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow:bridge_logger",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/tfcompile.bzl

            use a tfcompile built with extra dependencies.
          include_standard_runtime_deps: If True, the standard list of
            kernel/runtime deps is added to deps.  If False, deps must contain the
            full set of deps needed by the generated library.
          enable_xla_hlo_profiling: Enable XLA HLO profiling in the generated
            program, and emit metadata that lets us pretty-print the gathered
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/BUILD

            "//learning/brain/mlir/bridge:__pkg__",
            "//tensorflow/compiler/mlir/quantization/stablehlo:__pkg__",
            "//tensorflow/compiler/mlir/tfrt/transforms/ifrt:__pkg__",
        ],
        deps = [
            ":device_type_proto_cc",
            "//tensorflow/compiler/jit:flags_headers",
            "//tensorflow/compiler/jit:shape_inference",
            "//tensorflow/compiler/mlir/tensorflow",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/pod_devices_test.go

    			"dev-baz3": pluginapi.Device{
    				ID: "baz3",
    			},
    		},
    	}
    
    	resp = devs.Filter(map[string]sets.Set[string]{})
    	expected = `{}`
    	expectResourceDeviceInstances(t, resp, expected)
    
    	cond = map[string]sets.Set[string]{
    		"foo": sets.New[string]("dev-foo1", "dev-foo2"),
    		"bar": sets.New[string]("dev-bar1"),
    	}
    	resp = devs.Filter(cond)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileCollectionSpec.groovy

            def deps = dependencies.getDependencies(task)
    
            then:
            visited == 1
            deps as List == [dependency]
    
            when:
            deps = dependencies.getDependencies(Stub(Task))
    
            then:
            visited == 2
            deps as List == [dependency]
        }
    
        def "subtype can avoid creating content when task dependencies are queried"() {
            def visited = 0;
            def task = Stub(Task)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

            def actualRoot = findLines(configDetails, 'root').first()
            def expectedRoot = "[${root.type}][id:${root.id}][mv:${root.moduleVersionId}][reason:${root.reason}]".toString()
            assert actualRoot.startsWith(expectedRoot)
    
            def actualComponents = findLines(configDetails, 'component')
            def expectedComponents = graph.nodes.collect { baseNode ->
                def variants = baseNode.variants
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
Back to top