Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Reset (0.18 sec)

  1. tensorflow/c/eager/c_api.cc

            "Invalid tensorflow.ServerDef protocol buffer");
        return;
      }
      status->status =
          tensorflow::unwrap(ctx)->GetDistributedManager()->SetOrUpdateServerDef(
              server_def, /*reset_context=*/true, keep_alive_secs,
              init_timeout_in_ms, retries, clear_existing_contexts);
    #endif  // !IS_MOBILE_PLATFORM
    }
    
    TF_CAPI_EXPORT extern void TFE_ContextUpdateServerDef(TFE_Context* ctx,
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Mar 12 20:00:09 GMT 2024
    - 43.9K bytes
    - Viewed (2)
  2. tensorflow/c/c_api.cc

      for (int i = 0; i < ncontainers; ++i) {
        container_names[i] = containers[i];
      }
    
      status->status = Reset(opt->options, container_names);
    }
    
    extern "C" {
    
    void TF_Reset(const TF_SessionOptions* opt, const char** containers,
                  int ncontainers, TF_Status* status) {
      TF_Reset_Helper(opt, containers, ncontainers, status);
    }
    
    }  // end extern "C"
    
    namespace tensorflow {
    
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/next_pluggable_device/c_api.cc

                opaque_plugin_resource, plugin_resource_name, delete_func);
            return tensorflow::OkStatus();
          });
    
      if (cc_status.ok()) {
        tf_plugin_resource_ptr.reset(tf_plugin_resource);
        *result_plugin_resource = tf_plugin_resource_ptr->GetOpaquePluginResource();
      } else {
        *result_plugin_resource = nullptr;
      }
      status->status = cc_status;
    }
    
    C++
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Tue Jan 09 00:52:04 GMT 2024
    - 13.9K bytes
    - Viewed (1)
Back to top