HomeSort by relevance Sort by last modified time
    Searched refs:a_f (Results 1 - 4 of 4) sorted by null

  /external/libhevc/encoder/
convert_float_to_fix.c 51 void convert_float_to_fix(float a_f, number_t *a)
54 if(a_f != 0)
56 log_a_f = log(ABS(a_f)) / log(2);
59 a->sm = (WORD32)(a_f * pow(2, a->e));
68 void convert_fix_to_float(number_t a, float *a_f)
70 *a_f = (float)(a.sm / pow(2, a.e));
var_q_operator.h 41 void convert_float_to_fix(float a_f, number_t *a);
43 void convert_fix_to_float(number_t a, float *a_f);
  /external/libavc/encoder/
irc_common.h 49 #define convert_float_to_fix(a_f, a) *a = (WORD32)a_f
51 #define convert_fix_to_float(a, a_f) *a_f = (float) a
  /external/tensorflow/tensorflow/compiler/xla/service/
bfloat16_propagation_test.cc 438 HloInstruction* a_f = local
443 HloInstruction::CreateBinary(shape, HloOpcode::kAdd, a_f, b_f));
477 HloInstruction* a_f = local
482 HloInstruction::CreateBinary(shape, HloOpcode::kAdd, a_f, b_f));
484 builder_f.AddInstruction(HloInstruction::CreateTuple({a_f, add_f}));
503 EXPECT_FALSE(OutputsBF16(a_f));
657 HloInstruction* a_f = local
659 builder_f.AddInstruction(HloInstruction::CreateTranspose(shape, a_f, {0, 1}));
677 EXPECT_FALSE(OutputsBF16(a_f));
    [all...]

Completed in 212 milliseconds