Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/c/experimental/ops/gen/cpp/views/attr_view.cc

          return "/* ERROR */";
      }
    }
    
    string AttrView::VariableStrLen() const {
      return Call("strlen", {VariableName()});
    }
    
    string AttrView::VariableSpanData() const {
      return Call(VariableName(), "data", {}, ".");
    }
    
    string AttrView::VariableSpanLen() const {
      return Call(VariableName(), "length", {}, ".");
    }
    
    string AttrView::InputArg(bool with_default_value) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/cpp/views/op_argument_view.cc

          variable_name_(ArgView(arg).VariableName()) {}
    
    OpArgumentView::OpArgumentView(AttrSpec attr)
        : type_name_(AttrView(attr).VariableType()),
          variable_name_(AttrView(attr).VariableName()),
          default_value_(AttrView(attr).DefaultValue()) {}
    
    }  // namespace cpp
    }  // namespace generator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/views/op_view.cc

    }
    
    const std::vector<ArgView>& OpView::Inputs() const { return input_args_; }
    
    const std::vector<ArgView>& OpView::Outputs() const { return output_args_; }
    
    const std::vector<AttrView>& OpView::Attributes() const {
      return argument_attrs_;
    }
    
    const std::vector<OpArgumentView>& OpView::AllArguments() const {
      return all_arguments_;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top