Searched refs:Chunked (Results 1 – 12 of 12) sorted by relevance
/external/tensorflow/tensorflow/compiler/xla/python/ |
D | pmap_lib.h | 62 struct Chunked { struct 64 explicit Chunked(std::vector<int> chunks_) : chunks(std::move(chunks_)) {} in Chunked() argument 68 bool operator==(const Chunked& other) const { return chunks == other.chunks; } argument 69 bool operator!=(const Chunked& other) const { return chunks != other.chunks; } 85 using AvalDimSharding = absl::variant<NoSharding, Chunked, Unstacked>;
|
D | pmap_lib.cc | 49 } else if (py::isinstance<Chunked>(value)) { in PyShardingToCpp() 50 cpp_sharding.push_back(py::cast<Chunked>(value)); in PyShardingToCpp() 70 } else if (absl::holds_alternative<Chunked>(value)) { in CppShardingToPy() 71 py::handle handle = py::cast(absl::get<Chunked>(value)); in CppShardingToPy() 350 py::class_<Chunked> chunked(pmap_lib, "Chunked"); in BuildPmapSubmodule() 352 .def_readonly("chunks", &Chunked::chunks) in BuildPmapSubmodule() 354 [](const Chunked& chuncked) { in BuildPmapSubmodule() 358 .def("__eq__", [](const Chunked& self, py::object other) { in BuildPmapSubmodule() 359 if (!py::isinstance<Chunked>(other)) { in BuildPmapSubmodule() 362 return self == py::cast<const Chunked&>(other); in BuildPmapSubmodule()
|
/external/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.h | 622 bool Chunked) const; 630 bool Chunked) const;
|
D | CGOpenMPRuntime.cpp | 2364 bool Chunked, bool Ordered) { in getRuntimeSchedule() argument 2367 return Chunked ? (Ordered ? OMP_ord_static_chunked : OMP_sch_static_chunked) in getRuntimeSchedule() 2378 assert(!Chunked && "chunk was specified but schedule kind not known"); in getRuntimeSchedule() 2386 getRuntimeSchedule(OpenMPDistScheduleClauseKind ScheduleKind, bool Chunked) { in getRuntimeSchedule() argument 2388 return Chunked ? OMP_dist_sch_static_chunked : OMP_dist_sch_static; in getRuntimeSchedule() 2392 bool Chunked) const { in isStaticNonchunked() 2393 auto Schedule = getRuntimeSchedule(ScheduleKind, Chunked, /*Ordered=*/false); in isStaticNonchunked() 2398 OpenMPDistScheduleClauseKind ScheduleKind, bool Chunked) const { in isStaticNonchunked() 2399 auto Schedule = getRuntimeSchedule(ScheduleKind, Chunked); in isStaticNonchunked()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.h | 1061 bool Chunked) const; 1069 bool Chunked) const; 1076 bool Chunked) const; 1083 bool Chunked) const;
|
D | CGOpenMPRuntime.cpp | 2563 bool Chunked, bool Ordered) { in getRuntimeSchedule() argument 2566 return Chunked ? (Ordered ? OMP_ord_static_chunked : OMP_sch_static_chunked) in getRuntimeSchedule() 2577 assert(!Chunked && "chunk was specified but schedule kind not known"); in getRuntimeSchedule() 2585 getRuntimeSchedule(OpenMPDistScheduleClauseKind ScheduleKind, bool Chunked) { in getRuntimeSchedule() argument 2587 return Chunked ? OMP_dist_sch_static_chunked : OMP_dist_sch_static; in getRuntimeSchedule() 2591 bool Chunked) const { in isStaticNonchunked() 2593 getRuntimeSchedule(ScheduleKind, Chunked, /*Ordered=*/false); in isStaticNonchunked() 2598 OpenMPDistScheduleClauseKind ScheduleKind, bool Chunked) const { in isStaticNonchunked() 2599 OpenMPSchedType Schedule = getRuntimeSchedule(ScheduleKind, Chunked); in isStaticNonchunked() 2604 bool Chunked) const { in isStaticChunked() [all …]
|
/external/libwebsockets/READMEs/ |
D | README.unix-domain-reverse-proxy.md | 84 Chunked encoding that may have been used on the outgoing proxy client connection
|
D | README.coding.md | 543 5) Chunked Transfer-encoding is illegal in http/2, http/2 peers will actively
|
/external/python/cpython3/Doc/library/ |
D | http.client.rst | 293 Chunked transfer encoding has been added to the HTTP protocol 425 Chunked encoding support. The *encode_chunked* parameter was
|
/external/libwebsockets/ |
D | changelog | 503 - Chunked transfer encoding supported for client and server
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0b1.rst | 1126 Chunked transfer encoding support added to http.client.HTTPConnection
|
/external/libevent/ |
D | whatsnew-2.0.txt | 336 4.1. Chunked-memory internal representation
|