Searched refs:format_descriptor (Results 1 – 3 of 3) sorted by relevance
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/core/ |
D | data_type.h | 69 {"bool", 1, "bool", py::format_descriptor<bool>::format(), CV_8U}, // DE_BOOL 70 {"int8", 1, "int8", py::format_descriptor<int8_t>::format(), CV_8S}, // DE_INT8 71 {"uint8", 1, "uint8", py::format_descriptor<uint8_t>::format(), CV_8U}, // DE_UINT8 72 {"int16", 2, "int16", py::format_descriptor<int16_t>::format(), CV_16S}, // DE_INT16 73 … {"uint16", 2, "uint16", py::format_descriptor<uint16_t>::format(), CV_16U}, // DE_UINT16 74 {"int32", 4, "int32", py::format_descriptor<int32_t>::format(), CV_32S}, // DE_INT32 75 … {"uint32", 4, "uint32", py::format_descriptor<uint32_t>::format(), kCVInvalidType}, // DE_UINT32 76 {"int64", 8, "int64", py::format_descriptor<int64_t>::format(), kCVInvalidType}, // DE_INT64 77 … {"uint64", 8, "uint64", py::format_descriptor<uint64_t>::format(), kCVInvalidType}, // DE_UINT64 79 … {"float32", 4, "float32", py::format_descriptor<float>::format(), CV_32F}, // DE_FLOAT32 [all …]
|
/third_party/mindspore/mindspore/ccsrc/pybind_api/ir/ |
D | tensor_py.cc | 107 return py::format_descriptor<float>::format(); in GetPyTypeFormat() 109 return py::format_descriptor<double>::format(); in GetPyTypeFormat() 111 return py::format_descriptor<uint8_t>::format(); in GetPyTypeFormat() 113 return py::format_descriptor<uint16_t>::format(); in GetPyTypeFormat() 115 return py::format_descriptor<uint32_t>::format(); in GetPyTypeFormat() 117 return py::format_descriptor<uint64_t>::format(); in GetPyTypeFormat() 119 return py::format_descriptor<int8_t>::format(); in GetPyTypeFormat() 121 return py::format_descriptor<int16_t>::format(); in GetPyTypeFormat() 123 return py::format_descriptor<int32_t>::format(); in GetPyTypeFormat() 125 return py::format_descriptor<int64_t>::format(); in GetPyTypeFormat() [all …]
|
/third_party/boost/libs/spirit/classic/test/ |
D | select_p_with_rule.cpp | 30 list_p(format_descriptor, ch_p(',')) in definition() 33 format_descriptor = in definition() 63 rule<ScannerT> format_descriptor; member
|