Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for defs (0.06 sec)

  1. tensorflow/compiler/mlir/lite/BUILD

                "ir/tfl_ops_interface.h.inc",
            ),
            (
                ["-gen-op-interface-defs"],
                "ir/tfl_ops_interface.cc.inc",
            ),
            (
                ["-gen-dialect-decls"],
                "ir/tfl_ops_dialect.h.inc",
            ),
            (
                ["-gen-dialect-defs"],
                "ir/tfl_ops_dialect.cc.inc",
            ),
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/BUILD

    package_group(
        name = "friends",
        includes = [
            "//tensorflow/compiler/tf2xla:friends",
        ],
    )
    
    # defs.cc/h only contains string constants, and can be included in mobile
    # builds.
    filegroup(
        name = "mobile_srcs_no_runtime",
        srcs = [
            "defs.cc",
            "defs.h",
        ],
        visibility = [":friends"],
    )
    
    # Target that bundles up the XLA CPU and GPU JIT devices.
    cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_test.go

    			}
    			ident := idents[test.name][0]
    			def := info.Defs[ident]
    			if def == test.obj {
    				t.Fatalf("info.Defs[%s] contains the test object", test.name)
    			}
    			if orig := originObject(test.obj); def != orig {
    				t.Errorf("info.Defs[%s] does not match obj.Origin()", test.name)
    			}
    			if def.Pkg() != test.obj.Pkg() {
    				t.Errorf("Pkg() = %v, want %v", def.Pkg(), test.obj.Pkg())
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    			}
    			ident := idents[test.name][0]
    			def := info.Defs[ident]
    			if def == test.obj {
    				t.Fatalf("info.Defs[%s] contains the test object", test.name)
    			}
    			if orig := originObject(test.obj); def != orig {
    				t.Errorf("info.Defs[%s] does not match obj.Origin()", test.name)
    			}
    			if def.Pkg() != test.obj.Pkg() {
    				t.Errorf("Pkg() = %v, want %v", def.Pkg(), test.obj.Pkg())
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  5. tensorflow/BUILD

        linkshared = 1,
        linkstatic = 1,
        deps = tf_custom_op_library_additional_deps_impl(),
    )
    
    # Get a DEF file generated by parsing all object files
    # of tf_custom_op_library_additional_deps.so
    filegroup(
        name = "tensorflow_def_file",
        srcs = [":tf_custom_op_library_additional_deps.dll"],
        output_group = "def_file",
    )
    
    # Filter the DEF file to reduce the number of symbols to 64K or less.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/loader.go

    			// We want to check if a linkname reference is allowed. Here we haven't loaded all
    			// symbol definitions, so we don't yet know all the push linknames. So we add to a
    			// list and check later after all symbol defs are loaded. Linknamed vars are rare,
    			// so this list won't be long.
    			// Only check references (pull), not definitions (push, with non-zero size),
    			// so push is always allowed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  7. src/testing/testing.go

    // It may change signature from release to release.
    func MainStart(deps testDeps, tests []InternalTest, benchmarks []InternalBenchmark, fuzzTargets []InternalFuzzTarget, examples []InternalExample) *M {
    	registerCover2(deps.InitRuntimeCoverage())
    	Init()
    	return &M{
    		deps:        deps,
    		tests:       tests,
    		benchmarks:  benchmarks,
    		fuzzTargets: fuzzTargets,
    		examples:    examples,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    def OperandsBroadcastToOutputType : Constraint<CPred<
      "TFL::OperandsBroadcastToOutputType($0.getType(), $1.getType(), "
                                         "$2.getType())">>;
    
    def IsTailOfShape : Constraint<CPred<
      "TFL::IsTailOfShape($0.getType(), $1.getType())">>;
    
    def IsReducedTailOfShape : Constraint<CPred<
      "TFL::IsReducedTailOfShape($0.getType(), $1.getType())">>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  9. src/cmd/go/go_test.go

    	tg.tempFile("src/p1/p2/p3/p4/p.go", "package p4\n")
    	tg.run("list", "-f", "{{.Deps}}", "p1")
    	tg.grepStdout("p1/p2/p3/p4", "Deps(p1) does not mention p4")
    
    	tg.run("list", "-deps", "p1")
    	tg.grepStdout("p1/p2/p3/p4", "-deps p1 does not mention p4")
    
    	if runtime.Compiler != "gccgo" {
    		// Check the list is in dependency order.
    		tg.run("list", "-deps", "math")
    		want := "unsafe\ninternal/cpu\nmath/bits\nmath\n"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        }
    
        @Override
        @Deprecated
        public Set<File> files(Dependency... dependencies) {
            Set<Dependency> deps = WrapUtil.toLinkedSet(dependencies);
            return fileCollectionInternal("files(Dependency...)", deps::contains).getFiles();
        }
    
        @Override
        @Deprecated
        public Set<File> files(Closure dependencySpecClosure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
Back to top