Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 485 for mdeps (0.04 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/BUILD

            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "clustering_passes.td",
        deps = [
            "@llvm-project//mlir:PassBaseTdFiles",
        ],
    )
    
    tf_cc_test(
        name = "verify_clustering_pass_test",
        srcs = ["verify_clustering_pass_test.cc"],
        deps = [
            ":clustering_passes",
            "//tensorflow/compiler/mlir/tf2xla/transforms:test_utils",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 17:50:14 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/gradients/BUILD

            "//tensorflow:internal",
        ],
        deps = [
            "//tensorflow/c/eager:abstract_context",
            "//tensorflow/c/eager:gradients_internal",
        ],
    )
    
    cc_library(
        name = "math_grad",
        srcs = ["math_grad.cc"],
        hdrs = [
            "math_grad.h",
        ],
        visibility = [
            "//tensorflow:internal",
        ],
        deps = [
            "//tensorflow/c/eager:abstract_tensor_handle",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 20:39:44 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/ops/BUILD

    )
    
    cc_library(
        name = "tf_op_quant_spec",
        srcs = [
            "tf_op_quant_spec.cc",
        ],
        hdrs = ["tf_op_quant_spec.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
            "//tensorflow/compiler/mlir/quantization/common/quantization_lib",
            "//tensorflow/compiler/mlir/quantization/tensorflow:quantization_options_proto_cc",
            "//tensorflow/compiler/mlir/tensorflow",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 07:44:40 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/BUILD

        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "sparsecore_passes.td",
        deps = [
            "@llvm-project//mlir:PassBaseTdFiles",
        ],
    )
    
    cc_library(
        name = "sparsecore_passes",
        hdrs = [
            "sparsecore_passes.h",
        ],
        textual_hdrs = [
            "sparsecore_passes.h.inc",
        ],
        deps = [
            ":embedding_pipelining",
            ":embedding_program_key",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_multirepo.txt

    # initial standalone module should use no downloaded modules
    go list -deps -f {{.Dir}}
    ! stdout 'pkg[\\/]mod'
    
    # v2 import should use a downloaded module
    # both without an explicit go.mod entry ...
    cp tmp/use_v2.go x.go
    go get .
    go list -deps -f {{.Dir}}
    stdout 'pkg[\\/]mod[\\/]rsc.io[\\/]quote[\\/]v2@v2.0.1$'
    
    # ... and with one ...
    cp tmp/use_v2.mod go.mod
    go list -deps -f {{.Dir}}
    stdout 'pkg[\\/]mod[\\/]rsc.io[\\/]quote[\\/]v2@v2.0.1$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 892 bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libexport/BUILD

    )
    
    cc_library(
        name = "save",
        srcs = ["save.cc"],
        hdrs = ["save.h"],
        deps = [
            "//tensorflow/core:lib",
            "//tensorflow/core/platform:status",
        ],
    )
    
    tf_cc_test(
        name = "save_test",
        size = "small",
        srcs = ["save_test.cc"],
        deps = [
            ":save",
            "//tensorflow/core:lib",
            "//tensorflow/core:test",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/BUILD

        srcs = ["utils.cc"],
        hdrs = ["utils.h"],
        deps = [
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:IR",
            "@local_xla//xla/mlir_hlo",
        ],
    )
    
    cc_library(
        name = "test_utils",
        testonly = True,
        srcs = ["test_utils.cc"],
        hdrs = ["test_utils.h"],
        deps = [
            "//tensorflow/compiler/mlir:register_common_dialects",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_test_files.txt

    # package in the same directory.
    go list -test -deps
    go list -test -deps foo_test.go
    
    # If the file is inside the main module's vendor directory, it should have
    # visibility based on the vendor-relative import path.
    mkdir vendor/example.com/foo
    cp foo_test.go vendor/example.com/foo
    go list -test -deps vendor/example.com/foo/foo_test.go
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 09 18:12:31 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationMutationIntegrationTest.groovy

    dependencies {
        conf "org:to-remove:1.0"
        conf "org:foo:1.0"
    }
    configurations.conf.withDependencies { deps ->
        deps.remove deps.find { it.name == 'to-remove' }
        deps.add project.dependencies.create("org:bar:1.0")
    }
    configurations.compile.withDependencies { deps ->
        assert deps.empty : "Compile dependencies should be empty"
    }
    """
    
            then:
            resolvedGraph {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:56 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/BUILD

        main = "py_function_lib_test.py",
        deps = ["//tensorflow/python/platform:client_testlib"],
    )
    
    cc_library(
        name = "type_casters",
        hdrs = ["type_casters.h"],
        copts = ["-fexceptions"],  # Required for pybind11.
        # Required for pybind11.
        features = [
            "-use_header_modules",
            "-parse_headers",
        ],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top