Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for bundles (0.16 sec)

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

          const SavedModelBundle& bundle,
          std::optional<absl::Span<const std::string>> exported_names,
          mlir::MLIRContext* context, tensorflow::MLIRImportOptions options) {
        // debug_info might not be loaded with loader_lite.
        GraphDebugInfo debug_info;
        if (bundle.debug_info != nullptr) debug_info = *bundle.debug_info;
    
        TF_ASSIGN_OR_RETURN(auto input,
    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. tensorflow/c/c_api.cc

      for (int i = 0; i < tags_len; i++) {
        tag_set.insert(string(tags[i]));
      }
    
      tensorflow::SavedModelBundle bundle;
      status->status =
          tensorflow::LoadSavedModel(session_options->options, run_options_proto,
                                     export_dir, tag_set, &bundle);
      if (!status->status.ok()) return nullptr;
    
      // Create a TF_Graph from the MetaGraphDef. This is safe as long as Session
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    			},
    			"", "",
    		},
    		{
    			"simple with client bundle",
    			&networking.ServerTLSSettings{
    				Mode:              networking.ServerTLSSettings_SIMPLE,
    				ServerCertificate: "Captain Jean-Luc Picard",
    				PrivateKey:        "Khan Noonien Singh",
    				CaCertificates:    "Commander William T. Riker",
    			},
    			"", "",
    		},
    		{
    			"simple sds with client bundle",
    			&networking.ServerTLSSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    		}
    		// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    		// Call the ServeHTTP to execute the handler,`func (api objectAPIHandlers) GetObjectHandler`  handles the request.
    		apiRouter.ServeHTTP(rec, req)
    
    		// Assert the response code with the expected status.
    		if rec.Code != testCase.expectedRespStatus {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

                           ResourceEffects::TPUExecute::get());
    
      // Conservatively mark resource handles as read and write, as without
      // analyzing TPUCompile, there is not sufficient information to determine
      // effects on resources. For the MLIR bridge, this op will never be
      // populated with resource handles and tf.TPUExecuteAndUpdateVariables is
      // used instead.
      for (Value value : getArgs()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	// Cached MachineInfo returned by cadvisor.
    	machineInfoLock sync.RWMutex
    	machineInfo     *cadvisorapi.MachineInfo
    
    	// Handles certificate rotations.
    	serverCertificateManager certificate.Manager
    
    	// Cloud provider interface.
    	cloud cloudprovider.Interface
    	// Handles requests to cloud provider with timeout
    	cloudResourceSyncManager cloudresource.SyncManager
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        decomposition/lifting occurs with the unpartitioned resource variables,
        transforming the IR in such a manner will allow for subsequent passes to operate
        on individual resource variable handles per core/device.
    
        For example, the following:
    
        ```mlir
        func @cluster(%arg0: tensor<!tf_type.resource<tensor<i32>>>, %arg1: tensor<!tf_type.resource<tensor<i32>>>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      //       the indices arugment,
      //     - first tranpose op takes perm [2, 1, 0, 3], and
      //     - second transpose op take perm [1, 2, 0, 3].
      //
      // Note the current pattern matching logic only handles when width == height.
      LogicalResult matchAndRewrite(TFL::GatherNdOp gather_nd_first,
                                    PatternRewriter &rewriter) const override {
        auto result_value = gather_nd_first.getResult();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    //			000000000000013d:  IMAGE_REL_AMD64_REL32	_errno
    //
    // The assembly below dispenses with the import symbol and just makes
    // a direct call to _errno.
    //
    // The code below handles indirect refs by redirecting the target of
    // the relocation from "__imp_XYZ" to "XYZ" (since the latter symbol
    // is what the Windows loader is expected to resolve). For direct refs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    			v = AppendValidation(v, fmt.Errorf("ISTIO_MUTUAL TLS cannot have associated private key"))
    		}
    		if tls.CaCertificates != "" {
    			v = AppendValidation(v, fmt.Errorf("ISTIO_MUTUAL TLS cannot have associated CA bundle"))
    		}
    		if tls.CredentialName != "" {
    			v = AppendValidation(v, fmt.Errorf("ISTIO_MUTUAL TLS cannot have associated credentialName"))
    		}
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top