Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 642 for attr_ (0.04 sec)

  1. tensorflow/compiler/jit/shape_inference.cc

                  value.add_int64_val(dim.size());
                }
              }
              AddNodeAttr("value", value, &const_def);
              for (auto const& attr : n->attrs()) {
                if (*attr.first.begin() == '_') {
                  AddNodeAttr(attr.first, attr.second, &const_def);
                }
              }
    
              TF_ASSIGN_OR_RETURN(Node * const_node, graph->AddNode(const_def));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_composite_to_tfl_custom.cc

      const char* key = pair.getName().data();
      const auto attr = pair.getValue();
    
      if (mlir::isa<::mlir::IntegerAttr>(attr)) {
        fbb->Int(key, mlir::dyn_cast<mlir::IntegerAttr>(attr).getInt());
        return success();
      }
    
      if (mlir::isa<::mlir::FloatAttr>(attr)) {
        fbb->Double(key, mlir::dyn_cast<mlir::FloatAttr>(attr).getValueAsDouble());
        return success();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

            // Same type repeated "repeats" times.
            Attribute attr = attrs_[output_arg.type_attr()];
            if (!attr)
              return InvalidArgument("Missing attribute '", output_arg.type_attr(),
                                     "' required for output '", output_arg.name(),
                                     "'");
            TypedAttr type_attr = mlir::dyn_cast<TypedAttr>(attr);
            if (!type_attr)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  4. src/log/slog/doc.go

    # Attrs and Values
    
    An [Attr] is a key-value pair. The Logger output methods accept Attrs as well as
    alternating keys and values. The statement
    
    	slog.Info("hello", slog.Int("count", 3))
    
    behaves the same as
    
    	slog.Info("hello", "count", 3)
    
    There are convenience constructors for [Attr] such as [Int], [String], and [Bool]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/html/template/error.go

    	// Examples:
    	//   {{define "main"}}<div {{template "attrs"}}>{{end}}
    	//   {{define "attrs"}}href="{{.URL}}"{{end}}
    	// Discussion:
    	//   Package html/template looks through template calls to compute the
    	//   context.
    	//   Here the {{.URL}} in "attrs" must be treated as a URL when called
    	//   from "main", but you will get this error if "attrs" is not defined
    	//   when "main" is parsed.
    	ErrNoSuchTemplate
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  6. src/log/slog/text_handler.go

    	return h.commonHandler.enabled(level)
    }
    
    // WithAttrs returns a new [TextHandler] whose attributes consists
    // of h's attributes followed by attrs.
    func (h *TextHandler) WithAttrs(attrs []Attr) Handler {
    	return &TextHandler{commonHandler: h.commonHandler.withAttrs(attrs)}
    }
    
    func (h *TextHandler) WithGroup(name string) Handler {
    	return &TextHandler{commonHandler: h.commonHandler.withGroup(name)}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      return absl::OkStatus();
    }
    
    Status Encapsulator::GetFunctionNameAttr(Node const* node, string* attr) const {
      AttrSlice attrs = node->attrs();
      attr->clear();
      for (const auto& node_attr : attrs) {
        if (node_attr.first == group_attribute_) {
          TF_RETURN_IF_ERROR(AttrValueHasType(node_attr.second, "string"));
          *attr = node_attr.second.s();
          break;
        }
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

      let description = [{
        The `attr` operation stores TF op's attribute, which doesn't support
        arithmetic operations.
    
        Example:
    
        ```mlir
        %1 = "tfr.constant"() { value: i32 } : () -> !tfr.attr
        %2 = "tfr.constant"() { value: [i32, f32] } : () -> !tfr.attr
        %3 = tfr.constant [i32, f32] -> !tfr.attr
        %4 = tfr.constant f32 -> !tfr.attr
        ```
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal_test.go

    type AttrTest struct {
    	Int   int     `xml:",attr"`
    	Named int     `xml:"int,attr"`
    	Float float64 `xml:",attr"`
    	Uint8 uint8   `xml:",attr"`
    	Bool  bool    `xml:",attr"`
    	Str   string  `xml:",attr"`
    	Bytes []byte  `xml:",attr"`
    }
    
    type AttrsTest struct {
    	Attrs []Attr  `xml:",any,attr"`
    	Int   int     `xml:",attr"`
    	Named int     `xml:"int,attr"`
    	Float float64 `xml:",attr"`
    	Uint8 uint8   `xml:",attr"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/tf-gradient-attr.mlir

    Yifan Jiang <******@****.***> 1684349180 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 17 18:52:47 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top