summaryrefslogtreecommitdiff
path: root/include/NeuralNetworksEx.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/NeuralNetworksEx.h')
-rw-r--r--include/NeuralNetworksEx.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/include/NeuralNetworksEx.h b/include/NeuralNetworksEx.h
new file mode 100644
index 000000000..284f3af84
--- /dev/null
+++ b/include/NeuralNetworksEx.h
@@ -0,0 +1,65 @@
+/*
+ * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
+ * Copyright (C) 2017 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef NN_RUNTIME_NEURAL_NETWORKS_EX_H
+#define NN_RUNTIME_NEURAL_NETWORKS_EX_H
+
+#include <sys/cdefs.h>
+
+__BEGIN_DECLS
+
+typedef enum {
+ /** extends operation. */
+ ANEURALNETWORKS_CAST_EX = 50000,
+ ANEURALNETWORKS_GATHER_EX = 50001,
+ ANEURALNETWORKS_TOPK_V2_EX = 50002,
+ ANEURALNETWORKS_TENSORFLOW_MAX_EX = 50003,
+ ANEURALNETWORKS_SPLIT_EX = 50004,
+ ANEURALNETWORKS_RSQRT_EX = 50005,
+ ANEURALNETWORKS_SQUARED_DIFFERENCE_EX = 50006,
+} OperationCodeEx; // extends OperationCode
+
+typedef OperationCodeEx ANeuralNetworksOperationTypeEx;
+
+/**
+ * Add an extended operation to a model.
+ *
+ * @param model The model to be modified.
+ * @param type The type of extended operation.
+ * @param inputCount The number of entries in the inputs array.
+ * @param inputs An array of indexes identifying each operand.
+ * @param outputCount The number of entries in the outputs array.
+ * @param outputs An array of indexes identifying each operand.
+ *
+ * The operands specified by inputs and outputs must have been
+ * previously added by calls to {@link ANeuralNetworksModel_addOperand}.
+ *
+ * Attempting to modify a model once {@link ANeuralNetworksModel_finish} has been
+ * called will return an error.
+ *
+ * See {@link ANeuralNetworksModel} for information on multithreaded usage.
+ *
+ * @return ANEURALNETWORKS_NO_ERROR if successful.
+ */
+int ANeuralNetworksModel_addOperationEx(ANeuralNetworksModel* model,
+ ANeuralNetworksOperationTypeEx type, uint32_t inputCount,
+ const uint32_t* inputs, uint32_t outputCount,
+ const uint32_t* outputs);
+
+__END_DECLS
+
+#endif // NN_RUNTIME_NEURAL_NETWORKS_EX_H