Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Unexport (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def PrepareTpuComputationForTfExportPass : Pass<"prepare-tpu-computation-for-tf-export", "ModuleOp"> {
      let summary = "Prepare TPU computation to be legal for export to TensorFlow";
      let description = [{
        Prepares TPU computation module attached to _TPUCompileMlir op for
        TensorFlow graph export by making transformation such as replacing or
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    Translator::CreateSignatureDefs(
        const std::vector<SignatureDefData>& signature_defs) {
      std::vector<BufferOffset<tflite::SignatureDef>> signature_defs_buffer;
      // When we export each function in the module op, intentionally, we export
      // the entry functions at the beginning of the subgraph list and the
      // subgraph_index is the index in entry functions and at the same, is the
      // index in the subgraph list.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

              exit 2
          fi
          printf "."
          sleep 2
      done
    
      echo "Kubernetes cluster created."
    
      export KUBE_CERT="${CERT_DIR}/pki/issued/kubecfg.crt"
      export KUBE_KEY="${CERT_DIR}/pki/private/kubecfg.key"
      export CA_CERT="${CERT_DIR}/pki/ca.crt"
      export CONTEXT="${PROJECT}_${INSTANCE_PREFIX}"
      (
       umask 077
    
       # Update the user's kubeconfig to include credentials for this apiserver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    		}
    	}
    
    	// Note: We could decide that vet should compute export data for
    	// all analyses, in which case we don't need to include the flags here.
    	// But that would mean that if an analysis causes problems like
    	// unexpected crashes there would be no way to turn it off.
    	// It seems better to let the flags disable export analysis too.
    	fmt.Fprintf(h, "vetflags %q\n", vetFlags)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //	    BinaryOnly     bool     // binary-only package (no longer supported)
    //	    ForTest        string   // package is only for use in named test
    //	    Export         string   // file containing export data (when using -export)
    //	    BuildID        string   // build ID of the compiled package (when using -export)
    //	    Module         *Module  // info about package's containing module, if any (can be nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	ForTest       string                `json:",omitempty"` // package is only for use in named test
    	Export        string                `json:",omitempty"` // file containing export data (set by go list -export)
    	BuildID       string                `json:",omitempty"` // build ID of the compiled package (set by go list -export)
    	Module        *modinfo.ModulePublic `json:",omitempty"` // info about package's module, if any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

        # INSECURE_PORT_MAPPING is used by sed
        # shellcheck disable=SC2089
        INSECURE_PORT_MAPPING='{ "name": "local", "containerPort": 8080, "hostPort": 8080},'
      fi
      # shellcheck disable=SC2090
      export INSECURE_PORT_MAPPING
    }
    
    # A helper function that bind mounts kubelet dirs for running mount in a chroot
    function prepare-mounter-rootfs {
      echo "Prepare containerized mounter"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    LogicalResult TensorListReserveOp::verify() {
      TensorListReserveOp op = *this;
      // This is required to populate derived attributes during export in a
      // meaningful way. Else during export to GraphDef element_type() query
      // will result in out of bounds access/assert.
      if (handle_dtype().getSubtypes().size() != 1) {
        return emitOpError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    LogicalResult EmptyTensorListOp::verify() {
      EmptyTensorListOp op = *this;
      // This is required to populate derived attributes during export in a
      // meaningful way. Else during export to GraphDef element_type() query
      // will result in out of bounds access/assert.
      if (handle_dtype().getSubtypes().size() != 1) {
        return emitOpError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      llvm::StringRef SaveString(const std::string& s) const;
    
      // The object graph we are traversing.
      const SavedObjectGraph& object_graph_;
      // The set of names to export. Empty means "export all".
      std::unordered_set<std::string> names_to_export_;
    
      // When we recursively follow the object graph tree structure from the root,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top