Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 147 for defs (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/BUILD

                "ir/tf_op_interfaces.h.inc",
            ),
            (
                ["-gen-op-interface-defs"],
                "ir/tf_op_interfaces.cc.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "ir/tf_op_interfaces.td",
        test = True,
        deps = [
            ":tensorflow_ops_td_files",
        ],
    )
    
    gentbl_cc_library(
        name = "tensorflow_struct_doc_gen",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  2. ci/official/wheel_test/WORKSPACE

    python_register_toolchains(
        name = "python",
        ignore_root_user_error = True,
        python_version = TF_PYTHON_VERSION,
    )
    
    load("@python//:defs.bzl", "interpreter")
    load("@rules_python//python:pip.bzl", "pip_parse")
    
    pip_parse(
        name = "pypi",
        python_interpreter_target = interpreter,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 22:27:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/abi.go

    )
    
    // SymABIs records information provided by the assembler about symbol
    // definition ABIs and reference ABIs.
    type SymABIs struct {
    	defs map[string]obj.ABI
    	refs map[string]obj.ABISet
    }
    
    func NewSymABIs() *SymABIs {
    	return &SymABIs{
    		defs: make(map[string]obj.ABI),
    		refs: make(map[string]obj.ABISet),
    	}
    }
    
    // canonicalize returns the canonical name used for a linker symbol in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/go/types/example_test.go

    	// Type-check the package.
    	// We create an empty map for each kind of input
    	// we're interested in, and Check populates them.
    	info := types.Info{
    		Types: make(map[ast.Expr]types.TypeAndValue),
    		Defs:  make(map[*ast.Ident]types.Object),
    		Uses:  make(map[*ast.Ident]types.Object),
    	}
    	var conf types.Config
    	pkg, err := conf.Check("fib", fset, []*ast.File{f}, &info)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. WORKSPACE

    load("@python_version_repo//:py_version.bzl", "TF_PYTHON_VERSION")
    
    python_register_toolchains(
        name = "python",
        ignore_root_user_error = True,
        python_version = TF_PYTHON_VERSION,
    )
    
    load("@python//:defs.bzl", "interpreter")
    load("@rules_python//python:pip.bzl", "package_annotation", "pip_parse")
    
    NUMPY_ANNOTATIONS = {
        "numpy": package_annotation(
            additive_build_content = """\
    filegroup(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 22:27:48 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/sym.go

    			}
    			ctxt.nonpkgdefs = append(ctxt.nonpkgdefs, s)
    			nonpkgidx++
    		} else {
    			s.PkgIdx = goobj.PkgIdxSelf
    			s.SymIdx = idx
    			if idx != int32(len(ctxt.defs)) {
    				panic("bad index")
    			}
    			ctxt.defs = append(ctxt.defs, s)
    			idx++
    		}
    		s.Set(AttrIndexed, true)
    	})
    
    	ipkg := int32(1) // 0 is invalid index
    	nonpkgdef := nonpkgidx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/objfile.go

    				continue
    			}
    			if s.OnList() {
    				panic("a symbol is added to defs multiple times")
    			}
    			s.PkgIdx = goobj.PkgIdxSelf
    			s.SymIdx = symidx
    			s.Set(AttrIndexed, true)
    			s.Set(AttrOnList, true)
    			symidx++
    			infosyms = append(infosyms, s)
    		}
    	}
    	ctxt.defs = append(ctxt.defs, infosyms...)
    }
    
    func writeAuxSymDebug(ctxt *Link, par *LSym, aux *LSym) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

                       "defs argument",
                       i);
          return nullptr;
        }
    
        // Parse op def from character array.
        tensorflow::OpDef opdef;
        if (!tensorflow::protobuf::TextFormat::ParseFromString(tf_opdefs, &opdef)) {
          PyErr_Format(
              PyExc_ValueError,
              "Failed to parse opdefs at index %d of custom op defs argument: %s",
              i, tf_opdefs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top