Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 274 for dups (0.04 sec)

  1. tensorflow/compiler/aot/BUILD

        ]),
    )
    
    tf_cc_binary(
        name = "tfcompile",
        visibility = ["//visibility:public"],
        deps = [":tfcompile_main"],
    )
    
    cc_library(
        name = "llvm_targets",
        visibility = ["//tensorflow/python:__pkg__"],
        deps = [
        ] + if_llvm_aarch32_available([
            "@llvm-project//llvm:ARMAsmParser",  # fixdeps: keep
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. ci/official/utilities/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: Wed Mar 06 21:54:13 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/PublishArtifactNotationParserFactoryTest.groovy

            publishArtifact.type == 'zip'
            publishArtifact.extension == 'zip'
            publishArtifact.classifier == null
    
            when:
            def deps = publishArtifact.buildDependencies
    
            then:
            deps.getDependencies(null).empty
        }
    
        def "creates artifact from extension-less file"() {
            def file = new File("someFile")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_dump_tensor_op_stablehlo.mlir

    // WholeModel-DAG: "tf.DumpTensor"(%[[matmul0_q]]) <{enabled = true, file_name = "unquantized_tensor_data.pb", func_name = "composite_dot_general_with_bias_and_relu6_dynamic_fn_2", log_dir_path = "/tmp/dumps/composite_dot_general_with_bias_and_relu6_dynamic_fn_2", node_name = "_empty_node"}> : (tensor<?x2xf32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 18K bytes
    - Viewed (0)
  6. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectWithDepsGeneratorTask.groovy

        }
    
        /** Represents a component */
        class Component {
            String name
            String type
            List<Dependency> deps
    
            Component(String name, String type, List<Dependency> deps) {
                this.name = name
                this.type = type
                this.deps = deps
            }
        }
    
        /**
         * Number of components to generate per project
         */
        @Input
        int numberOfComponents = 4
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/go/internal/list/list.go

    	return pkgs
    }
    
    // collectDeps populates p.Deps by iterating over p.Internal.Imports.
    // collectDeps must be called on all of p's Imports before being called on p.
    func collectDeps(p *load.Package) {
    	deps := make(map[string]bool)
    
    	for _, p := range p.Internal.Imports {
    		deps[p.ImportPath] = true
    		for _, q := range p.Deps {
    			deps[q] = true
    		}
    	}
    
    	p.Deps = make([]string, 0, len(deps))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  10. 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)
Back to top