Home
last modified time | relevance | path

Searched refs:num_hash (Results 1 – 11 of 11) sorted by relevance

/packages/modules/NeuralNetworks/runtime/test/specs/V1_0/
Dlsh_projection_2.mod.py18 num_hash = 4 variable
23 hhash = Parameter("hash", "TENSOR_FLOAT32", "{%d, %d}" % (num_hash, num_bits),
28 output = Output("output", "TENSOR_INT32", "{%d}" % (num_hash))
Dlsh_projection.mod.py18 num_hash = 4 variable
23 hhash = Parameter("hash", "TENSOR_FLOAT32", "{%d, %d}" % (num_hash, num_bits),
28 output = Output("output", "TENSOR_INT32", "{%d}" % (num_hash * num_bits))
Dlsh_projection_weights_as_inputs.mod.py18 num_hash = 4 variable
23 hhash = Input("hash", "TENSOR_FLOAT32", "{%d, %d}" % (num_hash, num_bits))
27 output = Output("output", "TENSOR_INT32", "{%d}" % (num_hash * num_bits))
/packages/modules/NeuralNetworks/runtime/test/specs/V1_2/
Dlsh_projection_float16.mod.py18 num_hash = 4 variable
23 hhash = Parameter("hash", "TENSOR_FLOAT16", "{%d, %d}" % (num_hash, num_bits),
28 output = Output("output", "TENSOR_INT32", "{%d}" % (num_hash * num_bits))
Dlsh_projection_deprecated.mod.py18 num_hash = 4 variable
24 "hash", "TENSOR_FLOAT32", "{%d, %d}" % (num_hash, num_bits),
29 output = Output("output", "TENSOR_INT32", "{%d}" % (num_hash))
Dlsh_projection_4_relaxed.mod.py18 num_hash = 4 variable
24 "hash", "TENSOR_FLOAT32", "{%d, %d}" % (num_hash, num_bits),
29 output = Output("output", "TENSOR_INT32", "{%d}" % (num_hash))
Dlsh_projection_3_relaxed.mod.py18 num_hash = 4 variable
24 "hash", "TENSOR_FLOAT32", "{%d, %d}" % (num_hash, num_bits),
29 output = Output("output", "TENSOR_INT32", "{%d}" % (num_hash))
/packages/modules/NeuralNetworks/runtime/test/specs/V1_1/
Dlsh_projection_2_relaxed.mod.py18 num_hash = 4 variable
24 "hash", "TENSOR_FLOAT32", "{%d, %d}" % (num_hash, num_bits),
29 output = Output("output", "TENSOR_INT32", "{%d}" % (num_hash))
Dlsh_projection_weights_as_inputs_relaxed.mod.py18 num_hash = 4 variable
23 hhash = Input("hash", "TENSOR_FLOAT32", "{%d, %d}" % (num_hash, num_bits))
27 output = Output("output", "TENSOR_INT32", "{%d}" % (num_hash * num_bits))
Dlsh_projection_relaxed.mod.py18 num_hash = 4 variable
24 "hash", "TENSOR_FLOAT32", "{%d, %d}" % (num_hash, num_bits),
29 output = Output("output", "TENSOR_INT32", "{%d}" % (num_hash * num_bits))
/packages/modules/NeuralNetworks/common/operations/
DLSHProjection.cpp128 int num_hash = SizeOfDimension(hash, 0); in SparseLshProjection() local
130 for (int i = 0; i < num_hash; i++) { in SparseLshProjection()
148 int num_hash = SizeOfDimension(hash, 0); in DenseLshProjection() local
150 for (int i = 0; i < num_hash; i++) { in DenseLshProjection()