computeEntryWeightUpdateSIMD method

E computeEntryWeightUpdateSIMD(
  1. E weight,
  2. E weightLastUpdate,
  3. E gradient,
  4. E previousGradient,
  5. T previousUpdateDeltas,
  6. T noImprovementCounter,
  7. int weightsEntryIndex,
  8. E neuronOutput,
)
inherited

Implementation of the weight update for an entry (SIMD).

Implementation

E computeEntryWeightUpdateSIMD(
  E weight,
  E weightLastUpdate,
  E gradient,
  E previousGradient,
  T previousUpdateDeltas,
  T noImprovementCounter,
  int weightsEntryIndex,
  E neuronOutput,
) {
  throw UnsupportedError('No SIMD implementation for: $this');
}