MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / UniformRandomInt

Function UniformRandomInt

tensorflow/lite/kernels/internal/test_util.cc:72–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70}
71
72int UniformRandomInt(int min, int max) {
73 std::uniform_int_distribution<int> dist(min, max);
74 return dist(RandomEngine());
75}
76
77float UniformRandomFloat(float min, float max) {
78 std::uniform_real_distribution<float> dist(min, max);

Callers 15

TESTFunction · 0.85
TryTestOneDepthwiseConvFunction · 0.85
TryOneUniformLogSoftmaxFunction · 0.85
CreateDataAndRunMaxPoolFunction · 0.85
TESTFunction · 0.85
TryTestDepthwiseConvFunction · 0.85
TryTestOneDepthwiseConvFunction · 0.85
TryTestOneNeonDot3x3Function · 0.85
test_util.hFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected