Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 129 for mdeps (0.05 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileProcessorTest.groovy

        }
    
        def parse(TestFile sourceFile) {
            _ * includesParser.parseIncludes(sourceFile) >> {
                def deps = graph[sourceFile]
                return includes(deps)
            }
        }
    
        private static IncludeDirectives includes(Collection<File> deps) {
            return TestIncludeParser.systemIncludes(deps.collect { it.name })
        }
    
        def added(TestFile sourceFile) {
            virtualFileSystem.invalidateAll()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:31:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/AbstractDependencyMetadataRulesTest.groovy

            !addAllDependenciesAsConstraints() || metadata == "gradle"
        }
    
        private ivyComponentMetadata(String[] deps) {
            def dependencies
            if (addAllDependenciesAsConstraints()) {
                dependencies = [] //not supported in Ivy metadata
            } else {
                dependencies = deps.collect { name ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:39:10 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top