HomeSort by relevance Sort by last modified time
    Searched refs:shape (Results 51 - 75 of 394) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/ml/nn/common/operations/
RNN.cpp 42 Shape *hiddenStateShape,
43 Shape *outputShape) {
67 const Shape &inputShape = input->shape();
83 const uint32_t batch_size = input_->shape().dimensions[0];
84 const uint32_t num_units = weights_->shape().dimensions[0];
85 const uint32_t input_size = input_->shape().dimensions[1];
86 const uint32_t input_weights_stride = weights_->shape().dimensions[1];
88 recurrent_weights_->shape().dimensions[1];
HashtableLookup.cpp 45 const int num_rows = value_->shape().dimensions[0];
49 for (int i = 0; i < static_cast<int>(lookup_->shape().dimensions[0]); i++) {
SVDF.cpp 62 Shape *stateShape,
63 Shape *outputShape) {
91 const Shape &inputShape = input->shape();
107 const int batch_size = input_->shape().dimensions[0];
108 const int input_size = input_->shape().dimensions[1];
109 const int num_units = weights_feature_->shape().dimensions[0];
110 const int memory_size = weights_time_->shape().dimensions[1];
111 const int weights_feature_stride = weights_feature_->shape().dimensions[1];
112 const int weights_time_stride = weights_time_->shape().dimensions[1]
    [all...]
  /external/pdfium/xfa/fxbarcode/datamatrix/
BC_SymbolInfo.h 31 SymbolShapeHint shape,
38 SymbolShapeHint shape,
42 SymbolShapeHint shape,
BC_SymbolInfo.cpp 121 SymbolShapeHint shape,
123 return lookup(dataCodewords, shape, true, e);
129 SymbolShapeHint shape = allowRectangular ? FORCE_NONE : FORCE_SQUARE; local
130 return lookup(dataCodewords, shape, fail, e);
133 SymbolShapeHint shape,
136 return lookup(dataCodewords, shape, nullptr, nullptr, fail, e);
139 SymbolShapeHint shape,
146 if (shape == FORCE_SQUARE && symbol->m_rectangular) {
149 if (shape == FORCE_RECTANGLE && !symbol->m_rectangular) {
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/dot/
dot.stg 68 node [fontsize=11, shape = <if(useBox)>box<else>circle, fixedsize=true, width=.4<endif>]; <name>
72 node [fontsize=11, shape = <if(useBox)>polygon,sides=4,peripheries=2<else>doublecircle, fixedsize=true, width=.6<endif>]; <name>
  /external/python/cpython2/Demo/turtle/
tdemo_I_dontlike_tiltdemo.py 8 turtle shape
9 (b) stamping that shape
20 shape("circle")
tdemo_paint.py 39 shape("circle")
tdemo_clock.py 64 second_hand.shape("second_hand")
67 minute_hand.shape("minute_hand")
70 hour_hand.shape("hour_hand")
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug010.go 23 bug10.go:7: error in shape across assignment
bug069.go 18 i, ok = <-(ca[0]); // fails: c.go:11: bad shape across assignment - cr=1 cl=2
bug075.go 15 x, ok = t.m[0]; //bug075.go:11: bad shape across assignment - cr=1 cl=2
  /prebuilts/go/linux-x86/test/fixedbugs/
bug010.go 23 bug10.go:7: error in shape across assignment
bug069.go 18 i, ok = <-(ca[0]); // fails: c.go:11: bad shape across assignment - cr=1 cl=2
bug075.go 15 x, ok = t.m[0]; //bug075.go:11: bad shape across assignment - cr=1 cl=2
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
memoryobject.c 9 if (buf->shape != NULL)
10 return buf->shape[0];
14 "exported buffer does not have any shape information associated "
23 if (src->ndim == 1 && src->shape != NULL) {
24 dest->shape = &(dest->smalltable[0]);
25 dest->shape[0] = get_shape0(src);
115 _strided_copy_nd(char *dest, char *src, int nd, Py_ssize_t *shape,
125 for (k = 0; k<shape[0]; k++) {
140 outstride *= shape[k];
142 for (k=0; k<shape[nd-1]; k++) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
memoryobject.c 9 if (buf->shape != NULL)
10 return buf->shape[0];
14 "exported buffer does not have any shape information associated "
23 if (src->ndim == 1 && src->shape != NULL) {
24 dest->shape = &(dest->smalltable[0]);
25 dest->shape[0] = get_shape0(src);
115 _strided_copy_nd(char *dest, char *src, int nd, Py_ssize_t *shape,
125 for (k = 0; k<shape[0]; k++) {
140 outstride *= shape[k];
142 for (k=0; k<shape[nd-1]; k++) {
    [all...]
  /external/python/cpython2/Objects/
memoryobject.c 9 if (buf->shape != NULL)
10 return buf->shape[0];
14 "exported buffer does not have any shape information associated "
23 if (src->ndim == 1 && src->shape != NULL) {
24 dest->shape = &(dest->smalltable[0]);
25 dest->shape[0] = get_shape0(src);
115 _strided_copy_nd(char *dest, char *src, int nd, Py_ssize_t *shape,
125 for (k = 0; k<shape[0]; k++) {
140 outstride *= shape[k];
142 for (k=0; k<shape[nd-1]; k++)
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
Example2_24Test.java 41 this.yamlConstructors.put(new Tag("tag:clarkevans.com,2002:shape"),
55 Shape shape = new Shape(values); local
56 return shape;
96 this.representers.put(Shape.class, new RepresentShape());
105 Shape shape = (Shape) data; local
106 List<Entity> value = shape.getEntities()
240 Shape shape = (Shape) yaml.load(Util.getLocalResource("specification\/example2_24.yaml")); local
    [all...]
  /cts/apps/CameraITS/tests/scene1/
test_yuv_jpeg_all.py 65 assert(img.shape[0] == size[1])
66 assert(img.shape[1] == size[0])
67 assert(img.shape[2] == 3)
  /frameworks/ml/nn/common/include/
CpuExecutor.h 57 Shape shape() const { function in struct:android::nn::RunTimeOperandInfo
58 return Shape{.type = type, .dimensions = dimensions, .scale = scale, .offset = zeroPoint};
136 return operand->shape().dimensions.size();
140 return operand->shape().dimensions[i];
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/shaping/
ArabicShapingRegTest.java 480 result = shaper.shape(test.source);
515 len = shaper.shape(src, 0, src.length, null, 0, 0);
544 shaper.shape(src, 0, len);
635 * public int shape(char[] source, int sourceStart, int sourceLength,
652 as.shape(source, negNum[i], 0, dest, 0, 0);
653 errln("ArabicShaping.shape(char[],int,int,char[],int,int) was " +
659 as.shape(source, 0, negNum[i], dest, 0, 0);
660 errln("ArabicShaping.shape(char[],int,int,char[],int,int) was " +
667 as.shape(source, 3, 3, dest, 0, 0);
668 errln("ArabicShaping.shape(char[],int,int,char[],int,int) was "
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/shaping/
ArabicShapingRegTest.java 479 result = shaper.shape(test.source);
514 len = shaper.shape(src, 0, src.length, null, 0, 0);
543 shaper.shape(src, 0, len);
634 * public int shape(char[] source, int sourceStart, int sourceLength,
651 as.shape(source, negNum[i], 0, dest, 0, 0);
652 errln("ArabicShaping.shape(char[],int,int,char[],int,int) was " +
658 as.shape(source, 0, negNum[i], dest, 0, 0);
659 errln("ArabicShaping.shape(char[],int,int,char[],int,int) was " +
666 as.shape(source, 3, 3, dest, 0, 0);
667 errln("ArabicShaping.shape(char[],int,int,char[],int,int) was "
    [all...]
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
OpTestCase.java 107 // If the first version is s -> s.foo(), can be used with s -> s.mapToInt(i -> i).foo().mapToObj(i -> i) to test all shape variants
143 // If the first version is s -> s.foo(), can be used with s -> s.mapToInt(i -> i).foo().mapToObj(i -> i) to test all shape variants
251 final StreamShape shape; field in class:OpTestCase.ExerciseDataStreamBuilder
275 this.shape = ((AbstractPipeline<?, U, ?>) m.apply(data.stream())).getOutputShape();
277 // Have to initiate from the output shape of the last stream
279 testSet.addAll(testScenarios.get(shape));
334 if (ts.getShape() == shape) {
354 if (ts.getShape() == shape) {
449 default R run(Function<S_OUT, R> terminalF, S_OUT source, StreamShape shape) {
460 public Object run(Function terminalF, BaseStream source, StreamShape shape) {
547 StreamShape shape = ap.getOutputShape(); local
641 private final StreamShape shape; field in class:OpTestCase.ShortCircuitOp
    [all...]
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
OpTestCase.java 108 // If the first version is s -> s.foo(), can be used with s -> s.mapToInt(i -> i).foo().mapToObj(i -> i) to test all shape variants
144 // If the first version is s -> s.foo(), can be used with s -> s.mapToInt(i -> i).foo().mapToObj(i -> i) to test all shape variants
252 final StreamShape shape; field in class:OpTestCase.ExerciseDataStreamBuilder
276 this.shape = ((AbstractPipeline<?, U, ?>) m.apply(data.stream())).getOutputShape();
278 // Have to initiate from the output shape of the last stream
280 testSet.addAll(testScenarios.get(shape));
335 if (ts.getShape() == shape) {
355 if (ts.getShape() == shape) {
450 default R run(Function<S_OUT, R> terminalF, S_OUT source, StreamShape shape) {
461 public Object run(Function terminalF, BaseStream source, StreamShape shape) {
548 StreamShape shape = ap.getOutputShape(); local
642 private final StreamShape shape; field in class:OpTestCase.ShortCircuitOp
    [all...]

Completed in 1583 milliseconds

1 23 4 5 6 7 8 91011>>