--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ANY_ANY</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ANY_ANY
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ANY";
+ hw = "ANY";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+ assert_equals(returnedValue, false, "Returned value should be false");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ANY_AUTO</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ANY_AUTO
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ANY";
+ hw = "AUTO";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ANY_CPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ANY_CPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ANY";
+ hw = "CPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ANY_CPU_NEON</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ANY_CPU_NEON
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ANY";
+ hw = "CPU_NEON";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ANY_CPU_SIMD</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ANY_CPU_SIMD
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ANY";
+ hw = "CPU_SIMD";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ANY_GPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ANY_GPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ANY";
+ hw = "GPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ANY_NPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ANY_NPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ANY";
+ hw = "NPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ANY_NPU_EDGE_TPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ANY_NPU_EDGE_TPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ANY";
+ hw = "NPU_EDGE_TPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ANY_NPU_MOVIDIUS</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ANY_NPU_MOVIDIUS
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ANY";
+ hw = "NPU_MOVIDIUS";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ANY_NPU_SLSI</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ANY_NPU_SLSI
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ANY";
+ hw = "NPU_SLSI";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ANY_NPU_SR</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ANY_NPU_SR
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ANY";
+ hw = "NPU_SR";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ANY_NPU_VIVANTE</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ANY_NPU_VIVANTE
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ANY";
+ hw = "NPU_VIVANTE";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ARM_NN_ANY</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ARM_NN_ANY
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ARM_NN";
+ hw = "ANY";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ARM_NN_AUTO</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ARM_NN_AUTO
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ARM_NN";
+ hw = "AUTO";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ARM_NN_CPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ARM_NN_CPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ARM_NN";
+ hw = "CPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ARM_NN_CPU_NEON</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ARM_NN_CPU_NEON
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ARM_NN";
+ hw = "CPU_NEON";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ARM_NN_CPU_SIMD</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ARM_NN_CPU_SIMD
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ARM_NN";
+ hw = "CPU_SIMD";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ARM_NN_GPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ARM_NN_GPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ARM_NN";
+ hw = "GPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ARM_NN";
+ hw = "NPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_EDGE_TPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_EDGE_TPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ARM_NN";
+ hw = "NPU_EDGE_TPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_MOVIDIUS</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_MOVIDIUS
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ARM_NN";
+ hw = "NPU_MOVIDIUS";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_SLSI</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_SLSI
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ARM_NN";
+ hw = "NPU_SLSI";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_SR</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_SR
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ARM_NN";
+ hw = "NPU_SR";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_VIVANTE</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_VIVANTE
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "ARM_NN";
+ hw = "NPU_VIVANTE";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_ANY</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_ANY
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "CUSTOM_FILTER";
+ hw = "ANY";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_AUTO</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_AUTO
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "CUSTOM_FILTER";
+ hw = "AUTO";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_CPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_CPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "CUSTOM_FILTER";
+ hw = "CPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_CPU_NEON</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_CPU_NEON
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "CUSTOM_FILTER";
+ hw = "CPU_NEON";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_CPU_SIMD</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_CPU_SIMD
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "CUSTOM_FILTER";
+ hw = "CPU_SIMD";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_GPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_GPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "CUSTOM_FILTER";
+ hw = "GPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "CUSTOM_FILTER";
+ hw = "NPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_EDGE_TPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_EDGE_TPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "CUSTOM_FILTER";
+ hw = "NPU_EDGE_TPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_MOVIDIUS</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_MOVIDIUS
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "CUSTOM_FILTER";
+ hw = "NPU_MOVIDIUS";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_SLSI</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_SLSI
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "CUSTOM_FILTER";
+ hw = "NPU_SLSI";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_SR</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_SR
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "CUSTOM_FILTER";
+ hw = "NPU_SR";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_VIVANTE</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_VIVANTE
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "CUSTOM_FILTER";
+ hw = "NPU_VIVANTE";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_EDGE_TPU_ANY</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_EDGE_TPU_ANY
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "EDGE_TPU";
+ hw = "ANY";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_EDGE_TPU_AUTO</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_EDGE_TPU_AUTO
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "EDGE_TPU";
+ hw = "AUTO";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_EDGE_TPU_CPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_EDGE_TPU_CPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "EDGE_TPU";
+ hw = "CPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_EDGE_TPU_CPU_NEON</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_EDGE_TPU_CPU_NEON
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "EDGE_TPU";
+ hw = "CPU_NEON";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_EDGE_TPU_CPU_SIMD</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_EDGE_TPU_CPU_SIMD
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "EDGE_TPU";
+ hw = "CPU_SIMD";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_EDGE_TPU_GPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_EDGE_TPU_GPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "EDGE_TPU";
+ hw = "GPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "EDGE_TPU";
+ hw = "NPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_EDGE_TPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_EDGE_TPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "EDGE_TPU";
+ hw = "NPU_EDGE_TPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_MOVIDIUS</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_MOVIDIUS
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "EDGE_TPU";
+ hw = "NPU_MOVIDIUS";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_SLSI</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_SLSI
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "EDGE_TPU";
+ hw = "NPU_SLSI";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_SR</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_SR
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "EDGE_TPU";
+ hw = "NPU_SR";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_VIVANTE</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_VIVANTE
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "EDGE_TPU";
+ hw = "NPU_VIVANTE";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_MVNC_ANY</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_MVNC_ANY
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "MVNC";
+ hw = "ANY";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_MVNC_AUTO</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_MVNC_AUTO
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "MVNC";
+ hw = "AUTO";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_MVNC_CPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_MVNC_CPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "MVNC";
+ hw = "CPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_MVNC_CPU_NEON</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_MVNC_CPU_NEON
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "MVNC";
+ hw = "CPU_NEON";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_MVNC_CPU_SIMD</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_MVNC_CPU_SIMD
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "MVNC";
+ hw = "CPU_SIMD";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_MVNC_GPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_MVNC_GPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "MVNC";
+ hw = "GPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_MVNC_NPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_MVNC_NPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "MVNC";
+ hw = "NPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_MVNC_NPU_EDGE_TPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_MVNC_NPU_EDGE_TPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "MVNC";
+ hw = "NPU_EDGE_TPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_MVNC_NPU_MOVIDIUS</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_MVNC_NPU_MOVIDIUS
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "MVNC";
+ hw = "NPU_MOVIDIUS";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_MVNC_NPU_SLSI</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_MVNC_NPU_SLSI
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "MVNC";
+ hw = "NPU_SLSI";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_MVNC_NPU_SR</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_MVNC_NPU_SR
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "MVNC";
+ hw = "NPU_SR";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_MVNC_NPU_VIVANTE</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_MVNC_NPU_VIVANTE
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "MVNC";
+ hw = "NPU_VIVANTE";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNFW_ANY</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNFW_ANY
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNFW";
+ hw = "ANY";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNFW_AUTO</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNFW_AUTO
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNFW";
+ hw = "AUTO";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNFW_CPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNFW_CPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNFW";
+ hw = "CPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNFW_CPU_NEON</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNFW_CPU_NEON
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNFW";
+ hw = "CPU_NEON";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNFW_CPU_SIMD</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNFW_CPU_SIMD
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNFW";
+ hw = "CPU_SIMD";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNFW_GPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNFW_GPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNFW";
+ hw = "GPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNFW_NPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNFW_NPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNFW";
+ hw = "NPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNFW_NPU_EDGE_TPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNFW_NPU_EDGE_TPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNFW";
+ hw = "NPU_EDGE_TPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNFW_NPU_MOVIDIUS</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNFW_NPU_MOVIDIUS
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNFW";
+ hw = "NPU_MOVIDIUS";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNFW_NPU_SLSI</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNFW_NPU_SLSI
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNFW";
+ hw = "NPU_SLSI";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNFW_NPU_SR</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNFW_NPU_SR
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNFW";
+ hw = "NPU_SR";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNFW_NPU_VIVANTE</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNFW_NPU_VIVANTE
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNFW";
+ hw = "NPU_VIVANTE";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNTR_INF_ANY</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNTR_INF_ANY
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNTR_INF";
+ hw = "ANY";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNTR_INF_AUTO</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNTR_INF_AUTO
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNTR_INF";
+ hw = "AUTO";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNTR_INF_CPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNTR_INF_CPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNTR_INF";
+ hw = "CPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNTR_INF_CPU_NEON</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNTR_INF_CPU_NEON
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNTR_INF";
+ hw = "CPU_NEON";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNTR_INF_CPU_SIMD</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNTR_INF_CPU_SIMD
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNTR_INF";
+ hw = "CPU_SIMD";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNTR_INF_GPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNTR_INF_GPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNTR_INF";
+ hw = "GPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNTR_INF";
+ hw = "NPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_EDGE_TPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_EDGE_TPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNTR_INF";
+ hw = "NPU_EDGE_TPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_MOVIDIUS</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_MOVIDIUS
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNTR_INF";
+ hw = "NPU_MOVIDIUS";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_SLSI</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_SLSI
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNTR_INF";
+ hw = "NPU_SLSI";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_SR</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_SR
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNTR_INF";
+ hw = "NPU_SR";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_VIVANTE</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_VIVANTE
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "NNTR_INF";
+ hw = "NPU_VIVANTE";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_OPEN_VINO_ANY</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_OPEN_VINO_ANY
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "OPEN_VINO";
+ hw = "ANY";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_OPEN_VINO_AUTO</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_OPEN_VINO_AUTO
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "OPEN_VINO";
+ hw = "AUTO";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_OPEN_VINO_CPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_OPEN_VINO_CPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "OPEN_VINO";
+ hw = "CPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_OPEN_VINO_CPU_NEON</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_OPEN_VINO_CPU_NEON
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "OPEN_VINO";
+ hw = "CPU_NEON";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_OPEN_VINO_CPU_SIMD</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_OPEN_VINO_CPU_SIMD
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "OPEN_VINO";
+ hw = "CPU_SIMD";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_OPEN_VINO_GPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_OPEN_VINO_GPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "OPEN_VINO";
+ hw = "GPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "OPEN_VINO";
+ hw = "NPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_EDGE_TPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_EDGE_TPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "OPEN_VINO";
+ hw = "NPU_EDGE_TPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_MOVIDIUS</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_MOVIDIUS
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "OPEN_VINO";
+ hw = "NPU_MOVIDIUS";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_SLSI</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_SLSI
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "OPEN_VINO";
+ hw = "NPU_SLSI";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_SR</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_SR
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "OPEN_VINO";
+ hw = "NPU_SR";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_VIVANTE</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_VIVANTE
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "OPEN_VINO";
+ hw = "NPU_VIVANTE";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_PYTORCH_ANY</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_PYTORCH_ANY
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "PYTORCH";
+ hw = "ANY";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_PYTORCH_AUTO</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_PYTORCH_AUTO
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "PYTORCH";
+ hw = "AUTO";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_PYTORCH_CPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_PYTORCH_CPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "PYTORCH";
+ hw = "CPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_PYTORCH_CPU_NEON</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_PYTORCH_CPU_NEON
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "PYTORCH";
+ hw = "CPU_NEON";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_PYTORCH_CPU_SIMD</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_PYTORCH_CPU_SIMD
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "PYTORCH";
+ hw = "CPU_SIMD";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_PYTORCH_GPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_PYTORCH_GPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "PYTORCH";
+ hw = "GPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "PYTORCH";
+ hw = "NPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_EDGE_TPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_EDGE_TPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "PYTORCH";
+ hw = "NPU_EDGE_TPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_MOVIDIUS</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_MOVIDIUS
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "PYTORCH";
+ hw = "NPU_MOVIDIUS";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_SLSI</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_SLSI
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "PYTORCH";
+ hw = "NPU_SLSI";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_SR</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_SR
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "PYTORCH";
+ hw = "NPU_SR";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_VIVANTE</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_VIVANTE
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "PYTORCH";
+ hw = "NPU_VIVANTE";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SNPE_ANY</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SNPE_ANY
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SNPE";
+ hw = "ANY";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SNPE_AUTO</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SNPE_AUTO
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SNPE";
+ hw = "AUTO";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SNPE_CPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SNPE_CPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SNPE";
+ hw = "CPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SNPE_CPU_NEON</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SNPE_CPU_NEON
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SNPE";
+ hw = "CPU_NEON";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SNPE_CPU_SIMD</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SNPE_CPU_SIMD
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SNPE";
+ hw = "CPU_SIMD";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SNPE_GPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SNPE_GPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SNPE";
+ hw = "GPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SNPE_NPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SNPE_NPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SNPE";
+ hw = "NPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SNPE_NPU_EDGE_TPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SNPE_NPU_EDGE_TPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SNPE";
+ hw = "NPU_EDGE_TPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SNPE_NPU_MOVIDIUS</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SNPE_NPU_MOVIDIUS
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SNPE";
+ hw = "NPU_MOVIDIUS";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SNPE_NPU_SLSI</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SNPE_NPU_SLSI
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SNPE";
+ hw = "NPU_SLSI";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SNPE_NPU_SR</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SNPE_NPU_SR
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SNPE";
+ hw = "NPU_SR";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SNPE_NPU_VIVANTE</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SNPE_NPU_VIVANTE
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SNPE";
+ hw = "NPU_VIVANTE";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SRNPU_ANY</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SRNPU_ANY
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SRNPU";
+ hw = "ANY";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SRNPU_AUTO</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SRNPU_AUTO
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SRNPU";
+ hw = "AUTO";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SRNPU_CPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SRNPU_CPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SRNPU";
+ hw = "CPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SRNPU_CPU_NEON</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SRNPU_CPU_NEON
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SRNPU";
+ hw = "CPU_NEON";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SRNPU_CPU_SIMD</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SRNPU_CPU_SIMD
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SRNPU";
+ hw = "CPU_SIMD";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SRNPU_GPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SRNPU_GPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SRNPU";
+ hw = "GPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SRNPU_NPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SRNPU_NPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SRNPU";
+ hw = "NPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_EDGE_TPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_EDGE_TPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SRNPU";
+ hw = "NPU_EDGE_TPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_MOVIDIUS</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_MOVIDIUS
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SRNPU";
+ hw = "NPU_MOVIDIUS";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_SLSI</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_SLSI
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SRNPU";
+ hw = "NPU_SLSI";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_SR</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_SR
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SRNPU";
+ hw = "NPU_SR";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_VIVANTE</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_VIVANTE
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "SRNPU";
+ hw = "NPU_VIVANTE";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_ANY</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_ANY
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW";
+ hw = "ANY";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_AUTO</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_AUTO
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW";
+ hw = "AUTO";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_CPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_CPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW";
+ hw = "CPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_CPU_NEON</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_CPU_NEON
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW";
+ hw = "CPU_NEON";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_CPU_SIMD</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_CPU_SIMD
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW";
+ hw = "CPU_SIMD";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_GPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_GPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW";
+ hw = "GPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_ANY</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_ANY
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW_LITE";
+ hw = "ANY";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_AUTO</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_AUTO
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW_LITE";
+ hw = "AUTO";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_CPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_CPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW_LITE";
+ hw = "CPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+ assert_equals(returnedValue, true, "Returned value should be true");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_CPU_NEON</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_CPU_NEON
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW_LITE";
+ hw = "CPU_NEON";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_CPU_SIMD</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_CPU_SIMD
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW_LITE";
+ hw = "CPU_SIMD";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_GPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_GPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW_LITE";
+ hw = "GPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW_LITE";
+ hw = "NPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_EDGE_TPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_EDGE_TPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW_LITE";
+ hw = "NPU_EDGE_TPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_MOVIDIUS</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_MOVIDIUS
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW_LITE";
+ hw = "NPU_MOVIDIUS";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_SLSI</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_SLSI
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW_LITE";
+ hw = "NPU_SLSI";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_SR</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_SR
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW_LITE";
+ hw = "NPU_SR";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_VIVANTE</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_VIVANTE
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW_LITE";
+ hw = "NPU_VIVANTE";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW";
+ hw = "NPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_EDGE_TPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_EDGE_TPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW";
+ hw = "NPU_EDGE_TPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_MOVIDIUS</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_MOVIDIUS
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW";
+ hw = "NPU_MOVIDIUS";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_SLSI</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_SLSI
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW";
+ hw = "NPU_SLSI";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_SR</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_SR
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW";
+ hw = "NPU_SR";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_VIVANTE</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_VIVANTE
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "TENSORFLOW";
+ hw = "NPU_VIVANTE";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VD_AIFW_ANY</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VD_AIFW_ANY
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VD_AIFW";
+ hw = "ANY";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VD_AIFW_AUTO</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VD_AIFW_AUTO
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VD_AIFW";
+ hw = "AUTO";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VD_AIFW_CPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VD_AIFW_CPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VD_AIFW";
+ hw = "CPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VD_AIFW_CPU_NEON</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VD_AIFW_CPU_NEON
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VD_AIFW";
+ hw = "CPU_NEON";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VD_AIFW_CPU_SIMD</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VD_AIFW_CPU_SIMD
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VD_AIFW";
+ hw = "CPU_SIMD";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VD_AIFW_GPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VD_AIFW_GPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VD_AIFW";
+ hw = "GPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VD_AIFW";
+ hw = "NPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_EDGE_TPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_EDGE_TPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VD_AIFW";
+ hw = "NPU_EDGE_TPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_MOVIDIUS</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_MOVIDIUS
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VD_AIFW";
+ hw = "NPU_MOVIDIUS";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_SLSI</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_SLSI
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VD_AIFW";
+ hw = "NPU_SLSI";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_SR</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_SR
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VD_AIFW";
+ hw = "NPU_SR";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_VIVANTE</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_VIVANTE
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VD_AIFW";
+ hw = "NPU_VIVANTE";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VIVANTE_ANY</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VIVANTE_ANY
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VIVANTE";
+ hw = "ANY";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VIVANTE_AUTO</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VIVANTE_AUTO
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VIVANTE";
+ hw = "AUTO";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VIVANTE_CPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VIVANTE_CPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VIVANTE";
+ hw = "CPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VIVANTE_CPU_NEON</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VIVANTE_CPU_NEON
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VIVANTE";
+ hw = "CPU_NEON";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VIVANTE_CPU_SIMD</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VIVANTE_CPU_SIMD
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VIVANTE";
+ hw = "CPU_SIMD";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VIVANTE_GPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VIVANTE_GPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VIVANTE";
+ hw = "GPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VIVANTE";
+ hw = "NPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_EDGE_TPU</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_EDGE_TPU
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VIVANTE";
+ hw = "NPU_EDGE_TPU";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_MOVIDIUS</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_MOVIDIUS
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VIVANTE";
+ hw = "NPU_MOVIDIUS";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_SLSI</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_SLSI
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VIVANTE";
+ hw = "NPU_SLSI";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_SR</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_SR
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VIVANTE";
+ hw = "NPU_SR";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<!--
+Copyright (c) 2021 Samsung Electronics Co., Ltd.
+
+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.
+
+Authors:
+ Chen Chen <chen89.chen@samsung.com>
+
+-->
+<html>
+<head>
+<title>MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_VIVANTE</title>
+<meta charset="utf-8"/>
+<script src="support/unitcommon.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+//==== TEST: MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_VIVANTE
+//==== LABEL Checks if set Neural Network Framework with supported configuration return true value, otherwise false
+//==== SPEC Tizen Web API:TBD:MachineLearning:MachineLearningManager:checkNNFWAvailability M
+//==== SPEC_URL TBD
+//==== PRIORITY P1
+//==== TEST_CRITERIA MR
+test(function () {
+ var nnfw, hw, returnedValue;
+
+ nnfw = "VIVANTE";
+ hw = "NPU_VIVANTE";
+ returnedValue = tizen.ml.checkNNFWAvailability(nnfw, hw);
+ assert_type(returnedValue, "boolean", "Returned value should be bool");
+}, document.title);
+
+</script>
+</body>
+</html>
\ No newline at end of file
</spec>
</specs>
</testcase>
- <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability">
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_ANY">
<description>
- <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability.html</test_script_entry>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_ANY.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_AUTO.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_CPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_CPU_NEON.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_CPU_SIMD.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_GPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_NPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_NPU_SLSI.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_NPU_SR.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_ANY.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_AUTO.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_CPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_CPU_NEON.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_CPU_SIMD.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_GPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_SLSI.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_SR.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_ANY.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_AUTO.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_CPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_CPU_NEON.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_CPU_SIMD.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_GPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_SLSI.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_SR.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_ANY.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_AUTO.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_CPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_CPU_NEON.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_CPU_SIMD.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_GPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_SLSI.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_SR.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_ANY.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_AUTO.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_CPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_CPU_NEON.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_CPU_SIMD.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_GPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_NPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_NPU_SLSI.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_NPU_SR.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_ANY.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_AUTO.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_CPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_CPU_NEON.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_CPU_SIMD.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_GPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_NPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_NPU_SLSI.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_NPU_SR.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_ANY.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_AUTO.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_CPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_CPU_NEON.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_CPU_SIMD.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_GPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_SLSI.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_SR.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_ANY.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_AUTO.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_CPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_CPU_NEON.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_CPU_SIMD.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_GPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_NPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_NPU_SLSI.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_NPU_SR.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_ANY.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_AUTO.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_CPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_CPU_NEON.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_CPU_SIMD.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_GPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_SLSI.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_SR.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_ANY.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_AUTO.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_CPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_CPU_NEON.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_CPU_SIMD.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_GPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_SLSI.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_SR.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_ANY.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_AUTO.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_CPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_CPU_NEON.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_CPU_SIMD.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_GPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_SLSI.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_SR.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_ANY.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_AUTO.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_CPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_CPU_NEON.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_CPU_SIMD.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_GPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_SLSI.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_SR.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_ANY.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_AUTO.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_CPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_CPU_NEON.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_CPU_SIMD.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_GPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_SLSI.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_SR.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_ANY.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_AUTO.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_CPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_CPU_NEON.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_CPU_SIMD.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_GPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_NPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_SLSI.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_SR.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_ANY.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_AUTO.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_CPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_CPU_NEON.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_CPU_SIMD.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_GPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_SLSI.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_SR.html</test_script_entry>
+ </description>
+ <specs>
+ <spec>
+ <spec_assertion interface="MachineLearningManager" element_type="method" element_name="checkNNFWAvailability" specification="MachineLearning" section="TBD" category="Tizen Device API Specifications"/>
+ <spec_url>https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/machinelearning.html</spec_url>
+ <spec_statement>TBD</spec_statement>
+ </spec>
+ </specs>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" type="compliance" status="approved" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_VIVANTE.html</test_script_entry>
</description>
<specs>
<spec>
<test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManagerObject_notexist.html</test_script_entry>
</description>
</testcase>
- <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability">
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_ANY">
<description>
- <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability.html</test_script_entry>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_ANY.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_AUTO.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_CPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_CPU_NEON.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_CPU_SIMD.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_GPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_NPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_NPU_SLSI.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_NPU_SR.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ANY_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ANY_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_ANY.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_AUTO.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_CPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_CPU_NEON.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_CPU_SIMD.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_GPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_SLSI.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_SR.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_ARM_NN_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_ANY.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_AUTO.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_CPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_CPU_NEON.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_CPU_SIMD.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_GPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_SLSI.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_SR.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_CUSTOM_FILTER_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_ANY.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_AUTO.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_CPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_CPU_NEON.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_CPU_SIMD.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_GPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_SLSI.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_SR.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_EDGE_TPU_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_ANY.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_AUTO.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_CPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_CPU_NEON.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_CPU_SIMD.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_GPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_NPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_NPU_SLSI.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_NPU_SR.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_MVNC_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_MVNC_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_ANY.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_AUTO.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_CPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_CPU_NEON.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_CPU_SIMD.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_GPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_NPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_NPU_SLSI.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_NPU_SR.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNFW_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNFW_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_ANY.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_AUTO.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_CPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_CPU_NEON.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_CPU_SIMD.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_GPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_SLSI.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_SR.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_OPEN_VINO_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_ANY.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_AUTO.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_CPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_CPU_NEON.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_CPU_SIMD.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_GPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_NPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_NPU_SLSI.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_NPU_SR.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SNPE_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SNPE_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_ANY.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_AUTO.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_CPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_CPU_NEON.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_CPU_SIMD.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_GPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_SLSI.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_SR.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_ANY.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_AUTO.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_CPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_CPU_NEON.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_CPU_SIMD.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_GPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_SLSI.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_SR.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_TENSORFLOW_LITE_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_ANY.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_AUTO.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_CPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_CPU_NEON.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_CPU_SIMD.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_GPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_SLSI.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_SR.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VIVANTE_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_ANY.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_AUTO.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_CPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_CPU_NEON.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_CPU_SIMD.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_GPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_SLSI.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_SR.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_NNTR_INF_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_ANY.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_AUTO.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_CPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_CPU_NEON.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_CPU_SIMD.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_GPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_SLSI.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_SR.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_PYTORCH_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_ANY.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_AUTO.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_CPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_CPU_NEON.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_CPU_SIMD.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_GPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_NPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_SLSI.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_SR.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_SRNPU_NPU_VIVANTE.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_ANY">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_ANY.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_AUTO">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_AUTO.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_CPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_CPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_CPU_NEON">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_CPU_NEON.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_CPU_SIMD">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_CPU_SIMD.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_GPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_GPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_EDGE_TPU">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_EDGE_TPU.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_MOVIDIUS">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_MOVIDIUS.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_SLSI">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_SLSI.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_SR">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_SR.html</test_script_entry>
+ </description>
+ </testcase>
+ <testcase purpose="Checks if set Neural Network Framework with supported configuration return true value, otherwise false" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P1" id="MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_VIVANTE">
+ <description>
+ <test_script_entry>/opt/tct-ml-tizen-tests/ml/MachineLearningManager_checkNNFWAvailability_VD_AIFW_NPU_VIVANTE.html</test_script_entry>
</description>
</testcase>
<testcase purpose="Check if MachineLearningManager:checkNNFWAvailability method exists" component="Tizen Web Device APIs/TBD/MachineLearning" execution_type="auto" priority="P0" id="MachineLearningManager_checkNNFWAvailability_exist">