Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for element_types (0.18 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        }
    
        Location loc = op.getLoc();
        Type element_type = input_ty.getElementType();
    
        // Only float, int, and complex types are currently supported.
        if (!mlir::isa<FloatType>(element_type) &&
            !mlir::isa<IntegerType>(element_type) &&
            !mlir::isa<ComplexType>(element_type)) {
          return rewriter.notifyMatchFailure(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. doc/go_spec.html

    type, called the element type.
    The number of elements is called the length of the array and is never negative.
    </p>
    
    <pre class="ebnf">
    ArrayType   = "[" ArrayLength "]" ElementType .
    ArrayLength = Expression .
    ElementType = Type .
    </pre>
    
    <p>
    The length is part of the array's type; it must evaluate to a
    non-negative <a href="#Constants">constant</a>
    <a href="#Representability">representable</a> by a value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top