OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:typed_tensor
(Results
1 - 8
of
8
) sorted by null
/external/tensorflow/tensorflow/contrib/lite/examples/label_image/
bitmap_helpers_impl.h
77
auto input = interpreter->
typed_tensor
<float>(0);
83
interpreter->
typed_tensor
<int>(1)[0] = wanted_height;
84
interpreter->
typed_tensor
<int>(1)[1] = wanted_width;
88
auto output = interpreter->
typed_tensor
<float>(2);
label_image.cc
154
resize<float>(interpreter->
typed_tensor
<float>(input), in, image_height,
159
resize<uint8_t>(interpreter->
typed_tensor
<uint8_t>(input), in,
/frameworks/ml/nn/runtime/test/benchmark/libnnbenchmark/
run_tflite.cpp
55
void* raw = mTfliteInterpreter->
typed_tensor
<void>(input);
/external/tensorflow/tensorflow/contrib/lite/testing/
parse_testdata.cc
164
if (float* data = interpreter->
typed_tensor
<float>(input_index)) {
169
interpreter->
typed_tensor
<int32_t>(input_index)) {
174
interpreter->
typed_tensor
<int64_t>(input_index)) {
196
if (const float* data = interpreter->
typed_tensor
<float>(output_index)) {
217
interpreter->
typed_tensor
<int32_t>(output_index)) {
229
interpreter->
typed_tensor
<int64_t>(output_index)) {
/external/tensorflow/tensorflow/contrib/lite/
interpreter.h
71
// foo.
typed_tensor
<float>(0)[0] = 3;
73
// foo.
typed_tensor
<float>(0)[0] = 4;
78
// foo.
typed_tensor
<float>(0)[0] = 4;
79
// foo.
typed_tensor
<float>(0)[1] = 8;
203
T*
typed_tensor
(int tensor_index) {
function in class:tflite::Interpreter
216
return
typed_tensor
<T>(inputs_[index]);
223
return
typed_tensor
<T>(outputs_[index]);
interpreter_test.cc
264
ASSERT_NE(interpreter.
typed_tensor
<float>(0), nullptr);
266
ASSERT_EQ(interpreter.
typed_tensor
<int>(0), nullptr);
268
ASSERT_EQ(interpreter.
typed_tensor
<float>(0), interpreter.tensor(0)->data.f);
[
all
...]
nnapi_delegate.cc
426
interpreter->
typed_tensor
<float>(interpreter->outputs()[0])) {
/external/tensorflow/tensorflow/contrib/lite/kernels/
test_util.h
166
T* v = interpreter_->
typed_tensor
<T>(index);
177
T* v = interpreter_->
typed_tensor
<T>(index);
184
T* v = interpreter_->
typed_tensor
<T>(index);
Completed in 438 milliseconds