Home
last modified time | relevance | path

Searched refs:block_depth (Results 1 – 14 of 14) sorted by relevance

/external/tensorflow/tensorflow/python/ops/linalg/
Dlinear_operator_circulant.py64 block_depth, argument
101 if block_depth not in allowed_block_depths:
103 (allowed_block_depths, block_depth))
104 self._block_depth = block_depth
124 self._block_shape_tensor = s_shape[-self.block_depth:]
149 if spectrum.get_shape().ndims < self.block_depth:
152 (self.block_depth, spectrum))
156 def block_depth(self): member in _BaseLinearOperatorCirculant
194 return self.spectrum.get_shape()[-self.block_depth:]
247 vec_leading_shape = vec_shape[:-self.block_depth]
[all …]
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dconstruct.cpp99 int block_depth = function->GetBlockDepth(block); in blocks() local
100 if (block_depth < header_depth) { in blocks()
109 if (block_depth == header_depth && type() == ConstructType::kSelection && in blocks()
/external/deqp-deps/SPIRV-Tools/source/val/
Dconstruct.cpp99 int block_depth = function->GetBlockDepth(block); in blocks() local
100 if (block_depth < header_depth) { in blocks()
109 if (block_depth == header_depth && type() == ConstructType::kSelection && in blocks()
/external/mesa3d/src/mesa/main/
Dformat_parser.py229 …def __init__(self, name, layout, block_width, block_height, block_depth, channels, swizzle, colors… argument
252 self.block_depth = block_depth
365 return self.block_width != 1 or self.block_height != 1 or self.block_depth != 1
559 block_depth = int(fields[4])
568 … yield Format(name, layout, block_width, block_height, block_depth, channels, swizzle, colorspace)
Dformat_info.py191 …lockHeight = {1}, .BlockDepth = {2},'.format(fmat.block_width, fmat.block_height, fmat.block_depth)
/external/gemmlowp/internal/
Dpack.h175 int block_depth) const { in block() argument
179 assert(start_depth + block_depth <= depth_); in block()
181 return SideMap(data(start_width, start_depth), block_width, block_depth, in block()
/external/tensorflow/tensorflow/core/kernels/
Ddepthwise_conv_op_gpu.h1686 int block_depth = 8;
1689 for (; block_depth > 1; block_depth /= 2) {
1691 for (; block_height * args.in_cols * block_depth & 31;
1695 int block_size = block_height * args.in_cols * block_depth;
1705 switch (block_depth) {
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.linalg.-linear-operator-circulant3-d.pbtxt16 name: "block_depth"
Dtensorflow.linalg.-linear-operator-circulant2-d.pbtxt16 name: "block_depth"
Dtensorflow.linalg.-linear-operator-circulant.pbtxt16 name: "block_depth"
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.linalg.-linear-operator-circulant3-d.pbtxt16 name: "block_depth"
Dtensorflow.linalg.-linear-operator-circulant2-d.pbtxt16 name: "block_depth"
Dtensorflow.linalg.-linear-operator-circulant.pbtxt16 name: "block_depth"
/external/v8/src/wasm/
Dfunction-body-decoder-impl.h887 size_t block_depth) { in Validate() argument