Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for importer (0.37 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        TF_RETURN_IF_ERROR(importer.PrepareConvert(*fbody->graph));
    
        TF_ASSIGN_OR_RETURN(auto func_type, importer.InferLibFunctionType(*fbody));
    
        absl::InlinedVector<OutputTensor, 4> arg_nodes;
        absl::InlinedVector<OutputTensor, 4> ret_nodes;
        absl::InlinedVector<Node*, 4> control_ret_nodes;
        importer.GetArgsAndRetsFromFunctionBody(*fbody, &arg_nodes, &ret_nodes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    // can produce better error messages if it starts with the original paths.
    // The initial load of p loads all the non-test imports and rewrites
    // the vendored paths, so nothing should ever call p.vendored(p.Imports).
    func (p *Package) Resolve(imports []string) []string {
    	if len(imports) > 0 && len(p.Imports) > 0 && &imports[0] == &p.Imports[0] {
    		panic("internal error: p.Resolve(p.Imports) called")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //
    //	GitHub (Git)
    //
    //		import "github.com/user/project"
    //		import "github.com/user/project/sub/directory"
    //
    //	Launchpad (Bazaar)
    //
    //		import "launchpad.net/project"
    //		import "launchpad.net/project/series"
    //		import "launchpad.net/project/series/sub/directory"
    //
    //		import "launchpad.net/~user/project/branch"
    //		import "launchpad.net/~user/project/branch/sub/directory"
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

    # $5: pod name, which should be either etcd or etcd-events
    function prepare-etcd-manifest {
      local host_name=${ETCD_HOSTNAME:-$(hostname -s)}
    
      local resolve_host_script_py='
    import socket
    import time
    import sys
    
    timeout_sec=300
    
    def resolve(host):
      for attempt in range(timeout_sec):
        try:
          print(socket.gethostbyname(host))
          break
        except Exception as e:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        // Types of the optional intermediate tensors, which exist for fully
        // quantized LSTM op and hold the ranges of the intermediate tensors.
        // The type for intermediate tensors are be quant.calibrated when imported
        // to only store calibrated min, max values. The proper quantization spec is
        // determined while going through quantization passes.
        OptionalAttr<TypeAttr>:$input_to_input_intermediate,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    }
    
    // dynimport creates a Go source file named importGo containing
    // //go:cgo_import_dynamic directives for each symbol or library
    // dynamically imported by the object files outObj.
    // dynOutGo, if not empty, is a new Go file to build as part of the package.
    // dynOutObj, if not empty, is a new file to add to the generated archive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        op. The order of ops will be preserved. Functions named `main` with no
        `tf.entry_function` attribute will not be pruned, as such graphs/functions may
        have been imported from a V1 TensorFlow graph, where feeds/fetches/targets are
        not provided at certain stages of IR transformation (e.g. pre-placement).
    
        Option `ops-to-preserve` allows to specify ops that should not be pruned,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top