Home
last modified time | relevance | path

Searched defs:TupleType (Results 1 – 4 of 4) sorted by relevance

/external/federated-compute/fcp/base/
Dtracing_schema.h50 using TupleType = std::tuple<std::string>; variable
88 using TupleType = std::tuple<std::string, std::string, std::int32_t>; variable
126 …using TupleType = std::tuple<TracingStatusCode, TracingStatusCode, std::string, std::string, std::… variable
/external/pytorch/torch/csrc/utils/
Dinvalid_arguments.cpp61 struct TupleType : public Type { struct
62 TupleType(std::vector<std::unique_ptr<Type>> types) in TupleType() argument
65 bool is_matching(PyObject* object) override { in is_matching()
78 std::vector<std::unique_ptr<Type>> types;
/external/pytorch/aten/src/ATen/core/
Djit_type.h1145 struct TORCH_API TupleType : public NamedType { struct
1160 static TupleTypePtr create( in create() argument
1167 static TupleTypePtr create() { in create() argument
1187 return std::shared_ptr<TupleType>( in createWithContained() argument
1195 static const TypeKind Kind = TypeKind::TupleType; argument
1218 const auto& r_elements = rhs.castRaw<TupleType>()->elements(); in compare() argument
1230 std::vector<TypePtr> elements_;
1231 bool has_free_variables_;
1232 std::shared_ptr<FunctionSchema> schema_;
Dtype.cpp821 TupleType::TupleType( in TupleType() function in c10::TupleType