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

  /external/llvm/include/llvm/Analysis/
BranchProbabilityInfo.h 90 /// weights are calculated carefully before using!
100 // weight to an edge that may have siblings with non-zero weights. This can
105 DenseMap<Edge, uint32_t> Weights;
116 /// \brief Get sum of the block successors' weights.
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 35 // Weights are for internal use only. They are used by heuristics to help to
38 // Using "Loop Branch Heuristics" we predict weights of edges for the
93 /// \brief Calculate edge weights for successors lead to unreachable.
157 // Ensure there are weights for all of the successors. Note that the first
162 // Build up the final weights that will be used in a temporary buffer, but
166 SmallVector<uint32_t, 2> Weights;
167 Weights.reserve(TI->getNumSuccessors());
172 Weights.push_back(
175 assert(Weights.size() == TI->getNumSuccessors() && "Checked above");
177 setEdgeWeight(BB, TI->getSuccessor(i), Weights[i])
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineBasicBlock.h 75 /// Weights - Keep track of the weights to the successors. This vector
78 std::vector<uint32_t> Weights;
384 /// parameter is stored in Weights list and it may be used by
  /external/openfst/src/include/fst/
accumulator.h 19 // Classes to accumulate arc weights. Useful for weight lookahead.
40 // This class accumulates arc weights using the semiring Plus().
77 // This class accumulates arc weights using the log semiring Plus()
79 // and from log64 weights.
135 vector<double> *Weights() { return &weights_; }
148 // weights_. Position -1 means no pre-computed weights for that
157 // This class accumulates arc weights using the log semiring Plus()
159 // from log64 weights. The member function Init(fst) has to be called
188 vector<double> &weights = *data_->Weights(); local
386 vector<double>* weights; \/\/ Accumulated weights for this state. member in struct:fst::CacheLogAccumulatorData::CacheState
    [all...]

Completed in 76 milliseconds