Home | History | Annotate | Download | only in 1.1

Lines Matching refs:Model

42      * Gets the supported operations in a model.
44 * getSupportedOperations indicates which operations of a model are fully
48 * @param model A model whose operations--and their corresponding
54 * - INVALID_ARGUMENT if provided model is invalid
62 getSupportedOperations_1_1(Model model)
66 * Creates a prepared model for execution.
69 * representations to a model for execution, possiblly including
70 * transformations on the constant data, optimization on the model's graph,
71 * or compilation into the device's native binary format. The model itself
74 * The model is prepared asynchronously with respect to the caller. The
80 * must launch an asynchronous task to prepare the model in the background,
86 * When the asynchronous task has finished preparing the model, it must
88 * prepareModel. If the model was prepared successfully, the callback object
90 * produced IPreparedModel object. If an error occurred preparing the model,
94 * The only information that may be unknown to the model at this stage is
97 * the prepared model can only be finished when it is paired with a set of
98 * inputs to the model. Note that the same prepared model object can be
102 * Multiple threads can call prepareModel on the same model concurrently.
104 * @param model The model to be prepared for execution.
106 * model.
108 * preparing the model for execution and the prepared model
111 * model could not be prepared.
112 * @return status Error status of launching a task which prepares the model
120 prepareModel_1_1(Model model, ExecutionPreference preference,