HomeSort by relevance Sort by last modified time
    Searched refs:depth (Results 126 - 150 of 2251) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/tensorflow/tensorflow/lite/kernels/internal/reference/integer_ops/
log_softmax.h 25 int32_t diff_min, int32_t outer_size, int32_t depth,
45 for (int inner_index = 0; inner_index < depth; ++inner_index) {
47 std::max(max_in_row, input_data[outer_index * depth + inner_index]);
52 for (int inner_index = 0; inner_index < depth; ++inner_index) {
54 static_cast<int32_t>(input_data[outer_index * depth + inner_index]) -
80 for (int inner_index = 0; inner_index < depth; ++inner_index) {
82 static_cast<int32_t>(input_data[outer_index * depth + inner_index]) -
99 output_data[outer_index * depth + inner_index] =
102 output_data[outer_index * depth + inner_index] = kMinInt8;
softmax.h 45 const int depth = local
50 for (int c = 0; c < depth; ++c) {
51 max_in_row = std::max(max_in_row, input_data[i * depth + c]);
55 for (int c = 0; c < depth; ++c) {
57 static_cast<int32>(input_data[i * depth + c]) - max_in_row;
73 for (int c = 0; c < depth; ++c) {
75 static_cast<int32>(input_data[i * depth + c]) - max_in_row;
88 output_data[i * depth + c] =
92 output_data[i * depth + c] = -128;
  /external/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/
pop.pass.cpp 40 // seen files at each depth to determine the new depth after a 'pop()' operation.
54 TEST_CHECK(it.depth() == 0);
56 while (it.depth() != 2) {
57 if (it.depth() == 0)
71 // We must have seen every entry at depth 0 and 1.
75 else if (it.depth() == 1) {
76 // If we popped to depth 1 then there must be unseen entries
82 else if (it.depth() == 0) {
83 // If we popped to depth 0 there must be unseen entries at thi
    [all...]
  /external/oj-libjdwp/make/src/classes/build/tools/jdwpgen/
CommandSetNode.java 61 void genJavaClassSpecifics(PrintWriter writer, int depth) {
62 indent(writer, depth);
64 indent(writer, depth);
68 void genJava(PrintWriter writer, int depth) {
69 genJavaClass(writer, depth);
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
one_hot_op.cc 47 errors::InvalidArgument("depth must be a scalar, but got: ",
59 int64 depth; variable
60 OP_REQUIRES_OK(ctx, ctx->ConstantInputAsIntScalar(1, &depth));
62 ctx, depth >= 0,
63 errors::InvalidArgument("depth must be non-negative, got: ", depth));
67 ctx, XlaHelpers::OneHot(ctx->builder(), depth, axis, input_type(0),
79 REGISTER_XLA_OP(Name("OneHot").CompileTimeConstantInput("depth"), OneHotOp);
  /external/tensorflow/tensorflow/core/kernels/
eigen_softmax_test.cc 28 const int depth = 1024; local
32 Tensor<float, 2> input(depth, batch);
35 Tensor<float, 2> reference(depth, batch);
41 bcast[0] = depth;
57 for (int i = 0; i < depth; ++i) {
  /external/virglrenderer/src/gallium/auxiliary/util/
u_box.h 16 box->depth = 1;
31 box->depth = 1;
44 box->depth = 1;
60 box->depth = 1;
77 box->depth = d;
  /external/yapf/yapf/yapflib/
line_joiner.py 55 indent_amt = lines[0].depth * style.Get('INDENT_WIDTH')
59 if (len(lines) >= 3 and lines[2].depth >= lines[1].depth and
60 lines[0].depth != lines[2].depth):
61 # If lines[2]'s depth is greater than or equal to line[1]'s depth, we're not
63 # line with the same depth as the first line isn't part of the lines we
  /external/libchrome/mojo/public/cpp/bindings/tests/
sample_service_unittest.cc 138 void PrintSpacer(int depth) {
139 for (int i = 0; i < depth; ++i)
143 void Print(int depth, const char* name, bool value) {
144 PrintSpacer(depth);
148 void Print(int depth, const char* name, int32_t value) {
149 PrintSpacer(depth);
153 void Print(int depth, const char* name, uint8_t value) {
154 PrintSpacer(depth);
159 void Print(int depth,
162 PrintSpacer(depth);
263 int depth = 1; variable
    [all...]
  /external/turbine/java/com/google/turbine/parse/
VariableInitializerParser.java 78 int depth = 0; field in class:VariableInitializerParser
102 depth = 1;
115 depth++;
225 int depth = 1; local
226 while (depth > 0) {
231 depth++;
236 depth--;
249 int depth = 1; local
250 while (depth > 0) {
255 depth++
315 int depth = 1; local
    [all...]
  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
GLESTextureUtils.h 9 GLsizei width, GLsizei height, GLsizei depth,
21 GLsizei width, GLsizei height, GLsizei depth,
31 GLsizei width, GLsizei height, GLsizei depth,
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_clear.c 51 double depth, unsigned stencil)
78 /* Clearing only depth or stencil in a combined depth-stencil buffer. */
79 util_clear_depth_stencil(pipe, zsbuf, zs_buffers, depth, stencil,
85 cv = util_pack64_z_stencil(zsbuf->format, depth, stencil);
  /external/owasp/sanitizer/src/main/org/owasp/html/
Trie.java 57 private Trie(List<Map.Entry<String, Integer>> elements, int depth) {
58 this(elements, depth, 0, elements.size());
63 * @param depth the depth in the tree.
70 List<Map.Entry<String, Integer>> elements, int depth,
72 this.terminal = depth == elements.get(start).getKey().length();
89 char ch = elements.get(i).getKey().charAt(depth);
100 char lastCh = elements.get(start).getKey().charAt(depth);
102 char ch = elements.get(i).getKey().charAt(depth);
106 elements, depth + 1, childStart, i)
    [all...]
  /external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
split_collection_operators.cc 44 int32 node_id, int32 depth) const {
48 new DenseClassificationGrowStats(params_, depth));
52 new SparseClassificationGrowStats(params_, depth));
56 new LeastSquaresRegressionGrowStats(params_, depth));
60 new FixedSizeSparseClassificationGrowStats(params_, depth));
72 stats_[slot.node_id()] = CreateGrowStats(slot.node_id(), slot.depth());
84 new_slot->set_depth(pair.second->depth());
88 void SplitCollectionOperator::InitializeSlot(int32 node_id, int32 depth) {
89 stats_[node_id] = std::unique_ptr<GrowStats>(CreateGrowStats(node_id, depth));
140 int32* depth) const
    [all...]
  /external/tensorflow/tensorflow/core/kernels/fuzzing/
one_hot_fuzz.cc 27 auto depth = variable
28 tensorflow::ops::Placeholder(scope.WithOpName("depth"), DT_INT32);
31 (void)tensorflow::ops::OneHot(scope.WithOpName("output"), input, depth, on,
37 int32 depth; variable
42 depth = static_cast<int32>(data[0]);
48 depth = 1;
64 depth_tensor.scalar<int32>()() = depth;
69 {"depth", depth_tensor},
  /external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/
esextcTextureCubeMapArraySubImage3D.hpp 87 const glw::GLuint height, const glw::GLuint depth)
94 m_depth = depth;
129 void configureDataBuffer(glw::GLuint width, glw::GLuint height, glw::GLuint depth,
132 void configureCubeMapArrayTexture(glw::GLuint width, glw::GLuint height, glw::GLuint depth, STORAGE_TYPE storType,
134 void clearCubeMapArrayTexture(glw::GLuint width, glw::GLuint height, glw::GLuint depth, glw::GLuint clear_value);
137 void testTexSubImage3D(glw::GLuint width, glw::GLuint height, glw::GLuint depth,
139 void testCopyTexSubImage3D(glw::GLuint width, glw::GLuint height, glw::GLuint depth,
144 bool checkResults(glw::GLuint width, glw::GLuint height, glw::GLuint depth);
  /external/deqp-deps/SPIRV-Tools/kokoro/ndk-build/
build.sh 36 git clone --depth=1 https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers
37 git clone --depth=1 https://github.com/google/googletest external/googletest
38 git clone --depth=1 https://github.com/google/effcee external/effcee
39 git clone --depth=1 https://github.com/google/re2 external/re2
  /external/libchrome/base/json/
json_writer.h 58 bool BuildJSONString(const Value& node, size_t depth);
61 void IndentLine(size_t depth);
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_zsa.c 51 (!so->depth.enabled || so->depth.func == PIPE_FUNC_ALWAYS) &&
52 !so->depth.writemask;
55 * When we don't do this, the depth buffer is written for the entire primitive
89 /* Disable early z reject when no depth test is enabled.
90 * This avoids having to sample depth even though we know it's going to
92 if (so->depth.enabled == false || so->depth.func == PIPE_FUNC_ALWAYS)
97 VIVS_PE_DEPTH_CONFIG_DEPTH_FUNC(so->depth.enabled ? so->depth.fun
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/kokoro/ndk-build/
build.sh 36 git clone --depth=1 https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers
37 git clone --depth=1 https://github.com/google/googletest external/googletest
38 git clone --depth=1 https://github.com/google/effcee external/effcee
39 git clone --depth=1 https://github.com/google/re2 external/re2
  /external/tensorflow/tensorflow/lite/kernels/internal/
resize_bilinear_test.cc 28 void TestOneResizeBilinear(int batch, int depth, int input_width,
31 RuntimeShape input_dims_inference({batch, input_height, input_width, depth});
33 {batch, output_height, output_width, depth});
83 const int depth = ExponentialRandomPositiveInt(0.9f, 6, 50); local
89 TestOneResizeBilinear<uint8>(batch, depth, input_width, input_height,
99 const int depth = ExponentialRandomPositiveInt(0.9f, 6, 50); local
105 TestOneResizeBilinear<uint8>(batch, depth, input_width, input_height,
115 const int depth = ExponentialRandomPositiveInt(0.9f, 6, 50); local
121 TestOneResizeBilinear<float>(batch, depth, input_width, input_height,
131 const int depth = ExponentialRandomPositiveInt(0.9f, 6, 50) local
    [all...]
  /external/gemmlowp/standalone/
neon-gemm-kernel-benchmark.cc 114 // we call K the 'depth'. Note that M is the number of rows
119 // other dimension, besides the depth. So in the LHS, 'width'
123 // So in the LHS MxK matrix, the depth is K and the width in M.
124 // And in the RHS KxN matrix, the depth is K and the width in N.
131 // | RHS | | Depth
139 // Depth
150 // rather width vs depth. So we refer to "width-major" and "depth-major"
175 // 3 cells, each cell having dimensions (width=3, depth=4), laid out in
191 // 2 cells each having dimensions (width=5, depth=4), laid out i
5122 const int depth = BenchmarkDepthToFitInCache<Kernel>(); local
    [all...]
  /external/mesa3d/src/mesa/main/
texstorage.c 143 GLsizei width, GLsizei height, GLsizei depth,
148 GLint level, levelWidth = width, levelHeight = height, levelDepth = depth;
276 GLsizei height, GLsizei depth)
284 (void) depth;
310 GLsizei width, GLsizei height, GLsizei depth,
320 if (!_mesa_valid_tex_storage_dim(width, height, depth)) {
322 "glTex%sStorage%uD(width, height or depth < 1)",
352 /* check levels against width/height/depth */
353 if (levels > _mesa_get_tex_max_num_levels(target, width, height, depth)) {
376 /* additional checks for depth textures *
    [all...]
  /external/ImageMagick/coders/
psd-private.h 39 depth, member in struct:_PSDInfo
  /external/compiler-rt/test/asan/TestCases/Linux/
uar_signals.cc 42 void RecursiveFunction(int depth) {
43 if (depth == 0) return;
47 // printf("[%2d] n_signals: %d\n", depth, n_signals);
48 RecursiveFunction(depth - 1);
49 RecursiveFunction(depth - 1);

Completed in 2124 milliseconds

1 2 3 4 56 7 8 91011>>