Searched refs:num_hash (Results 1 – 4 of 4) sorted by relevance
/frameworks/ml/nn/runtime/test/specs/ |
D | lsh_projection_2.mod.py | 18 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))
|
D | lsh_projection.mod.py | 18 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))
|
D | lsh_projection_weights_as_inputs.mod.py | 18 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))
|
/frameworks/ml/nn/common/operations/ |
D | LSHProjection.cpp | 116 int num_hash = SizeOfDimension(hash, 0); in SparseLshProjection() local 118 for (int i = 0; i < num_hash; i++) { in SparseLshProjection() 132 int num_hash = SizeOfDimension(hash, 0); in DenseLshProjection() local 134 for (int i = 0; i < num_hash; i++) { in DenseLshProjection()
|