Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/delegates/gpu/common/task/
Dprofiling_info.h28 struct DispatchInfo { struct
29 std::string label;
30 absl::Duration duration;
31 uint64_t read_mem_size = 0;
32 uint64_t write_mem_size = 0;
33 uint64_t flops = 0;
Dgpu_operation.h131 struct DispatchInfo { struct
137 std::vector<DispatchInfo>* dispatches) const; argument
/external/skia/third_party/vello/src/
Dlib.rs143 struct DispatchInfo { struct
144 use_large_path_scan: bool,
147 path_reduce: WorkgroupSize,
148 path_reduce2: WorkgroupSize,
149 path_scan1: WorkgroupSize,
150 path_scan: WorkgroupSize,
151 bbox_clear: WorkgroupSize,
152 flatten: WorkgroupSize,
153 draw_reduce: WorkgroupSize,
154 draw_leaf: WorkgroupSize,
[all …]
Dencoding.rs219 pub fn workgroup_counts(self: &RenderConfiguration) -> ffi::DispatchInfo { in workgroup_counts()
354 impl From<&vello_encoding::WorkgroupCounts> for ffi::DispatchInfo { implementation