Home
last modified time | relevance | path

Searched refs:weights_feature (Results 1 – 13 of 13) sorted by relevance

/frameworks/ml/nn/runtime/test/specs/V1_0/
Dsvdf_state.mod.py25 weights_feature = Input("weights_feature", "TENSOR_FLOAT32", "{%d, %d}" % (units, input_size)) variable
34 model = model.Operation("SVDF", input, weights_feature, weights_time, bias, state_in,
38 weights_feature: [
Dsvdf2.mod.py27 weights_feature = Input("weights_feature", "TENSOR_FLOAT32", "{%d, %d}" % (features, input_size)) variable
36 model = model.Operation("SVDF", input, weights_feature, weights_time, bias, state_in,
41 weights_feature: [
Dsvdf.mod.py27 weights_feature = Input("weights_feature", "TENSOR_FLOAT32", "{%d, %d}" % (features, input_size)) variable
36 model = model.Operation("SVDF", input, weights_feature, weights_time, bias, state_in,
41 weights_feature: [
/frameworks/ml/nn/runtime/test/specs/V1_1/
Dsvdf_state_relaxed.mod.py25 weights_feature = Input("weights_feature", "TENSOR_FLOAT32", "{%d, %d}" % (units, input_size)) variable
34 model = model.Operation("SVDF", input, weights_feature, weights_time, bias, state_in,
39 weights_feature: [
Dsvdf_relaxed.mod.py27 weights_feature = Input("weights_feature", "TENSOR_FLOAT32", "{%d, %d}" % (features, input_size)) variable
36 model = model.Operation("SVDF", input, weights_feature, weights_time, bias, state_in,
42 weights_feature: [
Dsvdf2_relaxed.mod.py27 weights_feature = Input("weights_feature", "TENSOR_FLOAT32", "{%d, %d}" % (features, input_size)) variable
36 model = model.Operation("SVDF", input, weights_feature, weights_time, bias, state_in,
42 weights_feature: [
/frameworks/ml/nn/runtime/test/generated/models/
Dsvdf_relaxed.model.cpp12 auto weights_feature = model->addOperand(&type1); in CreateModel() local
25 …model->addOperation(ANEURALNETWORKS_SVDF, {input, weights_feature, weights_time, bias, state_in, r… in CreateModel()
28 {input, weights_feature, weights_time, bias, state_in}, in CreateModel()
Dsvdf_state.model.cpp12 auto weights_feature = model->addOperand(&type1); in CreateModel() local
25 …model->addOperation(ANEURALNETWORKS_SVDF, {input, weights_feature, weights_time, bias, state_in, r… in CreateModel()
28 {input, weights_feature, weights_time, bias, state_in}, in CreateModel()
Dsvdf2.model.cpp12 auto weights_feature = model->addOperand(&type1); in CreateModel() local
25 …model->addOperation(ANEURALNETWORKS_SVDF, {input, weights_feature, weights_time, bias, state_in, r… in CreateModel()
28 {input, weights_feature, weights_time, bias, state_in}, in CreateModel()
Dsvdf2_relaxed.model.cpp12 auto weights_feature = model->addOperand(&type1); in CreateModel() local
25 …model->addOperation(ANEURALNETWORKS_SVDF, {input, weights_feature, weights_time, bias, state_in, r… in CreateModel()
28 {input, weights_feature, weights_time, bias, state_in}, in CreateModel()
Dsvdf_state_relaxed.model.cpp12 auto weights_feature = model->addOperand(&type1); in CreateModel() local
25 …model->addOperation(ANEURALNETWORKS_SVDF, {input, weights_feature, weights_time, bias, state_in, r… in CreateModel()
28 {input, weights_feature, weights_time, bias, state_in}, in CreateModel()
Dsvdf.model.cpp12 auto weights_feature = model->addOperand(&type1); in CreateModel() local
25 …model->addOperation(ANEURALNETWORKS_SVDF, {input, weights_feature, weights_time, bias, state_in, r… in CreateModel()
28 {input, weights_feature, weights_time, bias, state_in}, in CreateModel()
/frameworks/ml/nn/common/operations/
DSVDF.cpp67 const RunTimeOperandInfo *weights_feature = in Prepare() local
76 const uint32_t num_filters = SizeOfDimension(weights_feature, 0); in Prepare()
80 NN_CHECK_EQ(SizeOfDimension(input, 1), SizeOfDimension(weights_feature, 1)); in Prepare()