HomeSort by relevance Sort by last modified time
    Searched defs:memory_size (Results 1 - 25 of 32) sorted by null

1 2

  /external/tensorflow/tensorflow/core/kernels/
typed_queue.h 112 int memory_size = 0; local
115 memory_size += SizeOf(sq);
117 return memory_size;
  /external/pdfium/core/fxge/win32/
cfx_windowsdib.h 25 size_t memory_size; member in struct:WINDIB_Open_Args_
  /frameworks/ml/nn/runtime/test/specs/V1_0/
svdf_state.mod.py 20 memory_size = 10 variable
26 weights_time = Input("weights_time", "TENSOR_FLOAT32", "{%d, %d}" % (units, memory_size))
28 state_in = Input("state_in", "TENSOR_FLOAT32", "{%d, %d}" % (batches, memory_size*units))
31 state_out = Output("state_out", "TENSOR_FLOAT32", "{%d, %d}" % (batches, memory_size*units))
svdf.mod.py 22 memory_size = 10 variable
28 weights_time = Input("weights_time", "TENSOR_FLOAT32", "{%d, %d}" % (features, memory_size))
30 state_in = Input("state_in", "TENSOR_FLOAT32", "{%d, %d}" % (batches, memory_size*features))
33 state_out = IgnoredOutput("state_out", "TENSOR_FLOAT32", "{%d, %d}" % (batches, memory_size*features))
60 state_in: [0 for _ in range(batches * memory_size * features)],
127 output0 = {state_out: [0 for _ in range(batches * memory_size * features)],
svdf2.mod.py 22 memory_size = 10 variable
28 weights_time = Input("weights_time", "TENSOR_FLOAT32", "{%d, %d}" % (features, memory_size))
30 state_in = Input("state_in", "TENSOR_FLOAT32", "{%d, %d}" % (batches, memory_size*features))
33 state_out = IgnoredOutput("state_out", "TENSOR_FLOAT32", "{%d, %d}" % (batches, memory_size*features))
75 state_in: [0 for _ in range(batches * memory_size * features)],
142 output0 = {state_out: [0 for _ in range(batches * memory_size * features)],
  /frameworks/ml/nn/runtime/test/specs/V1_1/
svdf_state_relaxed.mod.py 20 memory_size = 10 variable
26 weights_time = Input("weights_time", "TENSOR_FLOAT32", "{%d, %d}" % (units, memory_size))
28 state_in = Input("state_in", "TENSOR_FLOAT32", "{%d, %d}" % (batches, memory_size*units))
31 state_out = Output("state_out", "TENSOR_FLOAT32", "{%d, %d}" % (batches, memory_size*units))
svdf2_relaxed.mod.py 22 memory_size = 10 variable
28 weights_time = Input("weights_time", "TENSOR_FLOAT32", "{%d, %d}" % (features, memory_size))
30 state_in = Input("state_in", "TENSOR_FLOAT32", "{%d, %d}" % (batches, memory_size*features))
33 state_out = IgnoredOutput("state_out", "TENSOR_FLOAT32", "{%d, %d}" % (batches, memory_size*features))
76 state_in: [0 for _ in range(batches * memory_size * features)],
143 output0 = {state_out: [0 for _ in range(batches * memory_size * features)],
svdf_relaxed.mod.py 22 memory_size = 10 variable
28 weights_time = Input("weights_time", "TENSOR_FLOAT32", "{%d, %d}" % (features, memory_size))
30 state_in = Input("state_in", "TENSOR_FLOAT32", "{%d, %d}" % (batches, memory_size*features))
33 state_out = IgnoredOutput("state_out", "TENSOR_FLOAT32", "{%d, %d}" % (batches, memory_size*features))
61 state_in: [0 for _ in range(batches * memory_size * features)],
128 output0 = {state_out: [0 for _ in range(batches * memory_size * features)],
  /system/core/init/
service_test.cpp 32 constexpr auto memory_size = sizeof(Service); local
33 alignas(alignof(Service)) char old_memory[memory_size];
35 for (std::size_t i = 0; i < memory_size; ++i) {
56 for (std::size_t i = 0; i < memory_size; ++i) {
  /external/google-breakpad/src/client/linux/microdump_writer/
microdump_writer_unittest.cc 77 const uint32_t memory_size = sysconf(_SC_PAGESIZE); local
85 info.start_addr = memory_size;
86 info.size = memory_size;
  /external/syslinux/com32/hdt/
hdt-menu-memory.c 48 unsigned long memory_size = memsize_e820(map, count); local
50 memory_size >> 10, memory_size);
52 "Detected Memory : %lu MiB (%lu KiB)", memory_size >> 10,
53 memory_size);
  /external/e2fsprogs/intl/
printf-parse.c 88 size_t memory_size; \
94 memory_size = xtimes (a_allocated, sizeof (argument)); \
95 if (size_overflow_p (memory_size)) \
99 ? realloc (a->arg, memory_size) \
100 : malloc (memory_size)); \
504 size_t memory_size; local
508 memory_size = xtimes (d_allocated, sizeof (DIRECTIVE));
509 if (size_overflow_p (memory_size))
512 memory = realloc (d->dir, memory_size);
  /external/ltp/testcases/kernel/mem/page/
page01.c 74 int memory_size; local
83 memory_size = 256 * 1024;
86 if (sscanf(argv[1], "%d", &memory_size) != 1)
117 /* "memory_size" */
121 memory_pointer = malloc(memory_size * sizeof(int));
146 for (j = 1; j <= memory_size; j++)
159 for (j = 1; j <= memory_size; j++) {
page02.c 73 int memory_size, half_memory_size; local
89 memory_size = 128 * 1024;
92 if (sscanf(argv[1], "%d", &memory_size) != 1)
101 half_memory_size = memory_size / 2;
125 /* "memory_size" */
129 memory_pointer = malloc(memory_size * sizeof(int));
148 memory_size, i);
155 (memory_size / 2);
178 (memory_size / 2);
  /frameworks/ml/nn/common/operations/
SVDF.cpp 79 const uint32_t memory_size = SizeOfDimension(weights_time, 1); local
92 stateShape->dimensions = { batch_size, memory_size * num_filters };
111 const int memory_size = SizeOfDimension(weights_time_, 1); local
114 sizeof(float) * batch_size * memory_size * num_filters);
117 float* state_ptr_batch = GetBuffer<float>(state_out_) + b * memory_size * num_filters;
119 float* state_ptr = state_ptr_batch + c * memory_size;
120 state_ptr[memory_size - 1] = 0.0;
124 // is achieved by starting at state->data.f[memory_size - 1] and having the
125 // stride equal to memory_size.
129 &GetBuffer<float>(state_out_)[memory_size - 1], memory_size)
141 GetBuffer<float>(weights_time_), state_out_ptr_batch, memory_size, num_filters, local
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/kernels/
svdf.cc 73 const int memory_size = weights_time->dims->data[1]; local
86 // For each batch, the state is a 2-D tensor: memory_size * num_filters
92 state_size_array->data[1] = memory_size * num_filters;
144 const int memory_size = weights_time->dims->data[1]; local
150 float* state_ptr_batch = state->data.f + b * memory_size * num_filters;
152 float* state_ptr = state_ptr_batch + c * memory_size;
153 state_ptr[memory_size - 1] = 0.0;
159 // is achieved by starting at state->data.f[memory_size - 1] and having the
160 // stride equal to memory_size.
163 batch_size, &state->data.f[memory_size - 1], memory_size)
    [all...]
  /external/google-breakpad/src/client/linux/minidump_writer/
