Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for typeName (0.39 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

      const T19 v19_;
      const T20 v20_;
    };
    
    template <typename T1, typename T2, typename T3, typename T4, typename T5,
        typename T6, typename T7, typename T8, typename T9, typename T10,
        typename T11, typename T12, typename T13, typename T14, typename T15,
        typename T16, typename T17, typename T18, typename T19, typename T20,
        typename T21>
    class ValueArray21 {
     public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

        typename T11, typename T12, typename T13, typename T14>
    struct Types14 {
      typedef T1 Head;
      typedef Types13<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> Tail;
    };
    
    template <typename T1, typename T2, typename T3, typename T4, typename T5,
        typename T6, typename T7, typename T8, typename T9, typename T10,
        typename T11, typename T12, typename T13, typename T14, typename T15>
    struct Types15 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 181.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      };
    };
    
    // Appends all elements in `range` to `values`.
    template <typename ValueT, typename Range>
    void Append(llvm::SmallVectorImpl<ValueT>& values, Range&& range) {
      values.insert(values.end(), range.begin(), range.end());
    }
    
    // Appends all elements in `range` to `values`.
    template <typename ValueT, typename Range, typename... RangeTs>
    void Append(llvm::SmallVectorImpl<ValueT>& values, Range&& range,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    //===----------------------------------------------------------------------===//
    // BatchMatMulV2Op & BatchMatMulOp
    //===----------------------------------------------------------------------===//
    
    template <typename OpT,
              typename std::enable_if<llvm::is_one_of<
                  OpT, BatchMatMulOp, BatchMatMulV2Op>::value>::type* = nullptr>
    static LogicalResult Verify(OpT op) {
      if (!HasRankAtLeast(op.getX(), 2)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        return f.isExactlyValue(value);
      });
    }
    
    // Returns true if `value` is compile-time constant and its splat value equals
    // to `raw_value`.
    template <typename T>
    bool IsConstantValueOf(mlir::TypedAttr value, T raw_value) {
      auto element_type = mlir::cast<ShapedType>(value.getType()).getElementType();
    
      if (mlir::isa<FloatType>(element_type)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // mlir::FloatAttr.
    template <typename FloatOrIntAtrr>
    DenseElementsAttr BuildConstRangeTensor(Type result_elem_type, int num_elements,
                                            FloatOrIntAtrr start_attr,
                                            FloatOrIntAtrr delta_attr) {
      using ValueType = typename FloatOrIntAtrr::ValueType;  // APInt or APFloat
      ValueType start = start_attr.getValue();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    // mlir::FloatAttr.
    template <typename FloatOrIntAtrr>
    DenseElementsAttr BuildConstRangeTensor(Type result_elem_type, int num_elements,
                                            FloatOrIntAtrr start_attr,
                                            FloatOrIntAtrr delta_attr) {
      using ValueType = typename FloatOrIntAtrr::ValueType;  // APInt or APFloat
      ValueType start = start_attr.getValue();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    using tensorflow::OpOrArgLocNameMapper;
    using tensorflow::OpOrArgNameMapper;
    using tensorflow::Status;
    using tflite::flex::IsAllowlistedFlexOp;
    
    template <typename T>
    using BufferOffset = flatbuffers::Offset<T>;
    
    template <typename T>
    using VectorBufferOffset = flatbuffers::Offset<flatbuffers::Vector<T>>;
    
    using CustomOptionsOffset = VectorBufferOffset<uint8_t>;
    
    namespace tfl = mlir::TFL;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    to those values. A type may be denoted by a <i>type name</i>, if it has one,
    or specified using a <i>type literal</i>, which composes a type from existing types.
    </p>
    
    <pre class="ebnf">
    Type      = TypeName | TypeLit | "(" Type ")" .
    TypeName  = identifier | QualifiedIdent .
    TypeLit   = ArrayType | StructType | PointerType | FunctionType | InterfaceType |
    	    SliceType | MapType | ChannelType .
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    // lambda with explicit template parameters.
    type TypeTemplateParam struct {
    	Name AST
    }
    
    func (ttp *TypeTemplateParam) print(ps *printState) {
    	ps.writeString("typename ")
    	ps.printInner(false)
    	ps.print(ttp.Name)
    }
    
    func (ttp *TypeTemplateParam) Traverse(fn func(AST) bool) {
    	if fn(ttp) {
    		ttp.Name.Traverse(fn)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top