Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 164 for name_$ (0.14 sec)

  1. tensorflow/c/experimental/saved_model/core/revived_types/variable.cc

    namespace tensorflow {
    
    Variable::Variable(ImmediateExecutionContext* ctx, DataType dtype,
                       TensorShape shape, absl::optional<std::string> name,
                       ImmediateTensorHandlePtr handle)
        : TensorHandleConvertible(std::move(handle)),
          name_(name.has_value() ? *name : "Variable"),
          dtype_(dtype),
          shape_(shape),
          ctx_(ctx) {}
    
    Variable::~Variable() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 08 20:55:40 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/node_matchers.h

    // Public interface.
    
    // Matches a node with name `name`.
    impl::NodeMatcherProperties Name(string name);
    
    // Matches a node with op `op`.
    impl::NodeMatcherProperties Op(string op);
    
    // Matches a node with assigned device `assigned_device`.
    impl::NodeMatcherProperties AssignedDevice(string assigned_device);
    
    // Matches a node with a boolean typed attribute named `name` and with value
    // `value`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_helper.h

      TempFile(const std::string& temp_file_name, std::ios::openmode mode);
      TempFile(TempFile&& rhs);
      ~TempFile() override;
      const std::string getName() const;
      bool truncate();
    
     private:
      const std::string name_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 26 14:56:58 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/model/attr_spec.cc

    namespace tensorflow {
    namespace generator {
    
    AttrSpec AttrSpec::Create(const OpDef::AttrDef& attr_def) {
      return AttrSpec(attr_def);
    }
    
    AttrSpec::AttrSpec(const OpDef::AttrDef& attr_def) {
      name_ = attr_def.name();
      description_ = attr_def.description();
      full_type_ = attr_def.type();
      default_value_ = attr_def.default_value();
      if (str_util::StartsWith(full_type_, "list(")) {
        is_list_ = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/scope_internal.h

      std::shared_ptr<bool> scope_used_ = nullptr;
    
      const std::vector<Operation> control_deps_;
    
      // The fully-qualified name of this scope (i.e. includes any parent scope
      // names).
      const string name_ = "";
      const string op_name_ = "";
      const bool exit_on_error_ = false;
      const string kernel_label_ = "";
      const string device_ = "";
      const string assigned_device_ = "";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:46:43 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/model/arg_spec.cc

    #include "tensorflow/c/experimental/ops/gen/model/arg_spec.h"
    
    namespace tensorflow {
    namespace generator {
    
    ArgSpec::ArgSpec(const OpDef::ArgDef& arg_def, ArgType arg_type, int position)
        : name_(arg_def.name()),
          description_(arg_def.description()),
          arg_type_(arg_type),
          position_(position) {}
    
    ArgSpec ArgSpec::CreateInput(const OpDef::ArgDef& arg_def, int position) {
      if (arg_def.is_ref()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/signature_def_function_metadata.h

    namespace tensorflow {
    
    // SignatureDefParam represents a named Tensor input or output to a
    // SignatureDefFunction.
    class SignatureDefParam {
     public:
      SignatureDefParam(std::string name, TensorSpec spec);
    
      const std::string& name() const;
    
      const TensorSpec& spec() const;
    
     private:
      std::string name_;
      TensorSpec spec_;
    };
    
    class SignatureDefFunctionMetadata {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 29 23:11:59 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/stream_executor/stream_executor_internal.h

                         SP_TimerFns timer_fns);
      ~CPlatform() override;
    
      Id id() const override { return const_cast<int*>(&plugin_id_value_); }
      const std::string& Name() const override { return name_; }
      int VisibleDeviceCount() const override {
        int visible_device_count = 0;
        tensorflow::TF_StatusPtr c_status(TF_NewStatus());
        platform_fns_.get_device_count(&platform_, &visible_device_count,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_unified_experimental_graph.cc

    // "execution" of operation, i.e. adding them to the function.
    class GraphContext : public TracingContext {
     public:
      explicit GraphContext(const char* name)
          : TracingContext(kGraph),
            graph_(new TF_Graph(), TF_DeleteGraph),
            name_(name) {}
    
      void Release() override { delete this; }
    
      TracingOperation* CreateOperation() override {
        return new GraphOperation(graph_.get());
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/gen/model/op_spec.cc

    namespace tensorflow {
    namespace generator {
    
    OpSpec OpSpec::Create(const OpDef& op_def, const ApiDef& api_def) {
      return OpSpec(op_def, api_def);
    }
    
    OpSpec::OpSpec(const OpDef& op_def, const ApiDef& api_def)
        : name_(op_def.name()),
          summary_(api_def.summary()),
          description_(api_def.description()) {
      absl::flat_hash_set<string> inferred_attrs;
      // Parse the arguments
      for (const OpDef::ArgDef& arg_def : op_def.input_arg()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 01 21:05:56 UTC 2021
    - 2.1K bytes
    - Viewed (0)
Back to top