minidump_writer_unittest.cc 134 const uint32_t memory_size = sysconf(_SC_PAGESIZE); local
157 memory_size,
186 info.size = memory_size;
212 EXPECT_EQ(memory_size, module->size());
243 const int32_t memory_size = sysconf(_SC_PAGESIZE); local
270 google_breakpad::scoped_array<char> buffer(new char[memory_size]);
271 memset(buffer.get(), 0, memory_size);
272 ASSERT_EQ(memory_size, write(fd, buffer.get(), memory_size));
277 memory_size,
    [all...]
  /external/syslinux/com32/gpllib/
memory.c 385 unsigned long memory_size = 0; local
391 memory_size = memsize_e820(map, count);
392 if (memory_size > 0)
393 return memory_size;
414 unsigned long memory_size = 0; local
445 memory_size += (end >> 12) - ((start + 4095) >> 12);
448 memory_size += nm[i].size >> 12;
451 return memory_size * 4;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
vhost.h 52 __u64 memory_size; /* bytes */ member in struct:vhost_memory_region
  /bionic/libc/kernel/uapi/linux/
vhost.h 67 __u64 memory_size; member in struct:vhost_memory_region
  /external/kernel-headers/original/uapi/linux/
vhost.h 79 __u64 memory_size; /* bytes */ member in struct:vhost_memory_region
  /external/tensorflow/tensorflow/core/common_runtime/
bfc_allocator.h 186 AllocationRegion(void* ptr, size_t memory_size)
188 memory_size_(memory_size),
191 DCHECK_EQ(0, memory_size % kMinAllocationSize);
193 (memory_size + kMinAllocationSize - 1) / kMinAllocationSize;
213 size_t memory_size() const { return memory_size_; } function in class:tensorflow::BFCAllocator::AllocationRegion
241 // Array of size "memory_size / kMinAllocationSize". It is
259 void AddAllocationRegion(void* ptr, size_t memory_size) {
263 regions_.insert(entry, AllocationRegion(ptr, memory_size));
  /bionic/libc/kernel/uapi/asm-x86/asm/
kvm.h 63 __u64 memory_size; member in struct:kvm_memory_alias
  /external/freetype/include/freetype/
freetype.h 2139 FT_Long memory_size; member in struct:FT_Open_Args_
    [all...]
  /external/kernel-headers/original/uapi/asm-x86/asm/
kvm.h 59 __u64 memory_size; member in struct:kvm_memory_alias

Completed in 699 milliseconds

1 2