/tflite-micro-3.4.0-2.7.6/tensorflow/lite/kernels/internal/ |
D | compatibility.h | 27 #define TFLITE_DCHECK_EQ(x, y) ((x) == (y)) ? (void)0 : TFLITE_ASSERT_FALSE argument 31 #define TFLITE_DCHECK_NE(x, y) ((x) != (y)) ? (void)0 : TFLITE_ASSERT_FALSE argument 35 #define TFLITE_DCHECK_GE(x, y) ((x) >= (y)) ? (void)0 : TFLITE_ASSERT_FALSE argument 39 #define TFLITE_DCHECK_GT(x, y) ((x) > (y)) ? (void)0 : TFLITE_ASSERT_FALSE argument 43 #define TFLITE_DCHECK_LE(x, y) ((x) <= (y)) ? (void)0 : TFLITE_ASSERT_FALSE argument 47 #define TFLITE_DCHECK_LT(x, y) ((x) < (y)) ? (void)0 : TFLITE_ASSERT_FALSE argument 56 #define TFLITE_CHECK_EQ(x, y) ((x) == (y)) ? (void)0 : TFLITE_ABORT argument 60 #define TFLITE_CHECK_NE(x, y) ((x) != (y)) ? (void)0 : TFLITE_ABORT argument 64 #define TFLITE_CHECK_GE(x, y) ((x) >= (y)) ? (void)0 : TFLITE_ABORT argument 68 #define TFLITE_CHECK_GT(x, y) ((x) > (y)) ? (void)0 : TFLITE_ABORT argument [all …]
|
D | max.h | 23 inline float TfLiteMax(const float& x, const float& y) { in TfLiteMax()
|
D | min.h | 23 inline float TfLiteMin(const float& x, const float& y) { in TfLiteMin()
|
D | common.h | 59 inline T ActivationFunctionWithMinMax(T x, T output_activation_min, in ActivationFunctionWithMinMax() 68 float ActivationFunction(float x) { in ActivationFunction() 120 auto x = vaddq_f32(a, b); in BiasAndClamp() local 142 int32_t x, int32_t quantized_multiplier, int left_shift) { in MultiplyByQuantizedMultiplierSmallerThanOneExp() 150 int32_t x, int32_t quantized_multiplier, int left_shift) { in MultiplyByQuantizedMultiplierGreaterThanOne() 156 inline int32_t MultiplyByQuantizedMultiplier(int32_t x, in MultiplyByQuantizedMultiplier() 168 inline int32_t MultiplyByQuantizedMultiplier(int64_t x, in MultiplyByQuantizedMultiplier() 456 IntegerType SaturatingRoundingMultiplyByPOTParam(IntegerType x, int exponent) { in SaturatingRoundingMultiplyByPOTParam() 625 inline int32_t GetReciprocal(int32_t x, int x_integer_digits, in GetReciprocal() 684 F3 x = F3::One(); in GetInvSqrtQuantizedMultiplierExp() local
|
D | quantization_util.h | 128 IntOut SafeCast(FloatIn x) { in SafeCast()
|
/tflite-micro-3.4.0-2.7.6/tensorflow/lite/micro/testing/ |
D | micro_test.h | 115 #define TF_LITE_MICRO_EXPECT(x) \ argument 125 #define TF_LITE_MICRO_EXPECT_EQ(x, y) \ argument 136 #define TF_LITE_MICRO_EXPECT_NE(x, y) \ argument 162 #define TF_LITE_MICRO_EXPECT_NEAR(x, y, epsilon) \ argument 175 #define TF_LITE_MICRO_EXPECT_GT(x, y) \ argument 183 #define TF_LITE_MICRO_EXPECT_LT(x, y) \ argument 191 #define TF_LITE_MICRO_EXPECT_GE(x, y) \ argument 199 #define TF_LITE_MICRO_EXPECT_LE(x, y) \ argument 207 #define TF_LITE_MICRO_EXPECT_TRUE(x) \ argument 215 #define TF_LITE_MICRO_EXPECT_FALSE(x) \ argument
|
/tflite-micro-3.4.0-2.7.6/tensorflow/lite/micro/kernels/xtensa/ |
D | xtensa.h | 25 #define ALIGNED_SIZE(x, bytes) (((x) + (bytes - 1)) & (~(bytes - 1))) argument 26 #define ALIGN_PTR(x, bytes) ((((unsigned)(x)) + (bytes - 1)) & (~(bytes - 1))) argument
|
D | fixedpoint_utils.h | 78 int32_t x, int32_t quantized_multiplier, int shift) { in MultiplyByQuantizedMultiplierResult48Bit()
|
/tflite-micro-3.4.0-2.7.6/tensorflow/lite/micro/examples/micro_speech/micro_features/ |
D | model.cc | 25 #define HAVE_ATTRIBUTE(x) __has_attribute(x) argument 27 #define HAVE_ATTRIBUTE(x) 0 argument
|
/tflite-micro-3.4.0-2.7.6/tensorflow/lite/experimental/microfrontend/lib/ |
D | pcan_gain_control.c | 19 int16_t WideDynamicFunction(const uint32_t x, const int16_t* lut) { in WideDynamicFunction() 39 uint32_t PcanShrink(const uint32_t x) { in PcanShrink()
|
D | log_scale.c | 29 static uint32_t Log2FractionPart(const uint32_t x, const uint32_t log2x) { in Log2FractionPart() 49 static uint32_t Log(const uint32_t x, const uint32_t scale_shift) { in Log()
|
D | pcan_gain_control_util.c | 31 int32_t input_bits, uint32_t x) { in PcanGainLookupFunction()
|
/tflite-micro-3.4.0-2.7.6/tensorflow/lite/micro/kernels/ |
D | logical_common.cc | 59 bool LogicalOr(bool x, bool y) { return x || y; } in LogicalOr() 61 bool LogicalAnd(bool x, bool y) { return x && y; } in LogicalAnd()
|
/tflite-micro-3.4.0-2.7.6/tensorflow/lite/kernels/internal/reference/ |
D | add_n.h | 34 T x = 0; in AddN() local 59 const int32_t x = params.input1_offset; // x = 0 in AddN() local
|
D | mul.h | 90 for (int x = 0; x < extended_output_shape.Dims(2); ++x) { in BroadcastMul4DSlow() local 150 for (int x = 0; x < output_shape.Dims(2); ++x) { in BroadcastMul4DSlow() local
|
D | binary_function.h | 48 for (int x = 0; x < output_shape.Dims(2); ++x) { in BroadcastBinaryFunction4DSlow() local
|
D | resize_bilinear.h | 96 for (int x = 0; x < output_width; ++x) { in ResizeBilinear() local 188 for (int x = 0; x < output_width; ++x) { in ResizeBilinearInteger() local
|
/tflite-micro-3.4.0-2.7.6/tensorflow/lite/micro/examples/micro_speech/CMSIS/ |
D | create_constants.py | 26 def to_cc(x, varname, directory='', scale_factor=1): argument
|
/tflite-micro-3.4.0-2.7.6/tensorflow/lite/micro/examples/micro_speech/apollo3/ |
D | compare_1k.py | 63 def to_float(x, n): argument
|
/tflite-micro-3.4.0-2.7.6/tensorflow/lite/micro/examples/magic_wand/himax_we1_evb/ |
D | accelerometer_handler.cc | 53 float x, y, z; in ReadAccelerometer() local
|
/tflite-micro-3.4.0-2.7.6/tensorflow/lite/micro/examples/hello_world/ |
D | main_functions.cc | 93 float x = position * kXrange; in loop() local
|
D | hello_world_test.cc | 29 float x = 0.0f; in TF_LITE_MICRO_TEST() local
|
/tflite-micro-3.4.0-2.7.6/tensorflow/lite/micro/examples/person_detection/utils/ |
D | raw_to_bitmap.py | 52 def check_file_existence(x): argument
|
/tflite-micro-3.4.0-2.7.6/tensorflow/lite/micro/examples/magic_wand/arduino/ |
D | accelerometer_handler.cc | 68 float x, y, z; in ReadAccelerometer() local
|
/tflite-micro-3.4.0-2.7.6/tensorflow/lite/kernels/internal/reference/integer_ops/ |
D | add.h | 75 for (int x = 0; x < extended_output_shape.Dims(2); ++x) { in BroadcastBinaryFunction4DSlow() local 86 inline int8_t AddFunc(int8_t x, int8_t y, const ArithmeticParams& params) { in AddFunc()
|