Home
last modified time | relevance | path

Searched refs:IdentifyInputs (Results 1 – 9 of 9) sorted by relevance

/frameworks/ml/nn/runtime/test/specs/V1_3/
Dwhile_sum_of_powers.mod.py41 model.IdentifyInputs(xi, j, i, x)
54 model.IdentifyInputs(xi, j, i, x)
67 model.IdentifyInputs(sum, i, n, x)
85 model.IdentifyInputs(sum, i, n, x)
Dwhile_sum_of_powers_quant8_signed.mod.py45 model.IdentifyInputs(xi, j, i, x)
58 model.IdentifyInputs(xi, j, i, x)
71 model.IdentifyInputs(sum, i, n, x)
90 model.IdentifyInputs(sum, i, n, x)
Dwhile_sum_of_powers_quant8.mod.py45 model.IdentifyInputs(xi, j, i, x)
58 model.IdentifyInputs(xi, j, i, x)
71 model.IdentifyInputs(sum, i, n, x)
90 model.IdentifyInputs(sum, i, n, x)
Dwhile_infinite_loop.mod.py32 model.IdentifyInputs(i, n)
42 model.IdentifyInputs(i, n)
Dwhile_fib.mod.py38 model.IdentifyInputs(fib, i, n)
60 model.IdentifyInputs(fib, i, n)
/frameworks/ml/nn/runtime/test/specs/V1_3_cts_only/
Dwhile_fib_unknown_dimension.mod.py40 model.IdentifyInputs(fib, i, n)
67 model.IdentifyInputs(fib, i, n)
Dwhile_fib_unknown_rank.mod.py40 model.IdentifyInputs(fib, i, n)
67 model.IdentifyInputs(fib, i, n)
/frameworks/ml/nn/tools/test_generator/
DREADME.md368 Use `Model.IdentifyInputs` and `Model.IdentifyOutputs` to explicitly specify
381 model.IdentifyInputs(a, b) # "a" is unused by the model.
392 model.IdentifyInputs(a, b) # The order is the same as in the WHILE operation.
Dtest_generator.py472 def IdentifyInputs(self, *args): member in Model