├── .clang-format ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ └── setup-test-env │ │ └── action.yml ├── pull_request_template.md └── workflows │ ├── android-code-coverage.yml │ ├── android-integration-tests.yml │ ├── android-lint.yml │ ├── android-unit-tests.yml │ ├── coreruntime-tests.yml │ ├── publish-docs.yml │ └── python-sdk-tests.yml ├── .gitignore ├── .markdownlint-cli2.yaml ├── .markdownlint.yaml ├── .ruff.toml ├── .vscode └── extensions.json ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSES ├── Apache-2.0.txt └── Zlib.txt ├── README.md ├── agents ├── .gitignore ├── README.md ├── examples │ └── android │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── dev │ │ │ │ │ └── deliteai │ │ │ │ │ └── examples │ │ │ │ │ ├── App.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── gmail_assistant │ │ │ │ │ └── GmailActivity.kt │ │ │ │ │ └── ui │ │ │ │ │ └── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── mipmap-anydpi │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── dev │ │ │ └── deliteai │ │ │ └── examples │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts ├── gmail_assistant │ ├── android │ │ ├── build.gradle.kts │ │ ├── consumer-rules.pro │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── dev │ │ │ └── deliteai │ │ │ └── agents │ │ │ └── gmail_assistant │ │ │ ├── GmailAgent.kt │ │ │ ├── dataModels │ │ │ ├── Email.kt │ │ │ └── GmailSummary.kt │ │ │ └── impl │ │ │ ├── Controller.kt │ │ │ ├── DependencyContainer.kt │ │ │ ├── GmailSdkHelper.java │ │ │ ├── LlmManager.kt │ │ │ └── common │ │ │ └── Constants.kt │ └── delitepyAssets │ │ └── main.py └── notifications_summarizer │ ├── README.md │ ├── android │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── dev │ │ │ └── deliteai │ │ │ └── notifications_summarizer │ │ │ ├── NotificationsSummarizerAgent.kt │ │ │ ├── dataModels │ │ │ ├── NotificationSummarizerConfig.kt │ │ │ └── NotificationSummary.kt │ │ │ └── impl │ │ │ ├── Controller.kt │ │ │ ├── DependencyContainer.kt │ │ │ ├── LlmManager.kt │ │ │ ├── broadcast │ │ │ ├── AlarmBroadcastReceiver.kt │ │ │ └── AlarmBroadcastScheduler.kt │ │ │ ├── common │ │ │ └── Constants.kt │ │ │ ├── data │ │ │ └── local │ │ │ │ ├── Converters.kt │ │ │ │ ├── DB.kt │ │ │ │ ├── Extensions.kt │ │ │ │ ├── NotificationSummaryDao.kt │ │ │ │ └── NotificationSummaryEntity.kt │ │ │ ├── notification │ │ │ ├── NotificationListener.kt │ │ │ ├── NotificationManager.kt │ │ │ └── dataModels │ │ │ │ └── NotificationSnapshot.kt │ │ │ └── services │ │ │ └── SummarizationForegroundService.kt │ │ └── res │ │ └── drawable │ │ └── ne_ic.png │ └── delitepyAssets │ └── main.py ├── config.yml ├── coreruntime ├── .gitignore ├── CMakeLists.txt ├── README.md ├── build.py ├── core_utils │ ├── CMakeLists.txt │ ├── include │ │ └── core_utils │ │ │ ├── atomic_ptr.hpp │ │ │ ├── fmt.hpp │ │ │ ├── ne_md5.hpp │ │ │ └── shard.hpp │ └── src │ │ ├── ne_md5.cpp │ │ └── shard.cpp ├── delitepy │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── docs_template │ │ ├── builtins.md │ │ ├── conf.py │ │ ├── index.md │ │ ├── modules.md │ │ └── statements.md │ ├── library_stubs │ │ ├── .gitignore │ │ ├── pyproject.toml │ │ ├── setup.py │ │ └── src_template │ │ │ └── delitepy │ │ │ ├── __init__.py │ │ │ ├── ne_re │ │ │ ├── __init__.py │ │ │ ├── match.py │ │ │ └── regex.py │ │ │ └── nimblenet │ │ │ ├── __init__.py │ │ │ ├── eventstore.py │ │ │ ├── llm.py │ │ │ ├── model.py │ │ │ ├── tensor.py │ │ │ └── utils.py │ ├── requirements.txt │ └── scripts │ │ ├── build_docs.sh │ │ └── render_jinja2_templates.py ├── nimble_client │ ├── CMakeLists.txt │ └── src │ │ └── main.cpp ├── nimble_diff │ ├── CMakeLists.txt │ └── src │ │ └── nimble_diff.cpp ├── nimble_shard │ ├── CMakeLists.txt │ └── src │ │ └── nimble_shard.cpp ├── nimblenet │ ├── CMakeLists.txt │ ├── asset_manager │ │ ├── include │ │ │ └── asset_manager.hpp │ │ └── src │ │ │ └── asset_manager.cpp │ ├── command_center │ │ ├── include │ │ │ └── command_center.hpp │ │ └── src │ │ │ └── command_center.cpp │ ├── config_manager │ │ ├── include │ │ │ └── config_manager.hpp │ │ └── src │ │ │ └── config_manager.cpp │ ├── core_sdk │ │ ├── include │ │ │ ├── core_sdk.hpp │ │ │ ├── core_sdk_constants.hpp │ │ │ ├── core_sdk_structs.hpp │ │ │ ├── nimble_exec_info.hpp │ │ │ └── nimblenet_py_interface.hpp │ │ └── src │ │ │ ├── core_sdk.cpp │ │ │ ├── extra_core_sdk.cpp │ │ │ └── nimble_exec_info.cpp │ ├── cross_platform │ │ └── include │ │ │ ├── executor_structs.h │ │ │ └── nimble_net_util.hpp │ ├── data_variable │ │ ├── include │ │ │ ├── concurrent_executor_variable.hpp │ │ │ ├── custom_func_data_variable.hpp │ │ │ ├── data_variable.hpp │ │ │ ├── data_variable_enums.hpp │ │ │ ├── data_variable_templates.ipp │ │ │ ├── dataframe_variable.hpp │ │ │ ├── enumerate_data_variable.hpp │ │ │ ├── exception_data_variable.hpp │ │ │ ├── frontend_data_variable.hpp │ │ │ ├── future_data_variable.hpp │ │ │ ├── iterable_data_variable.hpp │ │ │ ├── list_data_variable.hpp │ │ │ ├── llm_data_variable.hpp │ │ │ ├── map_data_variable.hpp │ │ │ ├── match_object_data_variable.hpp │ │ │ ├── model_nimble_net_variable.hpp │ │ │ ├── nimble_net_data_variable.hpp │ │ │ ├── nimble_net_internal_data_variable.hpp │ │ │ ├── pre_processor_nimble_net_variable.hpp │ │ │ ├── range_data_variable.hpp │ │ │ ├── raw_event_store_data_variable.hpp │ │ │ ├── regex_data_variable.hpp │ │ │ ├── single_variable.hpp │ │ │ ├── stream_data_variable.hpp │ │ │ ├── tensor_data_variable.hpp │ │ │ └── tuple_data_variable.hpp │ │ └── src │ │ │ ├── concurrent_executor_variable.cpp │ │ │ ├── custom_func_data_variable.cpp │ │ │ ├── data_variable.cpp │ │ │ ├── dataframe_variable.cpp │ │ │ ├── enumerate_data_variable.cpp │ │ │ ├── filtered_dataframe_variable.cpp │ │ │ ├── future_data_variable.cpp │ │ │ ├── list_data_variable.cpp │ │ │ ├── llm_data_variable.cpp │ │ │ ├── map_data_variable.cpp │ │ │ ├── match_object_data_variable.cpp │ │ │ ├── model_nimble_net_variable.cpp │ │ │ ├── nimble_net_data_variable.cpp │ │ │ ├── nimble_net_internal_data_variable.cpp │ │ │ ├── pre_processor_nimble_net_variable.cpp │ │ │ ├── raw_event_store_data_variable.cpp │ │ │ ├── regex_data_variable.cpp │ │ │ ├── single_variable.cpp │ │ │ ├── stream_data_variable.cpp │ │ │ └── tensor_data_variable.cpp │ ├── database │ │ ├── include │ │ │ ├── database.hpp │ │ │ └── database_constants.hpp │ │ └── src │ │ │ └── database.cpp │ ├── executors │ │ ├── CMakeLists.txt │ │ ├── executor │ │ │ ├── include │ │ │ │ └── model_executor_structs.hpp │ │ │ └── src │ │ │ │ └── model_executor_structs.cpp │ │ ├── model │ │ │ ├── include │ │ │ │ ├── base_model.hpp │ │ │ │ └── task_base_model.hpp │ │ │ └── src │ │ │ │ ├── base_model.cpp │ │ │ │ └── task_base_model.cpp │ │ └── onnx │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ ├── jaccard_similarity_op.hpp │ │ │ ├── jaro_winkler_op.hpp │ │ │ ├── onnx_model.hpp │ │ │ ├── onnx_operators.hpp │ │ │ └── task_onnx_model.hpp │ │ │ └── src │ │ │ ├── onnx_model.cpp │ │ │ └── task_onnx_model.cpp │ ├── job_scheduler │ │ ├── include │ │ │ ├── asset_download_job.hpp │ │ │ ├── asset_load_job.hpp │ │ │ ├── base_job.hpp │ │ │ ├── future.hpp │ │ │ ├── internet_job.hpp │ │ │ ├── job.hpp │ │ │ ├── job_scheduler.hpp │ │ │ ├── locked_mpmc_queue.hpp │ │ │ ├── script_load_job.hpp │ │ │ └── script_ready_job.hpp │ │ └── src │ │ │ ├── asset_download_job.cpp │ │ │ ├── asset_load_job.cpp │ │ │ ├── base_job.cpp │ │ │ ├── job_scheduler.cpp │ │ │ ├── script_load_job.cpp │ │ │ └── script_ready_job.cpp │ ├── llm_executors │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── base_llm_executor.hpp │ │ │ ├── executorch_llm_executor.hpp │ │ │ ├── gemini_nano_executor.hpp │ │ │ └── onnx_llm_executor.hpp │ │ └── src │ │ │ ├── base_llm_executor.cpp │ │ │ ├── executorch_llm_executor.cpp │ │ │ ├── gemini_nano_executor.cpp │ │ │ └── onnx_llm_executor.cpp │ ├── native_interface │ │ ├── include │ │ │ ├── native_interface.hpp │ │ │ ├── native_interface_constants.hpp │ │ │ └── native_interface_structs.hpp │ │ └── src │ │ │ └── native_interface.cpp │ ├── nimble_net │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── nimble_net │ │ │ │ ├── c_tensor.h │ │ │ │ └── config.h │ │ │ ├── nimblejson.hpp │ │ │ ├── nimblenet.h │ │ │ └── nimblenet.hpp │ │ └── src │ │ │ ├── c_tensor.cpp │ │ │ ├── nimblejson.cpp │ │ │ └── nimblenet.cpp │ ├── pre_processor_database_manager │ │ ├── include │ │ │ ├── database.hpp │ │ │ └── database_constants.hpp │ │ └── src │ │ │ └── pre_processor_database_manager.cpp │ ├── resource_loader │ │ ├── include │ │ │ ├── resource_downloader.hpp │ │ │ └── resource_loader.hpp │ │ └── src │ │ │ ├── resource_downloader.cpp │ │ │ └── resource_loader.cpp │ ├── resource_manager │ │ ├── include │ │ │ ├── resource_manager.hpp │ │ │ ├── resource_manager_constants.hpp │ │ │ └── resource_manager_structs.hpp │ │ └── src │ │ │ ├── resource_manager.cpp │ │ │ └── resource_manager_structs.cpp │ ├── retriever │ │ ├── include │ │ │ └── retriever.hpp │ │ └── src │ │ │ └── retriever.cpp │ ├── server_api │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── server_api.hpp │ │ │ ├── server_api_constants.hpp │ │ │ └── server_api_structs.hpp │ │ └── src │ │ │ ├── server_api.cpp │ │ │ └── server_api_structs.cpp │ ├── simulation_manager │ │ ├── CMakeLists.txt │ │ └── input_data_extractor │ │ │ ├── include │ │ │ ├── input_structs.hpp │ │ │ └── task_input_structs.hpp │ │ │ └── src │ │ │ ├── c_tensors_data_extractor.cpp │ │ │ └── input_data_extractor.cpp │ ├── stream │ │ ├── include │ │ │ ├── char_stream.hpp │ │ │ ├── dummy_offloaded_stream.hpp │ │ │ ├── json_stream.hpp │ │ │ └── stream_producer.hpp │ │ └── src │ │ │ ├── char_stream.cpp │ │ │ ├── dummy_offloaded_stream.cpp │ │ │ └── json_stream.cpp │ ├── task_manager │ │ ├── CMakeLists.txt │ │ ├── operators │ │ │ ├── include │ │ │ │ ├── binary_operators.hpp │ │ │ │ ├── bool_operators.hpp │ │ │ │ ├── compare_operators.hpp │ │ │ │ ├── custom_functions.hpp │ │ │ │ ├── operator_types.hpp │ │ │ │ └── unary_operators.hpp │ │ │ └── src │ │ │ │ ├── bool_operators.cpp │ │ │ │ ├── compare_operators.cpp │ │ │ │ ├── custom_functions.cpp │ │ │ │ ├── list_operators.cpp │ │ │ │ └── unary_operators.cpp │ │ └── task │ │ │ ├── include │ │ │ ├── dp_module.hpp │ │ │ ├── node.hpp │ │ │ ├── statements.hpp │ │ │ ├── task.hpp │ │ │ └── variable_scope.hpp │ │ │ └── src │ │ │ ├── dp_module.cpp │ │ │ ├── node.cpp │ │ │ ├── statements.cpp │ │ │ ├── task.cpp │ │ │ └── variable_scope.cpp │ ├── time_manager │ │ ├── include │ │ │ └── time_manager.hpp │ │ └── src │ │ │ └── time_manager.cpp │ ├── user_events │ │ ├── aggregate_column │ │ │ ├── include │ │ │ │ ├── aggregate_column.hpp │ │ │ │ ├── average_column.hpp │ │ │ │ ├── count_column.hpp │ │ │ │ ├── max_column.hpp │ │ │ │ ├── min_column.hpp │ │ │ │ └── sum_column.hpp │ │ │ └── src │ │ │ │ ├── average_column.cpp │ │ │ │ ├── count_column.cpp │ │ │ │ ├── max_column.cpp │ │ │ │ ├── min_column.cpp │ │ │ │ └── sum_column.cpp │ │ ├── pre_processor │ │ │ ├── include │ │ │ │ └── pre_processor.hpp │ │ │ └── src │ │ │ │ └── pre_processor.cpp │ │ ├── raw_store │ │ │ ├── include │ │ │ │ └── raw_store.hpp │ │ │ └── src │ │ │ │ └── raw_store.cpp │ │ ├── rolling_window │ │ │ ├── include │ │ │ │ ├── rolling_window.hpp │ │ │ │ └── time_based_rolling_window.hpp │ │ │ └── src │ │ │ │ ├── rolling_window.cpp │ │ │ │ └── time_based_rolling_window.cpp │ │ ├── table_store │ │ │ ├── include │ │ │ │ └── table_store.hpp │ │ │ └── src │ │ │ │ └── table_store.cpp │ │ └── user_events_manager │ │ │ ├── include │ │ │ ├── user_events_constants.hpp │ │ │ ├── user_events_manager.hpp │ │ │ └── user_events_struct.hpp │ │ │ └── src │ │ │ ├── user_events_manager.cpp │ │ │ └── user_events_struct.cpp │ └── util │ │ ├── include │ │ ├── file_store.hpp │ │ ├── json.hpp │ │ ├── llm_utils.hpp │ │ ├── log_sender.hpp │ │ ├── logger.hpp │ │ ├── logger_constants.hpp │ │ ├── ne_fwd.hpp │ │ ├── ne_type_traits.hpp │ │ ├── nlohmann_json.hpp │ │ ├── onnx.hpp │ │ ├── result.hpp │ │ ├── thread_pool.hpp │ │ └── util.hpp │ │ └── src │ │ ├── file_store.cpp │ │ ├── json.cpp │ │ ├── llm_utils.cpp │ │ ├── log_sender.cpp │ │ ├── logger.cpp │ │ ├── thread_pool.cpp │ │ └── util.cpp ├── platform │ ├── android │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── client.h │ │ │ ├── dependency_container_shadow.hpp │ │ │ ├── gemini_nano_handler_shadow.hpp │ │ │ ├── hardware_info_shadow.hpp │ │ │ ├── logs_upload_scheduler_shadow.hpp │ │ │ ├── native_request_receiver_shadow.hpp │ │ │ └── networking_shadow.hpp │ │ └── src │ │ │ ├── client.cpp │ │ │ ├── dependency_container_shadow.cpp │ │ │ ├── frontend_data_variable.cpp │ │ │ ├── gemini_nano_handler_shadow.cpp │ │ │ ├── hardware_info_shadow.cpp │ │ │ ├── logs_upload_scheduler_shadow.cpp │ │ │ ├── native_request_receiver_shadow.cpp │ │ │ └── networking_shadow.cpp │ ├── ios │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── client.h │ │ │ ├── frontend_layer.h │ │ │ ├── ios_helper.hpp │ │ │ └── ios_reference_data_variable.hpp │ │ └── src │ │ │ ├── client.cpp │ │ │ ├── frontend_data_variable.cpp │ │ │ ├── frontend_layer.cpp │ │ │ ├── ios_helper.cpp │ │ │ └── ios_reference_data_variable.cpp │ └── unix │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── client.h │ │ └── src │ │ ├── client.cpp │ │ ├── frontend_data_variable.cpp │ │ └── frontend_layer.cpp ├── requirements.txt ├── scripts │ └── gen_python_ast.py ├── setup.py └── tests │ ├── assets │ ├── basic_script_test │ │ ├── invalid_module_import.ast │ │ ├── invalid_module_import.zip │ │ ├── may_return_false.ast │ │ ├── may_return_false.py │ │ ├── missing_main_module.ast │ │ └── missing_main_module.zip │ ├── complete_script_test │ │ ├── all_events.json │ │ ├── input.json │ │ ├── script.ast │ │ ├── script.py │ │ └── script_output.json │ ├── contest_ranking │ │ ├── all_events.json │ │ ├── all_inputs_1.json │ │ ├── contest_ranking.ast │ │ ├── contest_ranking.py │ │ ├── enriched_key_input.json │ │ ├── enriched_key_script_output.json │ │ ├── input.json │ │ ├── invalid_agg_contest_ranking.ast │ │ ├── invalid_agg_contest_ranking.py │ │ ├── invalid_contest_ranking.ast │ │ ├── invalid_contest_ranking.py │ │ ├── output_1.json │ │ └── script_output.json │ ├── end_to_end_test │ │ ├── add_event_e2e_before_command_center_ready.json │ │ ├── add_event_e2e_before_initialization.json │ │ ├── add_event_e2e_test_checking_register_and_ingestion_calls_with_collect_events_false.json │ │ ├── add_event_e2e_test_checking_register_and_ingestion_calls_with_collect_events_false_and_event_type_to_write_true.json │ │ ├── add_event_e2e_test_checking_register_and_ingestion_calls_with_collect_events_true.json │ │ ├── add_event_e2e_test_checking_register_and_ingestion_calls_with_collect_events_true_and_event_type_to_write_true.json │ │ ├── add_event_e2e_with_invalid_payload.json │ │ ├── add_event_with_script_log_test.json │ │ ├── add_script.ast │ │ ├── add_two_model.onnx │ │ ├── events_sent_by_reading_cloud_config_from_device.json │ │ ├── run_sdk_offline_mode.json │ │ ├── run_sdk_with_cloud_config_unable_to_fetch_test.json │ │ ├── run_sdk_with_correct_config_no_mock_test.json │ │ ├── run_sdk_with_invalid_cloud_config_in_new_command_center_and_old_etag_saved_on_disk.json │ │ ├── run_sdk_with_invalid_device_config.json │ │ ├── run_sdk_with_invalid_model.json │ │ ├── run_sdk_with_list_compatible_llms.json │ │ ├── run_sdk_with_llm.json │ │ ├── run_sdk_with_llm_use_same_zip.json │ │ ├── run_sdk_with_multiple_init_calls.json │ │ ├── run_sdk_with_new_script_load_failure.json │ │ ├── run_sdk_with_python_modules.json │ │ ├── run_sdk_with_script_load_failure.json │ │ ├── run_sdk_with_unable_to_save_on_disk_test.json │ │ ├── run_sdk_with_upgrade_path_but_model_download_fails.json │ │ ├── run_sdk_with_upgrade_path_but_task_download_fails.json │ │ ├── run_sdk_with_upgrade_path_model_addition_update_in_next_session.json │ │ ├── run_sdk_with_upgrade_path_model_version_update_in_next_session.json │ │ ├── run_sdk_with_upgrade_path_no_model_present_in_next_session.json │ │ ├── run_sdk_with_upgrade_path_one_model_changed_but_load_in_next_session.json │ │ ├── run_sdk_with_upgrade_path_one_model_changed_but_load_in_same_session.json │ │ ├── run_sdk_with_upgrade_path_only_deployment_id_change_in_next_session.json │ │ ├── run_sdk_with_upgrade_path_with_new_compatibility_tag.json │ │ ├── send_events_with_default_logger_key.json │ │ └── send_events_with_minimal_config.json │ ├── native_interface_test │ │ ├── 1.txt │ │ ├── 2.json │ │ └── archive_test.zip │ ├── nimble_client │ │ ├── main.ast │ │ └── main.py │ └── simple_contests │ │ ├── invalid_simple_contests.json │ │ ├── simple_contests.json │ │ ├── simple_contests_final_inputs.json │ │ ├── simple_contests_input.json │ │ └── simple_contests_outputs.json │ ├── unittests │ ├── add_event_end_to_end_test.cpp │ ├── command_center_test.cpp │ ├── end_to_end_tests.cpp │ ├── native_interface_test.cpp │ ├── nimbletest.cpp │ ├── nimbletest.hpp │ ├── scripting_test.cpp │ ├── stream_test.cpp │ ├── tests_util.cpp │ ├── tests_util.hpp │ ├── tests_util_structs.cpp │ ├── tests_util_structs.hpp │ └── util_test.cpp │ └── utils │ └── download_from_s3.py ├── docs ├── .gitignore ├── README.md ├── deliteai.dev │ ├── _static │ │ └── images │ │ │ └── delite-ai-blue-logo.png │ └── conf.py ├── requirements.txt ├── scripts │ ├── build_website.sh │ ├── run │ └── run.py └── static │ └── images │ └── delite-ai-blue-logo.png ├── mockserver ├── .gitignore ├── Dockerfile ├── README.md ├── config_dms.yaml ├── config_ingestor.yaml ├── config_logger.yaml ├── config_mds.yaml ├── docker-compose.yaml └── mockserver_assets │ ├── add_and_multiply_script.py │ ├── add_event_proto_script.py │ ├── add_event_script.py │ ├── add_script.py │ ├── add_three_model.onnx │ ├── add_two_model.onnx │ ├── chatbot.py │ ├── entrypoint.sh │ ├── list_compatible_llms.py │ ├── multiply_script.py │ ├── multiply_two_model.onnx │ ├── no_model_bad_script.py │ ├── no_model_script.py │ ├── python_modules.zip │ ├── requirements.txt │ ├── server.py │ └── setup_sample_data.py ├── nimblenet_py ├── simulation_assets │ ├── chatbot.py │ ├── class_support.py │ ├── embedding_model.onnx │ ├── embedding_store_model.onnx │ ├── grocery.json │ ├── invalid_model_workflow_script.py │ ├── list_compatible_llms.py │ ├── list_ops_test.py │ ├── mobile_benchmarks.json │ ├── nested_json_script.py │ ├── parallel.py │ ├── parallel_limited_threads.py │ ├── regex.py │ ├── retriever.ast │ ├── retriever.py │ ├── retriever_workflow.py │ ├── simple_fp32_to_fp16_add.onnx │ ├── streaming_json.py │ ├── string_slicing_test.py │ ├── try_catch.py │ ├── tts_tokenizer.py │ ├── valid_script_modules.zip │ ├── vocab.json │ └── workflow_script.py ├── simulation_tests │ ├── conftest.py │ ├── demo_chatbot.py │ ├── test_simulator_llm.py │ ├── test_simulator_online.py │ └── test_simulator_script.py └── simulator_binder │ ├── binder.cpp │ ├── binder_v2.cpp │ └── delitepy_script_parser.cpp ├── sdks ├── android │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── generated │ │ │ │ │ ├── Address.java │ │ │ │ │ ├── AddressOrBuilder.java │ │ │ │ │ ├── Company.java │ │ │ │ │ ├── CompanyOrBuilder.java │ │ │ │ │ ├── CompanyProto.java │ │ │ │ │ ├── EmailAddress.java │ │ │ │ │ └── EmailAddressOrBuilder.java │ │ │ ├── kotlin │ │ │ │ └── dev │ │ │ │ │ └── deliteai │ │ │ │ │ └── android │ │ │ │ │ └── sampleapp │ │ │ │ │ ├── e2e │ │ │ │ │ ├── E2ENetworkingAndroidTest.kt │ │ │ │ │ └── MockServerHelper.kt │ │ │ │ │ └── proto │ │ │ │ │ ├── ProtoAddEventTest.kt │ │ │ │ │ ├── ProtoTest.kt │ │ │ │ │ └── ProtoUtils.kt │ │ │ └── proto │ │ │ │ └── company_proto.proto │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ ├── e2e_test_assets │ │ │ │ ├── add_script.ast │ │ │ │ └── add_two_model.onnx │ │ │ └── retriever │ │ │ │ ├── embedding_model.onnx │ │ │ │ ├── embedding_store_model.onnx │ │ │ │ ├── grocery.json │ │ │ │ └── retriever.ast │ │ │ ├── kotlin │ │ │ └── dev │ │ │ │ └── deliteai │ │ │ │ └── android │ │ │ │ └── sampleapp │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MainApplication.kt │ │ │ │ ├── StressTestForMemDump.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── content_main.xml │ │ │ └── fragment_first.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_round.webp │ │ │ └── logo.png │ │ │ ├── navigation │ │ │ └── nav_graph.xml │ │ │ ├── values-land │ │ │ └── dimens.xml │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values-w1240dp │ │ │ └── dimens.xml │ │ │ ├── values-w600dp │ │ │ └── dimens.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ ├── benchmarking │ │ └── jniMemoryDumper │ │ │ ├── jni_memory_dumper.py │ │ │ └── requirements.txt │ ├── build.gradle.kts │ ├── buildSrc │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ ├── Deps.kt │ │ │ ├── NimbleNetGradleConfig.kt │ │ │ ├── Publishing.kt │ │ │ ├── Utils.kt │ │ │ └── Versions.kt │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── nimblenet_core │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── consumer-rules.pro │ │ ├── consumer-rules.txt │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── cpp │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── coreruntime │ │ │ ├── dljni │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── include │ │ │ │ └── dljni │ │ │ │ │ ├── dljni.hpp │ │ │ │ │ ├── dljnicurrentthreadattacher.hpp │ │ │ │ │ └── dljnirefs.hpp │ │ │ └── src │ │ │ │ └── dljnicurrentthreadattacher.cpp │ │ │ ├── jni │ │ │ ├── impl │ │ │ │ └── proto_data_variable.hpp │ │ │ ├── jni.cpp │ │ │ ├── jni_common.h │ │ │ ├── jni_internal.cpp │ │ │ ├── shadow_classes │ │ │ │ ├── file_download_state_transition_shadow.h │ │ │ │ ├── json_array_shadow.h │ │ │ │ ├── json_object_shadow.h │ │ │ │ ├── mutable_map_shadow.h │ │ │ │ ├── nimble_net_error_shadow.h │ │ │ │ ├── nimble_net_result_shadow.h │ │ │ │ ├── nimble_net_tensor_shadow.h │ │ │ │ ├── proto_member_extender_shadow.h │ │ │ │ ├── type_caster_shadow.h │ │ │ │ └── user_event_data_shadow.h │ │ │ └── utils │ │ │ │ ├── input_transformers.cpp │ │ │ │ ├── input_transformers.h │ │ │ │ ├── jni_logger.h │ │ │ │ ├── jni_string.h │ │ │ │ ├── output_transformers.cpp │ │ │ │ └── output_transformers.h │ │ │ ├── onnx_builds │ │ │ └── third_party │ ├── nimblenet_ktx │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── consumer-rules.pro │ │ ├── consumer-rules.txt │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ │ ├── fl1 │ │ │ │ │ ├── f1 │ │ │ │ │ └── f2 │ │ │ │ └── fl2 │ │ │ │ │ ├── f1 │ │ │ │ │ └── f2 │ │ │ └── kotlin │ │ │ │ └── dev │ │ │ │ └── deliteai │ │ │ │ ├── NimbleNetAndroidTest.kt │ │ │ │ ├── impl │ │ │ │ ├── common │ │ │ │ │ └── HardwareInfoAndroidTest.kt │ │ │ │ ├── coroutine │ │ │ │ │ └── DeliteAiScopeAndroidTest.kt │ │ │ │ ├── io │ │ │ │ │ ├── AppPreferencesStoreAndroidTest.kt │ │ │ │ │ ├── ChunkDownloadManagerAndroidTest.kt │ │ │ │ │ └── FileUtilsAndroidTest.kt │ │ │ │ └── loggers │ │ │ │ │ ├── RemoteLoggerAndroidTest.kt │ │ │ │ │ └── workManager │ │ │ │ │ └── LogsUploadSchedulerAndroidTest.kt │ │ │ │ └── testUtils │ │ │ │ └── Constants.kt │ │ │ ├── gemini │ │ │ └── kotlin │ │ │ │ └── dev │ │ │ │ └── deliteai │ │ │ │ └── scriptWrappers │ │ │ │ └── GeminiNanoHandler.kt │ │ │ ├── internal │ │ │ └── kotlin │ │ │ │ └── dev │ │ │ │ └── deliteai │ │ │ │ └── NimbleNetInternal.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ │ └── dev │ │ │ │ └── deliteai │ │ │ │ ├── NimbleNet.kt │ │ │ │ ├── client │ │ │ │ └── TextToSpeech.kt │ │ │ │ ├── datamodels │ │ │ │ ├── NimbleNetConfig.kt │ │ │ │ ├── NimbleNetResult.kt │ │ │ │ ├── NimbleNetTensor.kt │ │ │ │ └── UserEventData.kt │ │ │ │ └── impl │ │ │ │ ├── DependencyContainer.kt │ │ │ │ ├── common │ │ │ │ ├── Constants.kt │ │ │ │ ├── Extensions.kt │ │ │ │ ├── HardwareInfo.kt │ │ │ │ └── utils │ │ │ │ │ ├── KotlinUtils.kt │ │ │ │ │ ├── TestUtils.kt │ │ │ │ │ └── TypeCaster.kt │ │ │ │ ├── controllers │ │ │ │ ├── InternalTaskController.kt │ │ │ │ └── NimbleNetController.kt │ │ │ │ ├── coroutine │ │ │ │ ├── DeliteAiScope.kt │ │ │ │ └── NamedThreadFactory.kt │ │ │ │ ├── delitePy │ │ │ │ └── proto │ │ │ │ │ ├── ProtoMemberExtender.kt │ │ │ │ │ └── impl │ │ │ │ │ ├── ProtoAnyWrapper.kt │ │ │ │ │ ├── ProtoListWrapper.kt │ │ │ │ │ ├── ProtoMapWrapper.kt │ │ │ │ │ ├── ProtoNullWrapper.kt │ │ │ │ │ ├── ProtoObjectWrapper.kt │ │ │ │ │ └── ProtoPrimitiveWrapper.kt │ │ │ │ ├── io │ │ │ │ ├── AppPreferencesStore.kt │ │ │ │ ├── ChunkDownloadManager.kt │ │ │ │ ├── FileUtils.kt │ │ │ │ ├── Networking.kt │ │ │ │ └── datamodels │ │ │ │ │ ├── DownloadManagerCursor.kt │ │ │ │ │ ├── DownloadTask.kt │ │ │ │ │ ├── FileDownloadStateTransition.kt │ │ │ │ │ └── NetworkResponse.kt │ │ │ │ ├── loggers │ │ │ │ ├── LocalLogger.kt │ │ │ │ ├── RemoteLogger.kt │ │ │ │ └── workManager │ │ │ │ │ ├── LogsUploadScheduler.kt │ │ │ │ │ └── LogsUploadWorker.kt │ │ │ │ ├── moduleInstallers │ │ │ │ ├── ModuleInstaller.kt │ │ │ │ └── impl │ │ │ │ │ ├── GoogleDynamicModuleInstaller.kt │ │ │ │ │ └── StaticModuleInstaller.kt │ │ │ │ └── nativeBridge │ │ │ │ ├── CoreRuntime.kt │ │ │ │ ├── NativeRequestReceiver.kt │ │ │ │ └── impl │ │ │ │ └── CoreRuntimeImpl.kt │ │ │ └── test │ │ │ └── kotlin │ │ │ └── dev │ │ │ └── deliteai │ │ │ ├── NimbleNetTest.kt │ │ │ ├── impl │ │ │ ├── DependencyContainerTest.kt │ │ │ ├── common │ │ │ │ ├── HardwareInfoTest.kt │ │ │ │ └── utils │ │ │ │ │ └── KotlinUtilsTest.kt │ │ │ ├── controllers │ │ │ │ └── NimbleNetControllerTest.kt │ │ │ ├── coroutine │ │ │ │ └── NamedThreadFactoryTest.kt │ │ │ ├── io │ │ │ │ ├── AppPreferencesStoreTest.kt │ │ │ │ ├── ChunkDownloadManagerTest.kt │ │ │ │ └── NetworkingTest.kt │ │ │ └── logger │ │ │ │ ├── RemoteLoggerTest.kt │ │ │ │ └── workManager │ │ │ │ ├── LogsUploadSchedulerTest.kt │ │ │ │ └── LogsUploadWorkerTest.kt │ │ │ └── testUtils │ │ │ ├── Constants.kt │ │ │ └── Reflection.kt │ └── settings.gradle.kts ├── config.yml └── ios │ ├── .gitignore │ ├── DeliteAI.podspec │ ├── README.md │ ├── deliteAI │ ├── Assets │ │ ├── Executorch_Headers │ │ ├── LLaMARunner.xcframework │ │ ├── onnxruntime-genai.xcframework │ │ ├── onnxruntime.xcframework │ │ └── onnxruntime_extensions.xcframework │ └── Classes │ │ ├── deliteAI.h │ │ └── sources │ │ ├── ESpeakNGCallbacks.swift │ │ ├── NimbleNetApi.swift │ │ ├── dataModel │ │ ├── NimbleNetConfig.swift │ │ ├── NimbleNetResult.swift │ │ └── UserEventData.swift │ │ └── impl │ │ ├── common │ │ ├── HardwareInfo.swift │ │ ├── KeychainManager.swift │ │ └── util │ │ │ ├── Constants.swift │ │ │ ├── crashReporterUtil │ │ │ ├── CrashReporterUtil.h │ │ │ └── CrashReporterUtil.m │ │ │ └── errorUtili │ │ │ ├── ErrorUtility.h │ │ │ └── ErrorUtility.m │ │ ├── controller │ │ ├── NimbleNetController.h │ │ ├── NimbleNetController.m │ │ ├── converter │ │ │ ├── InputConverter.h │ │ │ ├── InputConverter.m │ │ │ ├── OutputConverter.h │ │ │ └── OutputConverter.m │ │ └── interactor │ │ │ ├── FunctionPointersImpl.h │ │ │ └── FunctionPointersImpl.m │ │ ├── delitePy │ │ └── proto │ │ │ ├── ProtoVisitor.swift │ │ │ └── impl │ │ │ ├── ProtoAnyWrapper.swift │ │ │ ├── ProtoDecoder.swift │ │ │ ├── ProtoListwrapper.swift │ │ │ ├── ProtoMapWrapper.swift │ │ │ └── ProtoObjectWrapper.swift │ │ ├── io │ │ ├── FileIO.swift │ │ ├── dataModels │ │ │ ├── DataType.swift │ │ │ ├── DataTypeMismatchError.swift │ │ │ ├── DatabaseTable.swift │ │ │ └── NimbleNetTensor.swift │ │ └── networking │ │ │ ├── ConnectionLayer.swift │ │ │ ├── DownloadManager.swift │ │ │ └── dataModel │ │ │ ├── DownloadItem.swift │ │ │ └── ModelDownloadStatus.swift │ │ └── logging │ │ ├── LogConfig.swift │ │ └── Logger.swift │ ├── docs │ └── DEVELOPMENT.md │ ├── example │ ├── DeliteAIExample.xcodeproj │ │ ├── project.pbxproj │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ ├── DeliteAIExample.xcscheme │ │ │ │ └── DeliteAIExample_Tests.xcscheme │ │ └── xcuserdata │ │ │ └── nimbleedgeadmin.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── DeliteAIExample │ │ ├── AppDelegate.swift │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── BundleConfig.swift │ │ ├── ChatViewController.swift │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── 100.png │ │ │ │ ├── 102.png │ │ │ │ ├── 1024.png │ │ │ │ ├── 108.png │ │ │ │ ├── 114.png │ │ │ │ ├── 120.png │ │ │ │ ├── 128.png │ │ │ │ ├── 144.png │ │ │ │ ├── 152.png │ │ │ │ ├── 16.png │ │ │ │ ├── 167.png │ │ │ │ ├── 172.png │ │ │ │ ├── 180.png │ │ │ │ ├── 196.png │ │ │ │ ├── 20.png │ │ │ │ ├── 216.png │ │ │ │ ├── 234.png │ │ │ │ ├── 256.png │ │ │ │ ├── 258.png │ │ │ │ ├── 29.png │ │ │ │ ├── 32.png │ │ │ │ ├── 40.png │ │ │ │ ├── 48.png │ │ │ │ ├── 50.png │ │ │ │ ├── 512.png │ │ │ │ ├── 55.png │ │ │ │ ├── 57.png │ │ │ │ ├── 58.png │ │ │ │ ├── 60.png │ │ │ │ ├── 64.png │ │ │ │ ├── 66.png │ │ │ │ ├── 72.png │ │ │ │ ├── 76.png │ │ │ │ ├── 80.png │ │ │ │ ├── 87.png │ │ │ │ ├── 88.png │ │ │ │ ├── 92.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── delite-ai-blue-logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── delite-ai-blue-logo 1.png │ │ │ │ ├── delite-ai-blue-logo 2.png │ │ │ │ └── delite-ai-blue-logo.png │ │ ├── Info.plist │ │ ├── MessageCell.swift │ │ └── company_proto.pb.swift │ ├── Podfile │ ├── Podfile.lock │ └── Tests │ │ ├── Info.plist │ │ ├── Keychaintest.swift │ │ ├── ProtoTest.swift │ │ └── RuntaskInstrumentation.swift │ └── script │ ├── build-deliteAI-static.sh │ ├── ios.toolchain.cmake │ └── release-deliteAI-ios.sh ├── setup.sh └── third_party ├── README.md ├── SPSCQueue ├── CMakeLists.txt ├── LICENSE ├── README.md └── include │ └── rigtorp │ └── SPSCQueue.h ├── json ├── BUILD.bazel ├── CITATION.cff ├── CMakeLists.txt ├── ChangeLog.md ├── LICENSE.MIT ├── LICENSES │ ├── Apache-2.0.txt │ ├── BSD-3-Clause.txt │ ├── GPL-3.0-only.txt │ └── MIT.txt ├── Makefile ├── README.md ├── WORKSPACE.bazel ├── cmake │ ├── ci.cmake │ ├── config.cmake.in │ ├── download_test_data.cmake │ ├── nlohmann_jsonConfigVersion.cmake.in │ ├── pkg-config.pc.in │ ├── scripts │ │ └── gen_bazel_build_file.cmake │ └── test.cmake ├── docs │ ├── Makefile │ ├── README.md │ ├── avatars.png │ ├── docset │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── README.md │ │ ├── docSet.sql │ │ ├── docset.json │ │ ├── icon.png │ │ └── icon@2x.png │ ├── examples │ │ ├── README.cpp │ │ ├── README.output │ │ ├── accept__string.cpp │ │ ├── accept__string.output │ │ ├── array.cpp │ │ ├── array.output │ │ ├── array_t.cpp │ │ ├── array_t.output │ │ ├── at__json_pointer.cpp │ │ ├── at__json_pointer.output │ │ ├── at__json_pointer_const.cpp │ │ ├── at__json_pointer_const.output │ │ ├── at__keytype.c++17.cpp │ │ ├── at__keytype.c++17.output │ │ ├── at__keytype_const.c++17.cpp │ │ ├── at__keytype_const.c++17.output │ │ ├── at__object_t_key_type.cpp │ │ ├── at__object_t_key_type.output │ │ ├── at__object_t_key_type_const.cpp │ │ ├── at__object_t_key_type_const.output │ │ ├── at__size_type.cpp │ │ ├── at__size_type.output │ │ ├── at__size_type_const.cpp │ │ ├── at__size_type_const.output │ │ ├── back.cpp │ │ ├── back.output │ │ ├── basic_json__CompatibleType.cpp │ │ ├── basic_json__CompatibleType.output │ │ ├── basic_json__InputIt_InputIt.cpp │ │ ├── basic_json__InputIt_InputIt.output │ │ ├── basic_json__basic_json.cpp │ │ ├── basic_json__basic_json.output │ │ ├── basic_json__copyassignment.cpp │ │ ├── basic_json__copyassignment.output │ │ ├── basic_json__list_init_t.cpp │ │ ├── basic_json__list_init_t.output │ │ ├── basic_json__moveconstructor.cpp │ │ ├── basic_json__moveconstructor.output │ │ ├── basic_json__nullptr_t.cpp │ │ ├── basic_json__nullptr_t.output │ │ ├── basic_json__size_type_basic_json.cpp │ │ ├── basic_json__size_type_basic_json.output │ │ ├── basic_json__value_t.cpp │ │ ├── basic_json__value_t.output │ │ ├── begin.cpp │ │ ├── begin.output │ │ ├── binary.cpp │ │ ├── binary.output │ │ ├── binary_t.cpp │ │ ├── binary_t.output │ │ ├── boolean_t.cpp │ │ ├── boolean_t.output │ │ ├── byte_container_with_subtype__byte_container_with_subtype.cpp │ │ ├── byte_container_with_subtype__byte_container_with_subtype.output │ │ ├── byte_container_with_subtype__clear_subtype.cpp │ │ ├── byte_container_with_subtype__clear_subtype.output │ │ ├── byte_container_with_subtype__has_subtype.cpp │ │ ├── byte_container_with_subtype__has_subtype.output │ │ ├── byte_container_with_subtype__set_subtype.cpp │ │ ├── byte_container_with_subtype__set_subtype.output │ │ ├── byte_container_with_subtype__subtype.cpp │ │ ├── byte_container_with_subtype__subtype.output │ │ ├── cbegin.cpp │ │ ├── cbegin.output │ │ ├── cbor_tag_handler_t.cpp │ │ ├── cbor_tag_handler_t.output │ │ ├── cend.cpp │ │ ├── cend.output │ │ ├── clear.cpp │ │ ├── clear.output │ │ ├── contains__json_pointer.cpp │ │ ├── contains__json_pointer.output │ │ ├── contains__keytype.c++17.cpp │ │ ├── contains__keytype.c++17.output │ │ ├── contains__object_t_key_type.cpp │ │ ├── contains__object_t_key_type.output │ │ ├── count__keytype.c++17.cpp │ │ ├── count__keytype.c++17.output │ │ ├── count__object_t_key_type.cpp │ │ ├── count__object_t_key_type.output │ │ ├── crbegin.cpp │ │ ├── crbegin.output │ │ ├── crend.cpp │ │ ├── crend.output │ │ ├── default_object_comparator_t.cpp │ │ ├── default_object_comparator_t.output │ │ ├── diagnostics_extended.cpp │ │ ├── diagnostics_extended.output │ │ ├── diagnostics_standard.cpp │ │ ├── diagnostics_standard.output │ │ ├── diff.cpp │ │ ├── diff.output │ │ ├── dump.cpp │ │ ├── dump.output │ │ ├── emplace.cpp │ │ ├── emplace.output │ │ ├── emplace_back.cpp │ │ ├── emplace_back.output │ │ ├── empty.cpp │ │ ├── empty.output │ │ ├── end.cpp │ │ ├── end.output │ │ ├── erase__IteratorType.cpp │ │ ├── erase__IteratorType.output │ │ ├── erase__IteratorType_IteratorType.cpp │ │ ├── erase__IteratorType_IteratorType.output │ │ ├── erase__keytype.c++17.cpp │ │ ├── erase__keytype.c++17.output │ │ ├── erase__object_t_key_type.cpp │ │ ├── erase__object_t_key_type.output │ │ ├── erase__size_type.cpp │ │ ├── erase__size_type.output │ │ ├── error_handler_t.cpp │ │ ├── error_handler_t.output │ │ ├── exception.cpp │ │ ├── exception.output │ │ ├── find__keytype.c++17.cpp │ │ ├── find__keytype.c++17.output │ │ ├── find__object_t_key_type.cpp │ │ ├── find__object_t_key_type.output │ │ ├── flatten.cpp │ │ ├── flatten.output │ │ ├── from_bjdata.cpp │ │ ├── from_bjdata.output │ │ ├── from_bson.cpp │ │ ├── from_bson.output │ │ ├── from_cbor.cpp │ │ ├── from_cbor.output │ │ ├── from_json__default_constructible.cpp │ │ ├── from_json__default_constructible.output │ │ ├── from_json__non_default_constructible.cpp │ │ ├── from_json__non_default_constructible.output │ │ ├── from_msgpack.cpp │ │ ├── from_msgpack.output │ │ ├── from_ubjson.cpp │ │ ├── from_ubjson.output │ │ ├── front.cpp │ │ ├── front.output │ │ ├── get__PointerType.cpp │ │ ├── get__PointerType.output │ │ ├── get__ValueType_const.cpp │ │ ├── get__ValueType_const.output │ │ ├── get_allocator.cpp │ │ ├── get_allocator.output │ │ ├── get_binary.cpp │ │ ├── get_binary.output │ │ ├── get_ptr.cpp │ │ ├── get_ptr.output │ │ ├── get_ref.cpp │ │ ├── get_ref.output │ │ ├── get_to.cpp │ │ ├── get_to.output │ │ ├── insert.cpp │ │ ├── insert.output │ │ ├── insert__count.cpp │ │ ├── insert__count.output │ │ ├── insert__ilist.cpp │ │ ├── insert__ilist.output │ │ ├── insert__range.cpp │ │ ├── insert__range.output │ │ ├── insert__range_object.cpp │ │ ├── insert__range_object.output │ │ ├── invalid_iterator.cpp │ │ ├── invalid_iterator.output │ │ ├── is_array.cpp │ │ ├── is_array.output │ │ ├── is_binary.cpp │ │ ├── is_binary.output │ │ ├── is_boolean.cpp │ │ ├── is_boolean.output │ │ ├── is_discarded.cpp │ │ ├── is_discarded.output │ │ ├── is_null.cpp │ │ ├── is_null.output │ │ ├── is_number.cpp │ │ ├── is_number.output │ │ ├── is_number_float.cpp │ │ ├── is_number_float.output │ │ ├── is_number_integer.cpp │ │ ├── is_number_integer.output │ │ ├── is_number_unsigned.cpp │ │ ├── is_number_unsigned.output │ │ ├── is_object.cpp │ │ ├── is_object.output │ │ ├── is_primitive.cpp │ │ ├── is_primitive.output │ │ ├── is_string.cpp │ │ ├── is_string.output │ │ ├── is_structured.cpp │ │ ├── is_structured.output │ │ ├── items.cpp │ │ ├── items.output │ │ ├── json_base_class_t.cpp │ │ ├── json_base_class_t.output │ │ ├── json_lines.cpp │ │ ├── json_lines.output │ │ ├── json_pointer.cpp │ │ ├── json_pointer.output │ │ ├── json_pointer__back.cpp │ │ ├── json_pointer__back.output │ │ ├── json_pointer__empty.cpp │ │ ├── json_pointer__empty.output │ │ ├── json_pointer__operator__equal.cpp │ │ ├── json_pointer__operator__equal.output │ │ ├── json_pointer__operator__equal_stringtype.cpp │ │ ├── json_pointer__operator__equal_stringtype.output │ │ ├── json_pointer__operator__notequal.cpp │ │ ├── json_pointer__operator__notequal.output │ │ ├── json_pointer__operator__notequal_stringtype.cpp │ │ ├── json_pointer__operator__notequal_stringtype.output │ │ ├── json_pointer__operator_add.cpp │ │ ├── json_pointer__operator_add.output │ │ ├── json_pointer__operator_add_binary.cpp │ │ ├── json_pointer__operator_add_binary.output │ │ ├── json_pointer__operator_string_t.cpp │ │ ├── json_pointer__operator_string_t.output │ │ ├── json_pointer__parent_pointer.cpp │ │ ├── json_pointer__parent_pointer.output │ │ ├── json_pointer__pop_back.cpp │ │ ├── json_pointer__pop_back.output │ │ ├── json_pointer__push_back.cpp │ │ ├── json_pointer__push_back.output │ │ ├── json_pointer__string_t.cpp │ │ ├── json_pointer__string_t.output │ │ ├── json_pointer__to_string.cpp │ │ ├── json_pointer__to_string.output │ │ ├── max_size.cpp │ │ ├── max_size.output │ │ ├── merge_patch.cpp │ │ ├── merge_patch.output │ │ ├── meta.cpp │ │ ├── meta.output │ │ ├── nlohmann_define_type_intrusive_explicit.cpp │ │ ├── nlohmann_define_type_intrusive_explicit.output │ │ ├── nlohmann_define_type_intrusive_macro.cpp │ │ ├── nlohmann_define_type_intrusive_macro.output │ │ ├── nlohmann_define_type_intrusive_with_default_explicit.cpp │ │ ├── nlohmann_define_type_intrusive_with_default_explicit.output │ │ ├── nlohmann_define_type_intrusive_with_default_macro.cpp │ │ ├── nlohmann_define_type_intrusive_with_default_macro.output │ │ ├── nlohmann_define_type_non_intrusive_explicit.cpp │ │ ├── nlohmann_define_type_non_intrusive_explicit.output │ │ ├── nlohmann_define_type_non_intrusive_macro.cpp │ │ ├── nlohmann_define_type_non_intrusive_macro.output │ │ ├── nlohmann_define_type_non_intrusive_with_default_explicit.cpp │ │ ├── nlohmann_define_type_non_intrusive_with_default_explicit.output │ │ ├── nlohmann_define_type_non_intrusive_with_default_macro.cpp │ │ ├── nlohmann_define_type_non_intrusive_with_default_macro.output │ │ ├── nlohmann_json_namespace.cpp │ │ ├── nlohmann_json_namespace.output │ │ ├── nlohmann_json_namespace_begin.c++17.cpp │ │ ├── nlohmann_json_namespace_begin.c++17.output │ │ ├── nlohmann_json_namespace_no_version.cpp │ │ ├── nlohmann_json_namespace_no_version.output │ │ ├── nlohmann_json_serialize_enum.cpp │ │ ├── nlohmann_json_serialize_enum.output │ │ ├── nlohmann_json_serialize_enum_2.cpp │ │ ├── nlohmann_json_serialize_enum_2.output │ │ ├── nlohmann_json_version.cpp │ │ ├── nlohmann_json_version.output │ │ ├── number_float_t.cpp │ │ ├── number_float_t.output │ │ ├── number_integer_t.cpp │ │ ├── number_integer_t.output │ │ ├── number_unsigned_t.cpp │ │ ├── number_unsigned_t.output │ │ ├── object.cpp │ │ ├── object.output │ │ ├── object_comparator_t.cpp │ │ ├── object_comparator_t.output │ │ ├── object_t.cpp │ │ ├── object_t.output │ │ ├── operator__ValueType.cpp │ │ ├── operator__ValueType.output │ │ ├── operator__equal.cpp │ │ ├── operator__equal.output │ │ ├── operator__equal__nullptr_t.cpp │ │ ├── operator__equal__nullptr_t.output │ │ ├── operator__equal__specializations.cpp │ │ ├── operator__equal__specializations.output │ │ ├── operator__greater.cpp │ │ ├── operator__greater.output │ │ ├── operator__greaterequal.cpp │ │ ├── operator__greaterequal.output │ │ ├── operator__less.cpp │ │ ├── operator__less.output │ │ ├── operator__lessequal.cpp │ │ ├── operator__lessequal.output │ │ ├── operator__notequal.cpp │ │ ├── operator__notequal.output │ │ ├── operator__notequal__nullptr_t.cpp │ │ ├── operator__notequal__nullptr_t.output │ │ ├── operator__value_t.cpp │ │ ├── operator__value_t.output │ │ ├── operator_array__json_pointer.cpp │ │ ├── operator_array__json_pointer.output │ │ ├── operator_array__json_pointer_const.cpp │ │ ├── operator_array__json_pointer_const.output │ │ ├── operator_array__keytype.c++17.cpp │ │ ├── operator_array__keytype.c++17.output │ │ ├── operator_array__keytype_const.c++17.cpp │ │ ├── operator_array__keytype_const.c++17.output │ │ ├── operator_array__object_t_key_type.cpp │ │ ├── operator_array__object_t_key_type.output │ │ ├── operator_array__object_t_key_type_const.cpp │ │ ├── operator_array__object_t_key_type_const.output │ │ ├── operator_array__size_type.cpp │ │ ├── operator_array__size_type.output │ │ ├── operator_array__size_type_const.cpp │ │ ├── operator_array__size_type_const.output │ │ ├── operator_deserialize.cpp │ │ ├── operator_deserialize.output │ │ ├── operator_literal_json.cpp │ │ ├── operator_literal_json.output │ │ ├── operator_literal_json_pointer.cpp │ │ ├── operator_literal_json_pointer.output │ │ ├── operator_ltlt__basic_json.cpp │ │ ├── operator_ltlt__basic_json.output │ │ ├── operator_ltlt__json_pointer.cpp │ │ ├── operator_ltlt__json_pointer.output │ │ ├── operator_spaceship__const_reference.c++20.cpp │ │ ├── operator_spaceship__const_reference.c++20.output │ │ ├── operator_spaceship__scalartype.c++20.cpp │ │ ├── operator_spaceship__scalartype.c++20.output │ │ ├── ordered_json.cpp │ │ ├── ordered_json.output │ │ ├── ordered_map.cpp │ │ ├── ordered_map.output │ │ ├── other_error.cpp │ │ ├── other_error.output │ │ ├── out_of_range.cpp │ │ ├── out_of_range.output │ │ ├── parse__allow_exceptions.cpp │ │ ├── parse__allow_exceptions.output │ │ ├── parse__array__parser_callback_t.cpp │ │ ├── parse__array__parser_callback_t.output │ │ ├── parse__contiguouscontainer__parser_callback_t.cpp │ │ ├── parse__contiguouscontainer__parser_callback_t.output │ │ ├── parse__istream__parser_callback_t.cpp │ │ ├── parse__istream__parser_callback_t.output │ │ ├── parse__iterator_pair.cpp │ │ ├── parse__iterator_pair.link │ │ ├── parse__iterator_pair.output │ │ ├── parse__pointers.cpp │ │ ├── parse__pointers.link │ │ ├── parse__pointers.output │ │ ├── parse__string__parser_callback_t.cpp │ │ ├── parse__string__parser_callback_t.output │ │ ├── parse_error.cpp │ │ ├── parse_error.output │ │ ├── patch.cpp │ │ ├── patch.output │ │ ├── patch_inplace.cpp │ │ ├── patch_inplace.output │ │ ├── push_back.cpp │ │ ├── push_back.output │ │ ├── push_back__initializer_list.cpp │ │ ├── push_back__initializer_list.output │ │ ├── push_back__object_t__value.cpp │ │ ├── push_back__object_t__value.output │ │ ├── rbegin.cpp │ │ ├── rbegin.output │ │ ├── rend.cpp │ │ ├── rend.output │ │ ├── sax_parse.cpp │ │ ├── sax_parse.output │ │ ├── sax_parse__binary.cpp │ │ ├── sax_parse__binary.output │ │ ├── size.cpp │ │ ├── size.output │ │ ├── std_hash.cpp │ │ ├── std_hash.output │ │ ├── std_swap.cpp │ │ ├── std_swap.output │ │ ├── string_t.cpp │ │ ├── string_t.output │ │ ├── swap__array_t.cpp │ │ ├── swap__array_t.output │ │ ├── swap__binary_t.cpp │ │ ├── swap__binary_t.output │ │ ├── swap__object_t.cpp │ │ ├── swap__object_t.output │ │ ├── swap__reference.cpp │ │ ├── swap__reference.output │ │ ├── swap__string_t.cpp │ │ ├── swap__string_t.output │ │ ├── to_bjdata.cpp │ │ ├── to_bjdata.output │ │ ├── to_bson.cpp │ │ ├── to_bson.output │ │ ├── to_cbor.cpp │ │ ├── to_cbor.output │ │ ├── to_json.cpp │ │ ├── to_json.output │ │ ├── to_msgpack.cpp │ │ ├── to_msgpack.output │ │ ├── to_string.cpp │ │ ├── to_string.output │ │ ├── to_ubjson.cpp │ │ ├── to_ubjson.output │ │ ├── type.cpp │ │ ├── type.output │ │ ├── type_error.cpp │ │ ├── type_error.output │ │ ├── type_name.cpp │ │ ├── type_name.output │ │ ├── unflatten.cpp │ │ ├── unflatten.output │ │ ├── update.cpp │ │ ├── update.output │ │ ├── update__range.cpp │ │ ├── update__range.output │ │ ├── value__json_ptr.cpp │ │ ├── value__json_ptr.output │ │ ├── value__keytype.c++17.cpp │ │ ├── value__keytype.c++17.output │ │ ├── value__object_t_key_type.cpp │ │ └── value__object_t_key_type.output │ ├── json.gif │ ├── mkdocs │ │ ├── Makefile │ │ ├── docs │ │ │ ├── api │ │ │ │ ├── adl_serializer │ │ │ │ │ ├── from_json.md │ │ │ │ │ ├── index.md │ │ │ │ │ └── to_json.md │ │ │ │ ├── basic_json │ │ │ │ │ ├── accept.md │ │ │ │ │ ├── array.md │ │ │ │ │ ├── array_t.md │ │ │ │ │ ├── at.md │ │ │ │ │ ├── back.md │ │ │ │ │ ├── basic_json.md │ │ │ │ │ ├── begin.md │ │ │ │ │ ├── binary.md │ │ │ │ │ ├── binary_t.md │ │ │ │ │ ├── boolean_t.md │ │ │ │ │ ├── cbegin.md │ │ │ │ │ ├── cbor_tag_handler_t.md │ │ │ │ │ ├── cend.md │ │ │ │ │ ├── clear.md │ │ │ │ │ ├── contains.md │ │ │ │ │ ├── count.md │ │ │ │ │ ├── crbegin.md │ │ │ │ │ ├── crend.md │ │ │ │ │ ├── default_object_comparator_t.md │ │ │ │ │ ├── diff.md │ │ │ │ │ ├── dump.md │ │ │ │ │ ├── emplace.md │ │ │ │ │ ├── emplace_back.md │ │ │ │ │ ├── empty.md │ │ │ │ │ ├── end.md │ │ │ │ │ ├── erase.md │ │ │ │ │ ├── error_handler_t.md │ │ │ │ │ ├── exception.md │ │ │ │ │ ├── find.md │ │ │ │ │ ├── flatten.md │ │ │ │ │ ├── from_bjdata.md │ │ │ │ │ ├── from_bson.md │ │ │ │ │ ├── from_cbor.md │ │ │ │ │ ├── from_msgpack.md │ │ │ │ │ ├── from_ubjson.md │ │ │ │ │ ├── front.md │ │ │ │ │ ├── get.md │ │ │ │ │ ├── get_allocator.md │ │ │ │ │ ├── get_binary.md │ │ │ │ │ ├── get_ptr.md │ │ │ │ │ ├── get_ref.md │ │ │ │ │ ├── get_to.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── input_format_t.md │ │ │ │ │ ├── insert.md │ │ │ │ │ ├── invalid_iterator.md │ │ │ │ │ ├── is_array.md │ │ │ │ │ ├── is_binary.md │ │ │ │ │ ├── is_boolean.md │ │ │ │ │ ├── is_discarded.md │ │ │ │ │ ├── is_null.md │ │ │ │ │ ├── is_number.md │ │ │ │ │ ├── is_number_float.md │ │ │ │ │ ├── is_number_integer.md │ │ │ │ │ ├── is_number_unsigned.md │ │ │ │ │ ├── is_object.md │ │ │ │ │ ├── is_primitive.md │ │ │ │ │ ├── is_string.md │ │ │ │ │ ├── is_structured.md │ │ │ │ │ ├── items.md │ │ │ │ │ ├── json_base_class_t.md │ │ │ │ │ ├── json_serializer.md │ │ │ │ │ ├── max_size.md │ │ │ │ │ ├── merge_patch.md │ │ │ │ │ ├── meta.md │ │ │ │ │ ├── number_float_t.md │ │ │ │ │ ├── number_integer_t.md │ │ │ │ │ ├── number_unsigned_t.md │ │ │ │ │ ├── object.md │ │ │ │ │ ├── object_comparator_t.md │ │ │ │ │ ├── object_t.md │ │ │ │ │ ├── operator+=.md │ │ │ │ │ ├── operator=.md │ │ │ │ │ ├── operator[].md │ │ │ │ │ ├── operator_ValueType.md │ │ │ │ │ ├── operator_eq.md │ │ │ │ │ ├── operator_ge.md │ │ │ │ │ ├── operator_gt.md │ │ │ │ │ ├── operator_le.md │ │ │ │ │ ├── operator_lt.md │ │ │ │ │ ├── operator_ne.md │ │ │ │ │ ├── operator_spaceship.md │ │ │ │ │ ├── operator_value_t.md │ │ │ │ │ ├── other_error.md │ │ │ │ │ ├── out_of_range.md │ │ │ │ │ ├── parse.md │ │ │ │ │ ├── parse_error.md │ │ │ │ │ ├── parse_event_t.md │ │ │ │ │ ├── parser_callback_t.md │ │ │ │ │ ├── patch.md │ │ │ │ │ ├── patch_inplace.md │ │ │ │ │ ├── push_back.md │ │ │ │ │ ├── rbegin.md │ │ │ │ │ ├── rend.md │ │ │ │ │ ├── sax_parse.md │ │ │ │ │ ├── size.md │ │ │ │ │ ├── std_hash.md │ │ │ │ │ ├── std_swap.md │ │ │ │ │ ├── string_t.md │ │ │ │ │ ├── swap.md │ │ │ │ │ ├── to_bjdata.md │ │ │ │ │ ├── to_bson.md │ │ │ │ │ ├── to_cbor.md │ │ │ │ │ ├── to_msgpack.md │ │ │ │ │ ├── to_string.md │ │ │ │ │ ├── to_ubjson.md │ │ │ │ │ ├── type.md │ │ │ │ │ ├── type_error.md │ │ │ │ │ ├── type_name.md │ │ │ │ │ ├── unflatten.md │ │ │ │ │ ├── update.md │ │ │ │ │ ├── value.md │ │ │ │ │ ├── value_t.md │ │ │ │ │ └── ~basic_json.md │ │ │ │ ├── byte_container_with_subtype │ │ │ │ │ ├── byte_container_with_subtype.md │ │ │ │ │ ├── clear_subtype.md │ │ │ │ │ ├── has_subtype.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── set_subtype.md │ │ │ │ │ └── subtype.md │ │ │ │ ├── json.md │ │ │ │ ├── json_pointer │ │ │ │ │ ├── back.md │ │ │ │ │ ├── empty.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── json_pointer.md │ │ │ │ │ ├── operator_eq.md │ │ │ │ │ ├── operator_ne.md │ │ │ │ │ ├── operator_slash.md │ │ │ │ │ ├── operator_slasheq.md │ │ │ │ │ ├── operator_string_t.md │ │ │ │ │ ├── parent_pointer.md │ │ │ │ │ ├── pop_back.md │ │ │ │ │ ├── push_back.md │ │ │ │ │ ├── string_t.md │ │ │ │ │ └── to_string.md │ │ │ │ ├── json_sax │ │ │ │ │ ├── binary.md │ │ │ │ │ ├── boolean.md │ │ │ │ │ ├── end_array.md │ │ │ │ │ ├── end_object.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── key.md │ │ │ │ │ ├── null.md │ │ │ │ │ ├── number_float.md │ │ │ │ │ ├── number_integer.md │ │ │ │ │ ├── number_unsigned.md │ │ │ │ │ ├── parse_error.md │ │ │ │ │ ├── start_array.md │ │ │ │ │ ├── start_object.md │ │ │ │ │ └── string.md │ │ │ │ ├── macros │ │ │ │ │ ├── index.md │ │ │ │ │ ├── json_assert.md │ │ │ │ │ ├── json_diagnostics.md │ │ │ │ │ ├── json_disable_enum_serialization.md │ │ │ │ │ ├── json_has_cpp_11.md │ │ │ │ │ ├── json_has_filesystem.md │ │ │ │ │ ├── json_has_ranges.md │ │ │ │ │ ├── json_has_three_way_comparison.md │ │ │ │ │ ├── json_no_io.md │ │ │ │ │ ├── json_noexception.md │ │ │ │ │ ├── json_skip_library_version_check.md │ │ │ │ │ ├── json_skip_unsupported_compiler_check.md │ │ │ │ │ ├── json_throw_user.md │ │ │ │ │ ├── json_use_global_udls.md │ │ │ │ │ ├── json_use_implicit_conversions.md │ │ │ │ │ ├── json_use_legacy_discarded_value_comparison.md │ │ │ │ │ ├── nlohmann_define_type_intrusive.md │ │ │ │ │ ├── nlohmann_define_type_non_intrusive.md │ │ │ │ │ ├── nlohmann_json_namespace.md │ │ │ │ │ ├── nlohmann_json_namespace_begin.md │ │ │ │ │ ├── nlohmann_json_namespace_no_version.md │ │ │ │ │ ├── nlohmann_json_serialize_enum.md │ │ │ │ │ └── nlohmann_json_version_major.md │ │ │ │ ├── operator_gtgt.md │ │ │ │ ├── operator_literal_json.md │ │ │ │ ├── operator_literal_json_pointer.md │ │ │ │ ├── operator_ltlt.md │ │ │ │ ├── ordered_json.md │ │ │ │ └── ordered_map.md │ │ │ ├── css │ │ │ │ └── custom.css │ │ │ ├── features │ │ │ │ ├── arbitrary_types.md │ │ │ │ ├── assertions.md │ │ │ │ ├── binary_formats │ │ │ │ │ ├── bjdata.md │ │ │ │ │ ├── bson.md │ │ │ │ │ ├── cbor.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── messagepack.md │ │ │ │ │ └── ubjson.md │ │ │ │ ├── binary_values.md │ │ │ │ ├── comments.md │ │ │ │ ├── element_access │ │ │ │ │ ├── checked_access.md │ │ │ │ │ ├── default_value.md │ │ │ │ │ ├── index.md │ │ │ │ │ └── unchecked_access.md │ │ │ │ ├── enum_conversion.md │ │ │ │ ├── iterators.md │ │ │ │ ├── json_patch.md │ │ │ │ ├── json_pointer.md │ │ │ │ ├── macros.md │ │ │ │ ├── merge_patch.md │ │ │ │ ├── namespace.md │ │ │ │ ├── object_order.md │ │ │ │ ├── parsing │ │ │ │ │ ├── index.md │ │ │ │ │ ├── json_lines.md │ │ │ │ │ ├── parse_exceptions.md │ │ │ │ │ ├── parser_callbacks.md │ │ │ │ │ └── sax_interface.md │ │ │ │ └── types │ │ │ │ │ ├── index.md │ │ │ │ │ └── number_handling.md │ │ │ ├── home │ │ │ │ ├── code_of_conduct.md │ │ │ │ ├── design_goals.md │ │ │ │ ├── exceptions.md │ │ │ │ ├── faq.md │ │ │ │ ├── license.md │ │ │ │ ├── releases.md │ │ │ │ └── sponsors.md │ │ │ ├── images │ │ │ │ ├── callback_events.png │ │ │ │ ├── json_syntax_number.png │ │ │ │ ├── range-begin-end.svg │ │ │ │ └── range-rbegin-rend.svg │ │ │ ├── index.md │ │ │ └── integration │ │ │ │ ├── cmake.md │ │ │ │ ├── conan │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Conanfile.txt │ │ │ │ └── example.cpp │ │ │ │ ├── example.cpp │ │ │ │ ├── index.md │ │ │ │ ├── package_managers.md │ │ │ │ ├── pkg-config.md │ │ │ │ └── vcpkg │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── example.cpp │ │ ├── mkdocs.yml │ │ ├── requirements.txt │ │ └── scripts │ │ │ └── check_structure.py │ └── usages │ │ ├── ios.png │ │ └── macos.png ├── include │ └── nlohmann │ │ ├── adl_serializer.hpp │ │ ├── byte_container_with_subtype.hpp │ │ ├── detail │ │ ├── abi_macros.hpp │ │ ├── conversions │ │ │ ├── from_json.hpp │ │ │ ├── to_chars.hpp │ │ │ └── to_json.hpp │ │ ├── exceptions.hpp │ │ ├── hash.hpp │ │ ├── input │ │ │ ├── binary_reader.hpp │ │ │ ├── input_adapters.hpp │ │ │ ├── json_sax.hpp │ │ │ ├── lexer.hpp │ │ │ ├── parser.hpp │ │ │ └── position_t.hpp │ │ ├── iterators │ │ │ ├── internal_iterator.hpp │ │ │ ├── iter_impl.hpp │ │ │ ├── iteration_proxy.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── json_reverse_iterator.hpp │ │ │ └── primitive_iterator.hpp │ │ ├── json_custom_base_class.hpp │ │ ├── json_pointer.hpp │ │ ├── json_ref.hpp │ │ ├── macro_scope.hpp │ │ ├── macro_unscope.hpp │ │ ├── meta │ │ │ ├── call_std │ │ │ │ ├── begin.hpp │ │ │ │ └── end.hpp │ │ │ ├── cpp_future.hpp │ │ │ ├── detected.hpp │ │ │ ├── identity_tag.hpp │ │ │ ├── is_sax.hpp │ │ │ ├── std_fs.hpp │ │ │ ├── type_traits.hpp │ │ │ └── void_t.hpp │ │ ├── output │ │ │ ├── binary_writer.hpp │ │ │ ├── output_adapters.hpp │ │ │ └── serializer.hpp │ │ ├── string_concat.hpp │ │ ├── string_escape.hpp │ │ └── value_t.hpp │ │ ├── json.hpp │ │ ├── json_fwd.hpp │ │ ├── ordered_map.hpp │ │ └── thirdparty │ │ └── hedley │ │ ├── hedley.hpp │ │ └── hedley_undef.hpp ├── meson.build ├── nlohmann_json.natvis ├── single_include │ └── nlohmann │ │ ├── json.hpp │ │ └── json_fwd.hpp ├── tests │ ├── CMakeLists.txt │ ├── Makefile │ ├── abi │ │ ├── CMakeLists.txt │ │ ├── config │ │ │ ├── CMakeLists.txt │ │ │ ├── config.hpp │ │ │ ├── custom.cpp │ │ │ ├── default.cpp │ │ │ └── noversion.cpp │ │ ├── diag │ │ │ ├── CMakeLists.txt │ │ │ ├── diag.cpp │ │ │ ├── diag.hpp │ │ │ ├── diag_off.cpp │ │ │ └── diag_on.cpp │ │ ├── include │ │ │ └── nlohmann │ │ │ │ └── json_v3_10_5.hpp │ │ ├── inline_ns │ │ │ ├── CMakeLists.txt │ │ │ ├── use_current.cpp │ │ │ └── use_v3_10_5.cpp │ │ └── main.cpp │ ├── benchmarks │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── benchmarks.cpp │ ├── cmake_add_subdirectory │ │ ├── CMakeLists.txt │ │ └── project │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ ├── cmake_fetch_content │ │ ├── CMakeLists.txt │ │ └── project │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ ├── cmake_fetch_content2 │ │ ├── CMakeLists.txt │ │ └── project │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ ├── cmake_import │ │ ├── CMakeLists.txt │ │ └── project │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ ├── cmake_import_minver │ │ ├── CMakeLists.txt │ │ └── project │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ ├── cmake_target_include_directories │ │ ├── CMakeLists.txt │ │ └── project │ │ │ ├── Bar.cpp │ │ │ ├── Bar.hpp │ │ │ ├── CMakeLists.txt │ │ │ ├── Foo.cpp │ │ │ ├── Foo.hpp │ │ │ └── main.cpp │ ├── cuda_example │ │ ├── CMakeLists.txt │ │ └── json_cuda.cu │ ├── fuzzing.md │ ├── reports │ │ ├── 2016-08-29-fuzz │ │ │ ├── exec_speed.png │ │ │ ├── fuzz.tiff │ │ │ ├── high_freq.png │ │ │ ├── index.html │ │ │ └── low_freq.png │ │ ├── 2016-09-09-nativejson_benchmark │ │ │ ├── README.md │ │ │ ├── conformance_Nlohmann (C++11).md │ │ │ ├── conformance_overall_Result.png │ │ │ ├── performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_1._Parse_Memory_(byte).png │ │ │ ├── performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_1._Parse_Time_(ms).png │ │ │ ├── performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_2._Stringify_Time_(ms).png │ │ │ ├── performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_3._Prettify_Time_(ms).png │ │ │ └── performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_7._Code_size_FileSize_(byte).png │ │ └── 2016-10-02-fuzz │ │ │ ├── exec_speed.png │ │ │ ├── fuzz.tiff │ │ │ ├── high_freq.png │ │ │ ├── index.html │ │ │ └── low_freq.png │ ├── src │ │ ├── fuzzer-driver_afl.cpp │ │ ├── fuzzer-parse_bjdata.cpp │ │ ├── fuzzer-parse_bson.cpp │ │ ├── fuzzer-parse_cbor.cpp │ │ ├── fuzzer-parse_json.cpp │ │ ├── fuzzer-parse_msgpack.cpp │ │ ├── fuzzer-parse_ubjson.cpp │ │ ├── make_test_data_available.hpp │ │ ├── test_utils.hpp │ │ ├── unit-32bit.cpp │ │ ├── unit-algorithms.cpp │ │ ├── unit-allocator.cpp │ │ ├── unit-alt-string.cpp │ │ ├── unit-assert_macro.cpp │ │ ├── unit-binary_formats.cpp │ │ ├── unit-bjdata.cpp │ │ ├── unit-bson.cpp │ │ ├── unit-byte_container_with_subtype.cpp │ │ ├── unit-capacity.cpp │ │ ├── unit-cbor.cpp │ │ ├── unit-class_const_iterator.cpp │ │ ├── unit-class_iterator.cpp │ │ ├── unit-class_lexer.cpp │ │ ├── unit-class_parser.cpp │ │ ├── unit-comparison.cpp │ │ ├── unit-concepts.cpp │ │ ├── unit-constructor1.cpp │ │ ├── unit-constructor2.cpp │ │ ├── unit-convenience.cpp │ │ ├── unit-conversions.cpp │ │ ├── unit-custom-base-class.cpp │ │ ├── unit-deserialization.cpp │ │ ├── unit-diagnostics.cpp │ │ ├── unit-disabled_exceptions.cpp │ │ ├── unit-element_access1.cpp │ │ ├── unit-element_access2.cpp │ │ ├── unit-hash.cpp │ │ ├── unit-inspection.cpp │ │ ├── unit-items.cpp │ │ ├── unit-iterators1.cpp │ │ ├── unit-iterators2.cpp │ │ ├── unit-json_patch.cpp │ │ ├── unit-json_pointer.cpp │ │ ├── unit-large_json.cpp │ │ ├── unit-merge_patch.cpp │ │ ├── unit-meta.cpp │ │ ├── unit-modifiers.cpp │ │ ├── unit-msgpack.cpp │ │ ├── unit-noexcept.cpp │ │ ├── unit-ordered_json.cpp │ │ ├── unit-ordered_map.cpp │ │ ├── unit-pointer_access.cpp │ │ ├── unit-readme.cpp │ │ ├── unit-reference_access.cpp │ │ ├── unit-regression1.cpp │ │ ├── unit-regression2.cpp │ │ ├── unit-serialization.cpp │ │ ├── unit-testsuites.cpp │ │ ├── unit-to_chars.cpp │ │ ├── unit-type_traits.cpp │ │ ├── unit-ubjson.cpp │ │ ├── unit-udl.cpp │ │ ├── unit-udt.cpp │ │ ├── unit-udt_macro.cpp │ │ ├── unit-unicode1.cpp │ │ ├── unit-unicode2.cpp │ │ ├── unit-unicode3.cpp │ │ ├── unit-unicode4.cpp │ │ ├── unit-unicode5.cpp │ │ ├── unit-user_defined_input.cpp │ │ ├── unit-windows_h.cpp │ │ ├── unit-wstring.cpp │ │ └── unit.cpp │ └── thirdparty │ │ ├── Fuzzer │ │ ├── CMakeLists.txt │ │ ├── FuzzerCorpus.h │ │ ├── FuzzerCrossOver.cpp │ │ ├── FuzzerDefs.h │ │ ├── FuzzerDictionary.h │ │ ├── FuzzerDriver.cpp │ │ ├── FuzzerExtFunctions.def │ │ ├── FuzzerExtFunctions.h │ │ ├── FuzzerExtFunctionsDlsym.cpp │ │ ├── FuzzerExtFunctionsWeak.cpp │ │ ├── FuzzerExtFunctionsWeakAlias.cpp │ │ ├── FuzzerFlags.def │ │ ├── FuzzerIO.cpp │ │ ├── FuzzerIO.h │ │ ├── FuzzerIOPosix.cpp │ │ ├── FuzzerIOWindows.cpp │ │ ├── FuzzerInterface.h │ │ ├── FuzzerInternal.h │ │ ├── FuzzerLoop.cpp │ │ ├── FuzzerMain.cpp │ │ ├── FuzzerMerge.cpp │ │ ├── FuzzerMerge.h │ │ ├── FuzzerMutate.cpp │ │ ├── FuzzerMutate.h │ │ ├── FuzzerOptions.h │ │ ├── FuzzerRandom.h │ │ ├── FuzzerSHA1.cpp │ │ ├── FuzzerSHA1.h │ │ ├── FuzzerTracePC.cpp │ │ ├── FuzzerTracePC.h │ │ ├── FuzzerTraceState.cpp │ │ ├── FuzzerUtil.cpp │ │ ├── FuzzerUtil.h │ │ ├── FuzzerUtilDarwin.cpp │ │ ├── FuzzerUtilLinux.cpp │ │ ├── FuzzerUtilPosix.cpp │ │ ├── FuzzerUtilWindows.cpp │ │ ├── FuzzerValueBitMap.h │ │ ├── README.txt │ │ ├── afl │ │ │ └── afl_driver.cpp │ │ ├── build.sh │ │ ├── cxx.dict │ │ ├── standalone │ │ │ └── StandaloneFuzzTargetMain.c │ │ └── test │ │ │ ├── AFLDriverTest.cpp │ │ │ ├── AbsNegAndConstant64Test.cpp │ │ │ ├── AbsNegAndConstantTest.cpp │ │ │ ├── AccumulateAllocationsTest.cpp │ │ │ ├── BufferOverflowOnInput.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CallerCalleeTest.cpp │ │ │ ├── CounterTest.cpp │ │ │ ├── CustomCrossOverTest.cpp │ │ │ ├── CustomMutatorTest.cpp │ │ │ ├── DSO1.cpp │ │ │ ├── DSO2.cpp │ │ │ ├── DSOTestExtra.cpp │ │ │ ├── DSOTestMain.cpp │ │ │ ├── DivTest.cpp │ │ │ ├── EmptyTest.cpp │ │ │ ├── FourIndependentBranchesTest.cpp │ │ │ ├── FullCoverageSetTest.cpp │ │ │ ├── FuzzerUnittest.cpp │ │ │ ├── InitializeTest.cpp │ │ │ ├── LeakTest.cpp │ │ │ ├── LeakTimeoutTest.cpp │ │ │ ├── LoadTest.cpp │ │ │ ├── MemcmpTest.cpp │ │ │ ├── NthRunCrashTest.cpp │ │ │ ├── NullDerefOnEmptyTest.cpp │ │ │ ├── NullDerefTest.cpp │ │ │ ├── OneHugeAllocTest.cpp │ │ │ ├── OutOfMemorySingleLargeMallocTest.cpp │ │ │ ├── OutOfMemoryTest.cpp │ │ │ ├── RepeatedBytesTest.cpp │ │ │ ├── RepeatedMemcmp.cpp │ │ │ ├── ShrinkControlFlowTest.cpp │ │ │ ├── ShrinkValueProfileTest.cpp │ │ │ ├── SignedIntOverflowTest.cpp │ │ │ ├── SimpleCmpTest.cpp │ │ │ ├── SimpleDictionaryTest.cpp │ │ │ ├── SimpleHashTest.cpp │ │ │ ├── SimpleTest.cpp │ │ │ ├── SimpleThreadedTest.cpp │ │ │ ├── SingleMemcmpTest.cpp │ │ │ ├── SingleStrcmpTest.cpp │ │ │ ├── SingleStrncmpTest.cpp │ │ │ ├── SpamyTest.cpp │ │ │ ├── StrcmpTest.cpp │ │ │ ├── StrncmpOOBTest.cpp │ │ │ ├── StrncmpTest.cpp │ │ │ ├── StrstrTest.cpp │ │ │ ├── SwapCmpTest.cpp │ │ │ ├── Switch2Test.cpp │ │ │ ├── SwitchTest.cpp │ │ │ ├── ThreadedLeakTest.cpp │ │ │ ├── ThreadedTest.cpp │ │ │ ├── TimeoutEmptyTest.cpp │ │ │ ├── TimeoutTest.cpp │ │ │ ├── TraceMallocTest.cpp │ │ │ ├── UninstrumentedTest.cpp │ │ │ ├── afl-driver-extra-stats.test │ │ │ ├── afl-driver-stderr.test │ │ │ ├── caller-callee.test │ │ │ ├── coverage.test │ │ │ ├── dict1.txt │ │ │ ├── dump_coverage.test │ │ │ ├── fuzzer-customcrossover.test │ │ │ ├── fuzzer-custommutator.test │ │ │ ├── fuzzer-dict.test │ │ │ ├── fuzzer-dirs.test │ │ │ ├── fuzzer-fdmask.test │ │ │ ├── fuzzer-finalstats.test │ │ │ ├── fuzzer-flags.test │ │ │ ├── fuzzer-jobs.test │ │ │ ├── fuzzer-leak.test │ │ │ ├── fuzzer-oom-with-profile.test │ │ │ ├── fuzzer-oom.test │ │ │ ├── fuzzer-printcovpcs.test │ │ │ ├── fuzzer-runs.test │ │ │ ├── fuzzer-seed.test │ │ │ ├── fuzzer-segv.test │ │ │ ├── fuzzer-singleinputs.test │ │ │ ├── fuzzer-threaded.test │ │ │ ├── fuzzer-timeout.test │ │ │ ├── fuzzer-traces-hooks.test │ │ │ ├── fuzzer-ubsan.test │ │ │ ├── fuzzer.test │ │ │ ├── hi.txt │ │ │ ├── lit.cfg │ │ │ ├── lit.site.cfg.in │ │ │ ├── merge.test │ │ │ ├── minimize_crash.test │ │ │ ├── no-coverage │ │ │ └── CMakeLists.txt │ │ │ ├── repeated-bytes.test │ │ │ ├── shrink.test │ │ │ ├── simple-cmp.test │ │ │ ├── standalone.test │ │ │ ├── swap-cmp.test │ │ │ ├── trace-malloc.test │ │ │ ├── ubsan │ │ │ └── CMakeLists.txt │ │ │ ├── ulimit.test │ │ │ ├── uninstrumented │ │ │ └── CMakeLists.txt │ │ │ ├── unit │ │ │ ├── lit.cfg │ │ │ └── lit.site.cfg.in │ │ │ ├── value-profile-cmp.test │ │ │ ├── value-profile-cmp2.test │ │ │ ├── value-profile-cmp3.test │ │ │ ├── value-profile-cmp4.test │ │ │ ├── value-profile-div.test │ │ │ ├── value-profile-load.test │ │ │ ├── value-profile-mem.test │ │ │ ├── value-profile-set.test │ │ │ ├── value-profile-strcmp.test │ │ │ ├── value-profile-strncmp.test │ │ │ └── value-profile-switch.test │ │ ├── doctest │ │ ├── doctest.h │ │ └── doctest_compatibility.h │ │ ├── fifo_map │ │ └── fifo_map.hpp │ │ └── imapdl │ │ └── filterbr.py ├── tools │ ├── amalgamate │ │ ├── CHANGES.md │ │ ├── README.md │ │ ├── amalgamate.py │ │ ├── config_json.json │ │ └── config_json_fwd.json │ ├── gdb_pretty_printer │ │ ├── README.md │ │ └── nlohmann-json.py │ ├── generate_natvis │ │ ├── README.md │ │ ├── generate_natvis.py │ │ └── nlohmann_json.natvis.j2 │ ├── macro_builder │ │ └── main.cpp │ └── serve_header │ │ ├── README.md │ │ ├── demo.png │ │ ├── requirements.txt │ │ ├── serve_header.py │ │ └── serve_header.yml.example └── wsjcpp.yml ├── miniz ├── CMakeLists.txt ├── ChangeLog.md ├── LICENSE ├── miniz.c ├── miniz.h └── readme.md ├── runtime └── CMakeLists.txt └── sqlite ├── CMakeLists.txt ├── sqlite3.c ├── sqlite3.h └── sqlite3ext.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/setup-test-env/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/.github/actions/setup-test-env/action.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/android-code-coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/.github/workflows/android-code-coverage.yml -------------------------------------------------------------------------------- /.github/workflows/android-integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/.github/workflows/android-integration-tests.yml -------------------------------------------------------------------------------- /.github/workflows/android-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/.github/workflows/android-lint.yml -------------------------------------------------------------------------------- /.github/workflows/android-unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/.github/workflows/android-unit-tests.yml -------------------------------------------------------------------------------- /.github/workflows/coreruntime-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/.github/workflows/coreruntime-tests.yml -------------------------------------------------------------------------------- /.github/workflows/publish-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/.github/workflows/publish-docs.yml -------------------------------------------------------------------------------- /.github/workflows/python-sdk-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/.github/workflows/python-sdk-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/.markdownlint-cli2.yaml -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/.ruff.toml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/Zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/LICENSES/Zlib.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/README.md -------------------------------------------------------------------------------- /agents/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/.gitignore -------------------------------------------------------------------------------- /agents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/README.md -------------------------------------------------------------------------------- /agents/examples/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/examples/android/.gitignore -------------------------------------------------------------------------------- /agents/examples/android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/examples/android/README.md -------------------------------------------------------------------------------- /agents/examples/android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /src/main/assets/* -------------------------------------------------------------------------------- /agents/examples/android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/examples/android/app/build.gradle.kts -------------------------------------------------------------------------------- /agents/examples/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/examples/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /agents/examples/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/examples/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /agents/examples/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/examples/android/build.gradle.kts -------------------------------------------------------------------------------- /agents/examples/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/examples/android/gradle.properties -------------------------------------------------------------------------------- /agents/examples/android/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/examples/android/gradle/libs.versions.toml -------------------------------------------------------------------------------- /agents/examples/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/examples/android/gradlew -------------------------------------------------------------------------------- /agents/examples/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/examples/android/gradlew.bat -------------------------------------------------------------------------------- /agents/examples/android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/examples/android/settings.gradle.kts -------------------------------------------------------------------------------- /agents/gmail_assistant/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/gmail_assistant/android/build.gradle.kts -------------------------------------------------------------------------------- /agents/gmail_assistant/android/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/gmail_assistant/android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/gmail_assistant/android/proguard-rules.pro -------------------------------------------------------------------------------- /agents/gmail_assistant/delitepyAssets/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/gmail_assistant/delitepyAssets/main.py -------------------------------------------------------------------------------- /agents/notifications_summarizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/notifications_summarizer/README.md -------------------------------------------------------------------------------- /agents/notifications_summarizer/android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/notifications_summarizer/android/README.md -------------------------------------------------------------------------------- /agents/notifications_summarizer/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/notifications_summarizer/android/build.gradle.kts -------------------------------------------------------------------------------- /agents/notifications_summarizer/android/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/notifications_summarizer/delitepyAssets/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/agents/notifications_summarizer/delitepyAssets/main.py -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/config.yml -------------------------------------------------------------------------------- /coreruntime/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .vscode/ 3 | coverage* 4 | dist/ 5 | deliteai* -------------------------------------------------------------------------------- /coreruntime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/CMakeLists.txt -------------------------------------------------------------------------------- /coreruntime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/README.md -------------------------------------------------------------------------------- /coreruntime/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/build.py -------------------------------------------------------------------------------- /coreruntime/core_utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/core_utils/CMakeLists.txt -------------------------------------------------------------------------------- /coreruntime/core_utils/include/core_utils/atomic_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/core_utils/include/core_utils/atomic_ptr.hpp -------------------------------------------------------------------------------- /coreruntime/core_utils/include/core_utils/fmt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/core_utils/include/core_utils/fmt.hpp -------------------------------------------------------------------------------- /coreruntime/core_utils/include/core_utils/ne_md5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/core_utils/include/core_utils/ne_md5.hpp -------------------------------------------------------------------------------- /coreruntime/core_utils/include/core_utils/shard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/core_utils/include/core_utils/shard.hpp -------------------------------------------------------------------------------- /coreruntime/core_utils/src/ne_md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/core_utils/src/ne_md5.cpp -------------------------------------------------------------------------------- /coreruntime/core_utils/src/shard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/core_utils/src/shard.cpp -------------------------------------------------------------------------------- /coreruntime/delitepy/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /coreruntime/delitepy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/delitepy/CMakeLists.txt -------------------------------------------------------------------------------- /coreruntime/delitepy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/delitepy/README.md -------------------------------------------------------------------------------- /coreruntime/delitepy/docs_template/builtins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/delitepy/docs_template/builtins.md -------------------------------------------------------------------------------- /coreruntime/delitepy/docs_template/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/delitepy/docs_template/conf.py -------------------------------------------------------------------------------- /coreruntime/delitepy/docs_template/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/delitepy/docs_template/index.md -------------------------------------------------------------------------------- /coreruntime/delitepy/docs_template/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/delitepy/docs_template/modules.md -------------------------------------------------------------------------------- /coreruntime/delitepy/docs_template/statements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/delitepy/docs_template/statements.md -------------------------------------------------------------------------------- /coreruntime/delitepy/library_stubs/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | /build/ 3 | /src_gen/ 4 | -------------------------------------------------------------------------------- /coreruntime/delitepy/library_stubs/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/delitepy/library_stubs/pyproject.toml -------------------------------------------------------------------------------- /coreruntime/delitepy/library_stubs/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/delitepy/library_stubs/setup.py -------------------------------------------------------------------------------- /coreruntime/delitepy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/delitepy/requirements.txt -------------------------------------------------------------------------------- /coreruntime/delitepy/scripts/build_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/delitepy/scripts/build_docs.sh -------------------------------------------------------------------------------- /coreruntime/delitepy/scripts/render_jinja2_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/delitepy/scripts/render_jinja2_templates.py -------------------------------------------------------------------------------- /coreruntime/nimble_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimble_client/CMakeLists.txt -------------------------------------------------------------------------------- /coreruntime/nimble_client/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimble_client/src/main.cpp -------------------------------------------------------------------------------- /coreruntime/nimble_diff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimble_diff/CMakeLists.txt -------------------------------------------------------------------------------- /coreruntime/nimble_diff/src/nimble_diff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimble_diff/src/nimble_diff.cpp -------------------------------------------------------------------------------- /coreruntime/nimble_shard/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimble_shard/CMakeLists.txt -------------------------------------------------------------------------------- /coreruntime/nimble_shard/src/nimble_shard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimble_shard/src/nimble_shard.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/CMakeLists.txt -------------------------------------------------------------------------------- /coreruntime/nimblenet/core_sdk/include/core_sdk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/core_sdk/include/core_sdk.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/core_sdk/src/core_sdk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/core_sdk/src/core_sdk.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/core_sdk/src/extra_core_sdk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/core_sdk/src/extra_core_sdk.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/core_sdk/src/nimble_exec_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/core_sdk/src/nimble_exec_info.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/database/include/database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/database/include/database.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/database/src/database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/database/src/database.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/executors/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/executors/CMakeLists.txt -------------------------------------------------------------------------------- /coreruntime/nimblenet/executors/model/src/base_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/executors/model/src/base_model.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/executors/onnx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/executors/onnx/CMakeLists.txt -------------------------------------------------------------------------------- /coreruntime/nimblenet/executors/onnx/src/onnx_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/executors/onnx/src/onnx_model.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/job_scheduler/include/base_job.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/job_scheduler/include/base_job.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/job_scheduler/include/future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/job_scheduler/include/future.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/job_scheduler/include/job.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/job_scheduler/include/job.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/job_scheduler/src/base_job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/job_scheduler/src/base_job.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/llm_executors/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/llm_executors/CMakeLists.txt -------------------------------------------------------------------------------- /coreruntime/nimblenet/nimble_net/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/nimble_net/CMakeLists.txt -------------------------------------------------------------------------------- /coreruntime/nimblenet/nimble_net/include/nimblejson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/nimble_net/include/nimblejson.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/nimble_net/include/nimblenet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/nimble_net/include/nimblenet.h -------------------------------------------------------------------------------- /coreruntime/nimblenet/nimble_net/include/nimblenet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/nimble_net/include/nimblenet.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/nimble_net/src/c_tensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/nimble_net/src/c_tensor.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/nimble_net/src/nimblejson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/nimble_net/src/nimblejson.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/nimble_net/src/nimblenet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/nimble_net/src/nimblenet.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/retriever/include/retriever.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/retriever/include/retriever.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/retriever/src/retriever.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/retriever/src/retriever.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/server_api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/server_api/CMakeLists.txt -------------------------------------------------------------------------------- /coreruntime/nimblenet/server_api/include/server_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/server_api/include/server_api.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/server_api/src/server_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/server_api/src/server_api.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/simulation_manager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/simulation_manager/CMakeLists.txt -------------------------------------------------------------------------------- /coreruntime/nimblenet/stream/include/char_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/stream/include/char_stream.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/stream/include/json_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/stream/include/json_stream.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/stream/include/stream_producer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/stream/include/stream_producer.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/stream/src/char_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/stream/src/char_stream.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/stream/src/json_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/stream/src/json_stream.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/task_manager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/task_manager/CMakeLists.txt -------------------------------------------------------------------------------- /coreruntime/nimblenet/task_manager/task/include/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/task_manager/task/include/node.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/task_manager/task/include/task.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/task_manager/task/include/task.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/task_manager/task/src/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/task_manager/task/src/node.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/task_manager/task/src/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/task_manager/task/src/task.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/time_manager/src/time_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/time_manager/src/time_manager.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/include/file_store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/include/file_store.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/include/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/include/json.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/include/llm_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/include/llm_utils.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/include/log_sender.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/include/log_sender.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/include/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/include/logger.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/include/logger_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/include/logger_constants.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/include/ne_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/include/ne_fwd.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/include/ne_type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/include/ne_type_traits.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/include/nlohmann_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/include/nlohmann_json.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/include/onnx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/include/onnx.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/include/result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/include/result.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/include/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/include/thread_pool.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/include/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/include/util.hpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/src/file_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/src/file_store.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/src/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/src/json.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/src/llm_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/src/llm_utils.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/src/log_sender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/src/log_sender.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/src/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/src/logger.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/src/thread_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/src/thread_pool.cpp -------------------------------------------------------------------------------- /coreruntime/nimblenet/util/src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/nimblenet/util/src/util.cpp -------------------------------------------------------------------------------- /coreruntime/platform/android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/platform/android/CMakeLists.txt -------------------------------------------------------------------------------- /coreruntime/platform/android/include/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/platform/android/include/client.h -------------------------------------------------------------------------------- /coreruntime/platform/android/src/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/platform/android/src/client.cpp -------------------------------------------------------------------------------- /coreruntime/platform/android/src/networking_shadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/platform/android/src/networking_shadow.cpp -------------------------------------------------------------------------------- /coreruntime/platform/ios/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/platform/ios/CMakeLists.txt -------------------------------------------------------------------------------- /coreruntime/platform/ios/include/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/platform/ios/include/client.h -------------------------------------------------------------------------------- /coreruntime/platform/ios/include/frontend_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/platform/ios/include/frontend_layer.h -------------------------------------------------------------------------------- /coreruntime/platform/ios/include/ios_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/platform/ios/include/ios_helper.hpp -------------------------------------------------------------------------------- /coreruntime/platform/ios/src/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/platform/ios/src/client.cpp -------------------------------------------------------------------------------- /coreruntime/platform/ios/src/frontend_data_variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/platform/ios/src/frontend_data_variable.cpp -------------------------------------------------------------------------------- /coreruntime/platform/ios/src/frontend_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/platform/ios/src/frontend_layer.cpp -------------------------------------------------------------------------------- /coreruntime/platform/ios/src/ios_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/platform/ios/src/ios_helper.cpp -------------------------------------------------------------------------------- /coreruntime/platform/unix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/platform/unix/CMakeLists.txt -------------------------------------------------------------------------------- /coreruntime/platform/unix/include/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/platform/unix/include/client.h -------------------------------------------------------------------------------- /coreruntime/platform/unix/src/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/platform/unix/src/client.cpp -------------------------------------------------------------------------------- /coreruntime/platform/unix/src/frontend_data_variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/platform/unix/src/frontend_data_variable.cpp -------------------------------------------------------------------------------- /coreruntime/platform/unix/src/frontend_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/platform/unix/src/frontend_layer.cpp -------------------------------------------------------------------------------- /coreruntime/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/requirements.txt -------------------------------------------------------------------------------- /coreruntime/scripts/gen_python_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/scripts/gen_python_ast.py -------------------------------------------------------------------------------- /coreruntime/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/setup.py -------------------------------------------------------------------------------- /coreruntime/tests/assets/complete_script_test/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/assets/complete_script_test/input.json -------------------------------------------------------------------------------- /coreruntime/tests/assets/complete_script_test/script.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/assets/complete_script_test/script.ast -------------------------------------------------------------------------------- /coreruntime/tests/assets/complete_script_test/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/assets/complete_script_test/script.py -------------------------------------------------------------------------------- /coreruntime/tests/assets/contest_ranking/all_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/assets/contest_ranking/all_events.json -------------------------------------------------------------------------------- /coreruntime/tests/assets/contest_ranking/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/assets/contest_ranking/input.json -------------------------------------------------------------------------------- /coreruntime/tests/assets/contest_ranking/output_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/assets/contest_ranking/output_1.json -------------------------------------------------------------------------------- /coreruntime/tests/assets/end_to_end_test/add_script.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/assets/end_to_end_test/add_script.ast -------------------------------------------------------------------------------- /coreruntime/tests/assets/native_interface_test/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/assets/native_interface_test/1.txt -------------------------------------------------------------------------------- /coreruntime/tests/assets/native_interface_test/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/assets/native_interface_test/2.json -------------------------------------------------------------------------------- /coreruntime/tests/assets/nimble_client/main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/assets/nimble_client/main.ast -------------------------------------------------------------------------------- /coreruntime/tests/assets/nimble_client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/assets/nimble_client/main.py -------------------------------------------------------------------------------- /coreruntime/tests/unittests/command_center_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/unittests/command_center_test.cpp -------------------------------------------------------------------------------- /coreruntime/tests/unittests/end_to_end_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/unittests/end_to_end_tests.cpp -------------------------------------------------------------------------------- /coreruntime/tests/unittests/native_interface_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/unittests/native_interface_test.cpp -------------------------------------------------------------------------------- /coreruntime/tests/unittests/nimbletest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/unittests/nimbletest.cpp -------------------------------------------------------------------------------- /coreruntime/tests/unittests/nimbletest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/unittests/nimbletest.hpp -------------------------------------------------------------------------------- /coreruntime/tests/unittests/scripting_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/unittests/scripting_test.cpp -------------------------------------------------------------------------------- /coreruntime/tests/unittests/stream_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/unittests/stream_test.cpp -------------------------------------------------------------------------------- /coreruntime/tests/unittests/tests_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/unittests/tests_util.cpp -------------------------------------------------------------------------------- /coreruntime/tests/unittests/tests_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/unittests/tests_util.hpp -------------------------------------------------------------------------------- /coreruntime/tests/unittests/tests_util_structs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/unittests/tests_util_structs.cpp -------------------------------------------------------------------------------- /coreruntime/tests/unittests/tests_util_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/unittests/tests_util_structs.hpp -------------------------------------------------------------------------------- /coreruntime/tests/unittests/util_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/unittests/util_test.cpp -------------------------------------------------------------------------------- /coreruntime/tests/utils/download_from_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/coreruntime/tests/utils/download_from_s3.py -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/deliteai.dev/_static/images/delite-ai-blue-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/docs/deliteai.dev/_static/images/delite-ai-blue-logo.png -------------------------------------------------------------------------------- /docs/deliteai.dev/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/docs/deliteai.dev/conf.py -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/scripts/build_website.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/docs/scripts/build_website.sh -------------------------------------------------------------------------------- /docs/scripts/run: -------------------------------------------------------------------------------- 1 | run.py -------------------------------------------------------------------------------- /docs/scripts/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/docs/scripts/run.py -------------------------------------------------------------------------------- /docs/static/images/delite-ai-blue-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/docs/static/images/delite-ai-blue-logo.png -------------------------------------------------------------------------------- /mockserver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/.gitignore -------------------------------------------------------------------------------- /mockserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/Dockerfile -------------------------------------------------------------------------------- /mockserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/README.md -------------------------------------------------------------------------------- /mockserver/config_dms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/config_dms.yaml -------------------------------------------------------------------------------- /mockserver/config_ingestor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/config_ingestor.yaml -------------------------------------------------------------------------------- /mockserver/config_logger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/config_logger.yaml -------------------------------------------------------------------------------- /mockserver/config_mds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/config_mds.yaml -------------------------------------------------------------------------------- /mockserver/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/docker-compose.yaml -------------------------------------------------------------------------------- /mockserver/mockserver_assets/add_and_multiply_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/mockserver_assets/add_and_multiply_script.py -------------------------------------------------------------------------------- /mockserver/mockserver_assets/add_event_proto_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/mockserver_assets/add_event_proto_script.py -------------------------------------------------------------------------------- /mockserver/mockserver_assets/add_event_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/mockserver_assets/add_event_script.py -------------------------------------------------------------------------------- /mockserver/mockserver_assets/add_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/mockserver_assets/add_script.py -------------------------------------------------------------------------------- /mockserver/mockserver_assets/add_three_model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/mockserver_assets/add_three_model.onnx -------------------------------------------------------------------------------- /mockserver/mockserver_assets/add_two_model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/mockserver_assets/add_two_model.onnx -------------------------------------------------------------------------------- /mockserver/mockserver_assets/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/mockserver_assets/chatbot.py -------------------------------------------------------------------------------- /mockserver/mockserver_assets/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/mockserver_assets/entrypoint.sh -------------------------------------------------------------------------------- /mockserver/mockserver_assets/list_compatible_llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/mockserver_assets/list_compatible_llms.py -------------------------------------------------------------------------------- /mockserver/mockserver_assets/multiply_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/mockserver_assets/multiply_script.py -------------------------------------------------------------------------------- /mockserver/mockserver_assets/multiply_two_model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/mockserver_assets/multiply_two_model.onnx -------------------------------------------------------------------------------- /mockserver/mockserver_assets/no_model_bad_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/mockserver_assets/no_model_bad_script.py -------------------------------------------------------------------------------- /mockserver/mockserver_assets/no_model_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/mockserver_assets/no_model_script.py -------------------------------------------------------------------------------- /mockserver/mockserver_assets/python_modules.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/mockserver_assets/python_modules.zip -------------------------------------------------------------------------------- /mockserver/mockserver_assets/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/mockserver_assets/requirements.txt -------------------------------------------------------------------------------- /mockserver/mockserver_assets/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/mockserver_assets/server.py -------------------------------------------------------------------------------- /mockserver/mockserver_assets/setup_sample_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/mockserver/mockserver_assets/setup_sample_data.py -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/chatbot.py -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/class_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/class_support.py -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/embedding_model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/embedding_model.onnx -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/grocery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/grocery.json -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/list_compatible_llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/list_compatible_llms.py -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/list_ops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/list_ops_test.py -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/mobile_benchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/mobile_benchmarks.json -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/nested_json_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/nested_json_script.py -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/parallel.py -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/regex.py -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/retriever.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/retriever.ast -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/retriever.py -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/retriever_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/retriever_workflow.py -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/streaming_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/streaming_json.py -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/string_slicing_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/string_slicing_test.py -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/try_catch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/try_catch.py -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/tts_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/tts_tokenizer.py -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/valid_script_modules.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/valid_script_modules.zip -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/vocab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/vocab.json -------------------------------------------------------------------------------- /nimblenet_py/simulation_assets/workflow_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_assets/workflow_script.py -------------------------------------------------------------------------------- /nimblenet_py/simulation_tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_tests/conftest.py -------------------------------------------------------------------------------- /nimblenet_py/simulation_tests/demo_chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_tests/demo_chatbot.py -------------------------------------------------------------------------------- /nimblenet_py/simulation_tests/test_simulator_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_tests/test_simulator_llm.py -------------------------------------------------------------------------------- /nimblenet_py/simulation_tests/test_simulator_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_tests/test_simulator_online.py -------------------------------------------------------------------------------- /nimblenet_py/simulation_tests/test_simulator_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulation_tests/test_simulator_script.py -------------------------------------------------------------------------------- /nimblenet_py/simulator_binder/binder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulator_binder/binder.cpp -------------------------------------------------------------------------------- /nimblenet_py/simulator_binder/binder_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulator_binder/binder_v2.cpp -------------------------------------------------------------------------------- /nimblenet_py/simulator_binder/delitepy_script_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/nimblenet_py/simulator_binder/delitepy_script_parser.cpp -------------------------------------------------------------------------------- /sdks/android/.editorconfig: -------------------------------------------------------------------------------- 1 | [*.kt] 2 | max_line_length=100 3 | -------------------------------------------------------------------------------- /sdks/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/.gitignore -------------------------------------------------------------------------------- /sdks/android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/README.md -------------------------------------------------------------------------------- /sdks/android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /edge 3 | /release_key.jks 4 | -------------------------------------------------------------------------------- /sdks/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/build.gradle -------------------------------------------------------------------------------- /sdks/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /sdks/android/app/src/androidTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/src/androidTest/AndroidManifest.xml -------------------------------------------------------------------------------- /sdks/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sdks/android/app/src/main/assets/retriever/grocery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/src/main/assets/retriever/grocery.json -------------------------------------------------------------------------------- /sdks/android/app/src/main/assets/retriever/retriever.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/src/main/assets/retriever/retriever.ast -------------------------------------------------------------------------------- /sdks/android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sdks/android/app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /sdks/android/app/src/main/res/layout/fragment_first.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/src/main/res/layout/fragment_first.xml -------------------------------------------------------------------------------- /sdks/android/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /sdks/android/app/src/main/res/mipmap-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/src/main/res/mipmap-xxxhdpi/logo.png -------------------------------------------------------------------------------- /sdks/android/app/src/main/res/navigation/nav_graph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/src/main/res/navigation/nav_graph.xml -------------------------------------------------------------------------------- /sdks/android/app/src/main/res/values-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/src/main/res/values-land/dimens.xml -------------------------------------------------------------------------------- /sdks/android/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /sdks/android/app/src/main/res/values-w1240dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/src/main/res/values-w1240dp/dimens.xml -------------------------------------------------------------------------------- /sdks/android/app/src/main/res/values-w600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/src/main/res/values-w600dp/dimens.xml -------------------------------------------------------------------------------- /sdks/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sdks/android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /sdks/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sdks/android/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /sdks/android/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /sdks/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/build.gradle.kts -------------------------------------------------------------------------------- /sdks/android/buildSrc/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/buildSrc/build.gradle.kts -------------------------------------------------------------------------------- /sdks/android/buildSrc/src/main/kotlin/Deps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/buildSrc/src/main/kotlin/Deps.kt -------------------------------------------------------------------------------- /sdks/android/buildSrc/src/main/kotlin/Publishing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/buildSrc/src/main/kotlin/Publishing.kt -------------------------------------------------------------------------------- /sdks/android/buildSrc/src/main/kotlin/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/buildSrc/src/main/kotlin/Utils.kt -------------------------------------------------------------------------------- /sdks/android/buildSrc/src/main/kotlin/Versions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/buildSrc/src/main/kotlin/Versions.kt -------------------------------------------------------------------------------- /sdks/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/gradle.properties -------------------------------------------------------------------------------- /sdks/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /sdks/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /sdks/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/gradlew -------------------------------------------------------------------------------- /sdks/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/gradlew.bat -------------------------------------------------------------------------------- /sdks/android/nimblenet_core/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sdks/android/nimblenet_core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/nimblenet_core/build.gradle.kts -------------------------------------------------------------------------------- /sdks/android/nimblenet_core/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sdks/android/nimblenet_core/consumer-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/nimblenet_core/consumer-rules.txt -------------------------------------------------------------------------------- /sdks/android/nimblenet_core/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/nimblenet_core/proguard-rules.pro -------------------------------------------------------------------------------- /sdks/android/nimblenet_core/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/nimblenet_core/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sdks/android/nimblenet_core/src/main/cpp/.gitignore: -------------------------------------------------------------------------------- 1 | # NNN static libs are downloaded here 2 | nnn/ 3 | -------------------------------------------------------------------------------- /sdks/android/nimblenet_core/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/nimblenet_core/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /sdks/android/nimblenet_core/src/main/cpp/coreruntime: -------------------------------------------------------------------------------- 1 | ../../../../../../coreruntime -------------------------------------------------------------------------------- /sdks/android/nimblenet_core/src/main/cpp/dljni/README.md: -------------------------------------------------------------------------------- 1 | # DeliteJNI 2 | A library of JNI helpers. 3 | -------------------------------------------------------------------------------- /sdks/android/nimblenet_core/src/main/cpp/jni/jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/nimblenet_core/src/main/cpp/jni/jni.cpp -------------------------------------------------------------------------------- /sdks/android/nimblenet_core/src/main/cpp/onnx_builds: -------------------------------------------------------------------------------- 1 | ../../../../../../third_party/runtime/onnx/ -------------------------------------------------------------------------------- /sdks/android/nimblenet_core/src/main/cpp/third_party: -------------------------------------------------------------------------------- 1 | ../../../../../../third_party -------------------------------------------------------------------------------- /sdks/android/nimblenet_ktx/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sdks/android/nimblenet_ktx/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/nimblenet_ktx/build.gradle.kts -------------------------------------------------------------------------------- /sdks/android/nimblenet_ktx/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sdks/android/nimblenet_ktx/consumer-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/nimblenet_ktx/consumer-rules.txt -------------------------------------------------------------------------------- /sdks/android/nimblenet_ktx/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/nimblenet_ktx/proguard-rules.pro -------------------------------------------------------------------------------- /sdks/android/nimblenet_ktx/src/androidTest/assets/fl1/f1: -------------------------------------------------------------------------------- 1 | TEST FILE - llm/f1 -------------------------------------------------------------------------------- /sdks/android/nimblenet_ktx/src/androidTest/assets/fl1/f2: -------------------------------------------------------------------------------- 1 | TEST FILE - llm/f2 -------------------------------------------------------------------------------- /sdks/android/nimblenet_ktx/src/androidTest/assets/fl2/f1: -------------------------------------------------------------------------------- 1 | TEST FILE - misc/f1 -------------------------------------------------------------------------------- /sdks/android/nimblenet_ktx/src/androidTest/assets/fl2/f2: -------------------------------------------------------------------------------- 1 | TEST FILE - misc/f2 -------------------------------------------------------------------------------- /sdks/android/nimblenet_ktx/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/nimblenet_ktx/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sdks/android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/android/settings.gradle.kts -------------------------------------------------------------------------------- /sdks/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/config.yml -------------------------------------------------------------------------------- /sdks/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/.gitignore -------------------------------------------------------------------------------- /sdks/ios/DeliteAI.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/DeliteAI.podspec -------------------------------------------------------------------------------- /sdks/ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/README.md -------------------------------------------------------------------------------- /sdks/ios/deliteAI/Assets/Executorch_Headers: -------------------------------------------------------------------------------- 1 | ../../../../third_party/runtime/executorch/ios/e9c11a40_executorch/Executorch_Headers -------------------------------------------------------------------------------- /sdks/ios/deliteAI/Assets/LLaMARunner.xcframework: -------------------------------------------------------------------------------- 1 | ../../../../third_party/runtime/executorch/ios/e9c11a40_executorch/LLaMARunner.xcframework -------------------------------------------------------------------------------- /sdks/ios/deliteAI/Assets/onnxruntime-genai.xcframework: -------------------------------------------------------------------------------- 1 | ../../../../third_party/runtime/onnx/ios/0_7_0_ios_onnx-genai/onnxruntime-genai.xcframework -------------------------------------------------------------------------------- /sdks/ios/deliteAI/Assets/onnxruntime.xcframework: -------------------------------------------------------------------------------- 1 | ../../../../third_party/runtime/onnx/ios/1_21_0_ios_full/onnxruntime.xcframework -------------------------------------------------------------------------------- /sdks/ios/deliteAI/Assets/onnxruntime_extensions.xcframework: -------------------------------------------------------------------------------- 1 | ../../../../third_party/runtime/onnx/ios/0_13_0_ort_extension/onnxruntime_extensions.xcframework -------------------------------------------------------------------------------- /sdks/ios/deliteAI/Classes/deliteAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/deliteAI/Classes/deliteAI.h -------------------------------------------------------------------------------- /sdks/ios/deliteAI/Classes/sources/NimbleNetApi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/deliteAI/Classes/sources/NimbleNetApi.swift -------------------------------------------------------------------------------- /sdks/ios/deliteAI/Classes/sources/impl/io/FileIO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/deliteAI/Classes/sources/impl/io/FileIO.swift -------------------------------------------------------------------------------- /sdks/ios/docs/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/docs/DEVELOPMENT.md -------------------------------------------------------------------------------- /sdks/ios/example/DeliteAIExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/example/DeliteAIExample/AppDelegate.swift -------------------------------------------------------------------------------- /sdks/ios/example/DeliteAIExample/BundleConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/example/DeliteAIExample/BundleConfig.swift -------------------------------------------------------------------------------- /sdks/ios/example/DeliteAIExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/example/DeliteAIExample/Info.plist -------------------------------------------------------------------------------- /sdks/ios/example/DeliteAIExample/MessageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/example/DeliteAIExample/MessageCell.swift -------------------------------------------------------------------------------- /sdks/ios/example/DeliteAIExample/company_proto.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/example/DeliteAIExample/company_proto.pb.swift -------------------------------------------------------------------------------- /sdks/ios/example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/example/Podfile -------------------------------------------------------------------------------- /sdks/ios/example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/example/Podfile.lock -------------------------------------------------------------------------------- /sdks/ios/example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/example/Tests/Info.plist -------------------------------------------------------------------------------- /sdks/ios/example/Tests/Keychaintest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/example/Tests/Keychaintest.swift -------------------------------------------------------------------------------- /sdks/ios/example/Tests/ProtoTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/example/Tests/ProtoTest.swift -------------------------------------------------------------------------------- /sdks/ios/example/Tests/RuntaskInstrumentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/example/Tests/RuntaskInstrumentation.swift -------------------------------------------------------------------------------- /sdks/ios/script/build-deliteAI-static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/script/build-deliteAI-static.sh -------------------------------------------------------------------------------- /sdks/ios/script/ios.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/script/ios.toolchain.cmake -------------------------------------------------------------------------------- /sdks/ios/script/release-deliteAI-ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/sdks/ios/script/release-deliteAI-ios.sh -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/setup.sh -------------------------------------------------------------------------------- /third_party/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/README.md -------------------------------------------------------------------------------- /third_party/SPSCQueue/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/SPSCQueue/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/SPSCQueue/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/SPSCQueue/LICENSE -------------------------------------------------------------------------------- /third_party/SPSCQueue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/SPSCQueue/README.md -------------------------------------------------------------------------------- /third_party/SPSCQueue/include/rigtorp/SPSCQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/SPSCQueue/include/rigtorp/SPSCQueue.h -------------------------------------------------------------------------------- /third_party/json/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/BUILD.bazel -------------------------------------------------------------------------------- /third_party/json/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/CITATION.cff -------------------------------------------------------------------------------- /third_party/json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/json/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/ChangeLog.md -------------------------------------------------------------------------------- /third_party/json/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/LICENSE.MIT -------------------------------------------------------------------------------- /third_party/json/LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /third_party/json/LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /third_party/json/LICENSES/GPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/LICENSES/GPL-3.0-only.txt -------------------------------------------------------------------------------- /third_party/json/LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/LICENSES/MIT.txt -------------------------------------------------------------------------------- /third_party/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/Makefile -------------------------------------------------------------------------------- /third_party/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/README.md -------------------------------------------------------------------------------- /third_party/json/WORKSPACE.bazel: -------------------------------------------------------------------------------- 1 | workspace(name = "nlohmann_json") 2 | -------------------------------------------------------------------------------- /third_party/json/cmake/ci.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/cmake/ci.cmake -------------------------------------------------------------------------------- /third_party/json/cmake/config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/cmake/config.cmake.in -------------------------------------------------------------------------------- /third_party/json/cmake/download_test_data.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/cmake/download_test_data.cmake -------------------------------------------------------------------------------- /third_party/json/cmake/pkg-config.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/cmake/pkg-config.pc.in -------------------------------------------------------------------------------- /third_party/json/cmake/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/cmake/test.cmake -------------------------------------------------------------------------------- /third_party/json/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/Makefile -------------------------------------------------------------------------------- /third_party/json/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/README.md -------------------------------------------------------------------------------- /third_party/json/docs/avatars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/avatars.png -------------------------------------------------------------------------------- /third_party/json/docs/docset/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/docset/Info.plist -------------------------------------------------------------------------------- /third_party/json/docs/docset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/docset/Makefile -------------------------------------------------------------------------------- /third_party/json/docs/docset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/docset/README.md -------------------------------------------------------------------------------- /third_party/json/docs/docset/docSet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/docset/docSet.sql -------------------------------------------------------------------------------- /third_party/json/docs/docset/docset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/docset/docset.json -------------------------------------------------------------------------------- /third_party/json/docs/docset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/docset/icon.png -------------------------------------------------------------------------------- /third_party/json/docs/docset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/docset/icon@2x.png -------------------------------------------------------------------------------- /third_party/json/docs/examples/README.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/README.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/README.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/README.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/accept__string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/accept__string.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/accept__string.output: -------------------------------------------------------------------------------- 1 | true false 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/array.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/array.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/array.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/array_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/array_t.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/array_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/at__json_pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/at__json_pointer.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/at__json_pointer.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/at__json_pointer.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/at__keytype.c++17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/at__keytype.c++17.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/at__keytype.c++17.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/at__keytype.c++17.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/at__object_t_key_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/at__object_t_key_type.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/at__size_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/at__size_type.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/at__size_type.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/at__size_type.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/at__size_type_const.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/at__size_type_const.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/back.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/back.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/back.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/back.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/basic_json__copyassignment.output: -------------------------------------------------------------------------------- 1 | 23 2 | 23 3 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/basic_json__moveconstructor.output: -------------------------------------------------------------------------------- 1 | null 2 | 23 3 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/basic_json__nullptr_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/basic_json__nullptr_t.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/basic_json__value_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/basic_json__value_t.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/basic_json__value_t.output: -------------------------------------------------------------------------------- 1 | null 2 | false 3 | 0 4 | 0.0 5 | {} 6 | [] 7 | "" 8 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/begin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/begin.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/begin.output: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/binary.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/binary.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/binary.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/binary_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/binary_t.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/binary_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/boolean_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/boolean_t.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/boolean_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/cbegin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/cbegin.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/cbegin.output: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/cbor_tag_handler_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/cbor_tag_handler_t.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/cbor_tag_handler_t.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/cbor_tag_handler_t.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/cend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/cend.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/cend.output: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/clear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/clear.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/clear.output: -------------------------------------------------------------------------------- 1 | null 2 | false 3 | 0 4 | 0.0 5 | {} 6 | [] 7 | "" 8 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/count__keytype.c++17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/count__keytype.c++17.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/crbegin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/crbegin.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/crbegin.output: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/crend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/crend.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/crend.output: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/diagnostics_extended.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/diagnostics_extended.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/diagnostics_standard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/diagnostics_standard.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/diff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/diff.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/diff.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/diff.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/dump.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/dump.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/dump.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/emplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/emplace.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/emplace.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/emplace.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/emplace_back.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/emplace_back.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/emplace_back.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/emplace_back.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/empty.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/empty.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/empty.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/end.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/end.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/end.output: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/erase__IteratorType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/erase__IteratorType.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/erase__keytype.c++17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/erase__keytype.c++17.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/erase__keytype.c++17.output: -------------------------------------------------------------------------------- 1 | {"two":2} 2 | 1 0 3 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/erase__object_t_key_type.output: -------------------------------------------------------------------------------- 1 | {"two":2} 2 | 1 0 3 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/erase__size_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/erase__size_type.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/erase__size_type.output: -------------------------------------------------------------------------------- 1 | [0,1,3,4,5] 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/error_handler_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/error_handler_t.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/error_handler_t.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/error_handler_t.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/exception.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/exception.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/exception.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/find__keytype.c++17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/find__keytype.c++17.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/flatten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/flatten.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/flatten.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/flatten.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/from_bjdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/from_bjdata.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/from_bjdata.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/from_bjdata.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/from_bson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/from_bson.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/from_bson.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/from_bson.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/from_cbor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/from_cbor.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/from_cbor.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/from_cbor.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/from_json__default_constructible.output: -------------------------------------------------------------------------------- 1 | Ned Flanders (60) lives in 744 Evergreen Terrace 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/from_json__non_default_constructible.output: -------------------------------------------------------------------------------- 1 | Ned Flanders (60) lives in 744 Evergreen Terrace 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/from_msgpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/from_msgpack.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/from_msgpack.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/from_msgpack.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/from_ubjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/from_ubjson.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/from_ubjson.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/from_ubjson.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/front.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/front.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/front.output: -------------------------------------------------------------------------------- 1 | true 2 | 17 3 | 23.42 4 | 1 5 | 1 6 | "Hello, world" 7 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/get__PointerType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/get__PointerType.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/get__PointerType.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/get__PointerType.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/get__ValueType_const.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/get__ValueType_const.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/get_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/get_allocator.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/get_allocator.output: -------------------------------------------------------------------------------- 1 | "Hello, world!" 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/get_binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/get_binary.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/get_binary.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/get_binary.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/get_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/get_ptr.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/get_ptr.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/get_ptr.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/get_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/get_ref.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/get_ref.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/get_ref.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/get_to.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/get_to.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/get_to.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/get_to.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/insert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/insert.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/insert.output: -------------------------------------------------------------------------------- 1 | 10 2 | [1,2,10,3,4] 3 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/insert__count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/insert__count.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/insert__count.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/insert__count.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/insert__ilist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/insert__ilist.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/insert__ilist.output: -------------------------------------------------------------------------------- 1 | 7 2 | [1,2,3,4,7,8,9] 3 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/insert__range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/insert__range.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/insert__range.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/insert__range.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/insert__range_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/insert__range_object.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/invalid_iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/invalid_iterator.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/invalid_iterator.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/invalid_iterator.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_array.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_array.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_array.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_binary.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_binary.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_binary.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_boolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_boolean.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_boolean.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_boolean.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_discarded.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_discarded.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_discarded.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_discarded.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_null.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_null.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_null.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_number.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_number.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_number.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_number_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_number_float.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_number_float.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_number_float.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_number_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_number_integer.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_number_integer.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_number_integer.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_number_unsigned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_number_unsigned.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_number_unsigned.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_number_unsigned.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_object.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_object.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_object.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_primitive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_primitive.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_primitive.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_primitive.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_string.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_string.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_string.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_structured.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_structured.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/is_structured.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/is_structured.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/items.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/items.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/items.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/json_base_class_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/json_base_class_t.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/json_base_class_t.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/json_base_class_t.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/json_lines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/json_lines.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/json_lines.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/json_lines.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/json_pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/json_pointer.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/json_pointer.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/json_pointer.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/json_pointer__back.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/json_pointer__back.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/json_pointer__back.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/json_pointer__back.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/json_pointer__empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/json_pointer__empty.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/json_pointer__operator_string_t.output: -------------------------------------------------------------------------------- 1 | /foo/0 2 | /a~1b 3 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/json_pointer__string_t.output: -------------------------------------------------------------------------------- 1 | This is a string. 2 | true 3 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/max_size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/max_size.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/max_size.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/max_size.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/merge_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/merge_patch.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/merge_patch.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/merge_patch.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/meta.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/meta.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/meta.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/nlohmann_json_namespace.output: -------------------------------------------------------------------------------- 1 | nlohmann::json_abi_v3_11_2 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/nlohmann_json_namespace_begin.c++17.output: -------------------------------------------------------------------------------- 1 | [1,null] 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/nlohmann_json_namespace_no_version.output: -------------------------------------------------------------------------------- 1 | nlohmann::json_abi 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/nlohmann_json_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/nlohmann_json_version.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/nlohmann_json_version.output: -------------------------------------------------------------------------------- 1 | JSON for Modern C++ version 3.11.2 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/number_float_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/number_float_t.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/number_float_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/number_integer_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/number_integer_t.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/number_integer_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/number_unsigned_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/number_unsigned_t.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/number_unsigned_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/object.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/object.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/object.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/object_comparator_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/object_comparator_t.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/object_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/object_t.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/object_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator__ValueType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/operator__ValueType.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator__equal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/operator__equal.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator__equal.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/operator__equal.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator__equal__specializations.output: -------------------------------------------------------------------------------- 1 | true 2 | false 3 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator__greater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/operator__greater.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator__greater.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/operator__greater.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator__less.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/operator__less.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator__less.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/operator__less.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator__lessequal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/operator__lessequal.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator__notequal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/operator__notequal.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator__notequal.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/operator__notequal.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator__value_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/operator__value_t.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator__value_t.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/operator__value_t.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator_array__json_pointer_const.output: -------------------------------------------------------------------------------- 1 | 1 2 | "foo" 3 | [1,2] 4 | 2 5 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator_array__keytype_const.c++17.output: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator_array__object_t_key_type_const.output: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator_array__size_type_const.output: -------------------------------------------------------------------------------- 1 | "third" 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator_deserialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/operator_deserialize.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator_literal_json_pointer.output: -------------------------------------------------------------------------------- 1 | "world" 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/operator_ltlt__json_pointer.output: -------------------------------------------------------------------------------- 1 | /foo/bar/baz 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/ordered_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/ordered_json.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/ordered_json.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/ordered_json.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/ordered_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/ordered_map.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/ordered_map.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/ordered_map.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/other_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/other_error.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/other_error.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/other_error.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/out_of_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/out_of_range.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/out_of_range.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/out_of_range.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/parse__iterator_pair.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /third_party/json/docs/examples/parse__pointers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/parse__pointers.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/parse__pointers.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /third_party/json/docs/examples/parse__pointers.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/parse__pointers.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/parse_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/parse_error.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/parse_error.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/parse_error.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/patch.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/patch.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/patch.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/patch_inplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/patch_inplace.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/patch_inplace.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/patch_inplace.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/push_back.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/push_back.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/push_back.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/push_back.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/rbegin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/rbegin.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/rbegin.output: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/rend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/rend.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/rend.output: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/sax_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/sax_parse.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/sax_parse.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/sax_parse.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/sax_parse__binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/sax_parse__binary.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/sax_parse__binary.output: -------------------------------------------------------------------------------- 1 | binary(val=[...]) 2 | 3 | result: true 4 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/size.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/size.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/size.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/std_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/std_hash.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/std_hash.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/std_hash.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/std_swap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/std_swap.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/std_swap.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/std_swap.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/string_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/string_t.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/string_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/swap__array_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/swap__array_t.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/swap__array_t.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/swap__array_t.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/swap__binary_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/swap__binary_t.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/swap__binary_t.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/swap__binary_t.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/swap__object_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/swap__object_t.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/swap__object_t.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/swap__object_t.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/swap__reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/swap__reference.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/swap__reference.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/swap__reference.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/swap__string_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/swap__string_t.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/swap__string_t.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/swap__string_t.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/to_bjdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/to_bjdata.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/to_bjdata.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/to_bjdata.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/to_bson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/to_bson.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/to_bson.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/to_bson.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/to_cbor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/to_cbor.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/to_cbor.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/to_cbor.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/to_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/to_json.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/to_json.output: -------------------------------------------------------------------------------- 1 | {"address":"744 Evergreen Terrace","age":60,"name":"Ned Flanders"} 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/to_msgpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/to_msgpack.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/to_msgpack.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/to_msgpack.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/to_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/to_string.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/to_string.output: -------------------------------------------------------------------------------- 1 | {"one":1,"two":2} 2 | 3 | 42 4 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/to_ubjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/to_ubjson.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/to_ubjson.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/to_ubjson.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/type.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/type.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/type.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/type_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/type_error.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/type_error.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/type_error.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/type_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/type_name.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/type_name.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/type_name.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/unflatten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/unflatten.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/unflatten.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/unflatten.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/update.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/update.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/update.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/update__range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/update__range.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/update__range.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/update__range.output -------------------------------------------------------------------------------- /third_party/json/docs/examples/value__json_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/examples/value__json_ptr.cpp -------------------------------------------------------------------------------- /third_party/json/docs/examples/value__json_ptr.output: -------------------------------------------------------------------------------- 1 | 1 42.23 oops false 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/value__keytype.c++17.output: -------------------------------------------------------------------------------- 1 | 1 42.23 oops false 2 | -------------------------------------------------------------------------------- /third_party/json/docs/examples/value__object_t_key_type.output: -------------------------------------------------------------------------------- 1 | 1 42.23 oops false 2 | -------------------------------------------------------------------------------- /third_party/json/docs/json.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/json.gif -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/Makefile -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/api/basic_json/at.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/api/basic_json/at.md -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/api/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/api/json.md -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/api/json_sax/key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/api/json_sax/key.md -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/api/json_sax/null.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/api/json_sax/null.md -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/api/macros/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/api/macros/index.md -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/api/operator_gtgt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/api/operator_gtgt.md -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/api/operator_ltlt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/api/operator_ltlt.md -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/api/ordered_json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/api/ordered_json.md -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/api/ordered_map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/api/ordered_map.md -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/css/custom.css -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/features/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/features/comments.md -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/features/macros.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/features/macros.md -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/home/design_goals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/home/design_goals.md -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/home/exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/home/exceptions.md -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/home/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/home/faq.md -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/home/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/home/license.md -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/home/releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/home/releases.md -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/home/sponsors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/home/sponsors.md -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/index.md: -------------------------------------------------------------------------------- 1 | # JSON for Modern C++ 2 | 3 | ![](images/json.gif) 4 | -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/integration/cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/integration/cmake.md -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/integration/conan/Conanfile.txt: -------------------------------------------------------------------------------- 1 | [requires] 2 | nlohmann_json/3.7.3 3 | 4 | [generators] 5 | cmake 6 | -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/docs/integration/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/docs/integration/index.md -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/mkdocs.yml -------------------------------------------------------------------------------- /third_party/json/docs/mkdocs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/mkdocs/requirements.txt -------------------------------------------------------------------------------- /third_party/json/docs/usages/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/usages/ios.png -------------------------------------------------------------------------------- /third_party/json/docs/usages/macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/docs/usages/macos.png -------------------------------------------------------------------------------- /third_party/json/include/nlohmann/adl_serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/include/nlohmann/adl_serializer.hpp -------------------------------------------------------------------------------- /third_party/json/include/nlohmann/detail/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/include/nlohmann/detail/hash.hpp -------------------------------------------------------------------------------- /third_party/json/include/nlohmann/detail/json_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/include/nlohmann/detail/json_ref.hpp -------------------------------------------------------------------------------- /third_party/json/include/nlohmann/detail/value_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/include/nlohmann/detail/value_t.hpp -------------------------------------------------------------------------------- /third_party/json/include/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/include/nlohmann/json.hpp -------------------------------------------------------------------------------- /third_party/json/include/nlohmann/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/include/nlohmann/json_fwd.hpp -------------------------------------------------------------------------------- /third_party/json/include/nlohmann/ordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/include/nlohmann/ordered_map.hpp -------------------------------------------------------------------------------- /third_party/json/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/meson.build -------------------------------------------------------------------------------- /third_party/json/nlohmann_json.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/nlohmann_json.natvis -------------------------------------------------------------------------------- /third_party/json/single_include/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/single_include/nlohmann/json.hpp -------------------------------------------------------------------------------- /third_party/json/single_include/nlohmann/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/single_include/nlohmann/json_fwd.hpp -------------------------------------------------------------------------------- /third_party/json/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/json/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/Makefile -------------------------------------------------------------------------------- /third_party/json/tests/abi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/abi/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/json/tests/abi/config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/abi/config/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/json/tests/abi/config/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/abi/config/config.hpp -------------------------------------------------------------------------------- /third_party/json/tests/abi/config/custom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/abi/config/custom.cpp -------------------------------------------------------------------------------- /third_party/json/tests/abi/config/default.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/abi/config/default.cpp -------------------------------------------------------------------------------- /third_party/json/tests/abi/config/noversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/abi/config/noversion.cpp -------------------------------------------------------------------------------- /third_party/json/tests/abi/diag/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/abi/diag/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/json/tests/abi/diag/diag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/abi/diag/diag.cpp -------------------------------------------------------------------------------- /third_party/json/tests/abi/diag/diag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/abi/diag/diag.hpp -------------------------------------------------------------------------------- /third_party/json/tests/abi/diag/diag_off.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/abi/diag/diag_off.cpp -------------------------------------------------------------------------------- /third_party/json/tests/abi/diag/diag_on.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/abi/diag/diag_on.cpp -------------------------------------------------------------------------------- /third_party/json/tests/abi/inline_ns/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/abi/inline_ns/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/json/tests/abi/inline_ns/use_current.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/abi/inline_ns/use_current.cpp -------------------------------------------------------------------------------- /third_party/json/tests/abi/inline_ns/use_v3_10_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/abi/inline_ns/use_v3_10_5.cpp -------------------------------------------------------------------------------- /third_party/json/tests/abi/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/abi/main.cpp -------------------------------------------------------------------------------- /third_party/json/tests/benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/json/tests/benchmarks/src/benchmarks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/benchmarks/src/benchmarks.cpp -------------------------------------------------------------------------------- /third_party/json/tests/cmake_import/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/cmake_import/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/json/tests/cmake_import/project/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/cmake_import/project/main.cpp -------------------------------------------------------------------------------- /third_party/json/tests/cuda_example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/cuda_example/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/json/tests/cuda_example/json_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/cuda_example/json_cuda.cu -------------------------------------------------------------------------------- /third_party/json/tests/fuzzing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/fuzzing.md -------------------------------------------------------------------------------- /third_party/json/tests/src/fuzzer-driver_afl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/fuzzer-driver_afl.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/fuzzer-parse_bjdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/fuzzer-parse_bjdata.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/fuzzer-parse_bson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/fuzzer-parse_bson.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/fuzzer-parse_cbor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/fuzzer-parse_cbor.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/fuzzer-parse_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/fuzzer-parse_json.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/fuzzer-parse_msgpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/fuzzer-parse_msgpack.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/fuzzer-parse_ubjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/fuzzer-parse_ubjson.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/test_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/test_utils.hpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-32bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-32bit.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-algorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-algorithms.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-allocator.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-alt-string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-alt-string.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-assert_macro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-assert_macro.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-binary_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-binary_formats.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-bjdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-bjdata.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-bson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-bson.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-capacity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-capacity.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-cbor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-cbor.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-class_iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-class_iterator.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-class_lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-class_lexer.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-class_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-class_parser.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-comparison.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-comparison.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-concepts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-concepts.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-constructor1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-constructor1.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-constructor2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-constructor2.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-convenience.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-convenience.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-conversions.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-custom-base-class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-custom-base-class.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-deserialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-deserialization.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-diagnostics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-diagnostics.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-element_access1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-element_access1.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-element_access2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-element_access2.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-hash.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-inspection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-inspection.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-items.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-iterators1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-iterators1.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-iterators2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-iterators2.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-json_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-json_patch.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-json_pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-json_pointer.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-large_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-large_json.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-merge_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-merge_patch.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-meta.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-modifiers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-modifiers.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-msgpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-msgpack.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-noexcept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-noexcept.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-ordered_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-ordered_json.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-ordered_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-ordered_map.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-pointer_access.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-pointer_access.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-readme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-readme.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-reference_access.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-reference_access.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-regression1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-regression1.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-regression2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-regression2.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-serialization.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-testsuites.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-testsuites.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-to_chars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-to_chars.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-type_traits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-type_traits.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-ubjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-ubjson.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-udl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-udl.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-udt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-udt.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-udt_macro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-udt_macro.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-unicode1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-unicode1.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-unicode2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-unicode2.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-unicode3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-unicode3.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-unicode4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-unicode4.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-unicode5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-unicode5.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-user_defined_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-user_defined_input.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-windows_h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-windows_h.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit-wstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit-wstring.cpp -------------------------------------------------------------------------------- /third_party/json/tests/src/unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/src/unit.cpp -------------------------------------------------------------------------------- /third_party/json/tests/thirdparty/Fuzzer/FuzzerDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/thirdparty/Fuzzer/FuzzerDefs.h -------------------------------------------------------------------------------- /third_party/json/tests/thirdparty/Fuzzer/FuzzerIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/thirdparty/Fuzzer/FuzzerIO.cpp -------------------------------------------------------------------------------- /third_party/json/tests/thirdparty/Fuzzer/FuzzerIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/thirdparty/Fuzzer/FuzzerIO.h -------------------------------------------------------------------------------- /third_party/json/tests/thirdparty/Fuzzer/FuzzerMerge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/thirdparty/Fuzzer/FuzzerMerge.h -------------------------------------------------------------------------------- /third_party/json/tests/thirdparty/Fuzzer/FuzzerSHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/thirdparty/Fuzzer/FuzzerSHA1.h -------------------------------------------------------------------------------- /third_party/json/tests/thirdparty/Fuzzer/FuzzerUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/thirdparty/Fuzzer/FuzzerUtil.h -------------------------------------------------------------------------------- /third_party/json/tests/thirdparty/Fuzzer/README.txt: -------------------------------------------------------------------------------- 1 | Move to http://llvm.org/docs/LibFuzzer.html 2 | 3 | -------------------------------------------------------------------------------- /third_party/json/tests/thirdparty/Fuzzer/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/thirdparty/Fuzzer/build.sh -------------------------------------------------------------------------------- /third_party/json/tests/thirdparty/Fuzzer/cxx.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/thirdparty/Fuzzer/cxx.dict -------------------------------------------------------------------------------- /third_party/json/tests/thirdparty/Fuzzer/test/DSO1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/thirdparty/Fuzzer/test/DSO1.cpp -------------------------------------------------------------------------------- /third_party/json/tests/thirdparty/Fuzzer/test/DSO2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/thirdparty/Fuzzer/test/DSO2.cpp -------------------------------------------------------------------------------- /third_party/json/tests/thirdparty/Fuzzer/test/hi.txt: -------------------------------------------------------------------------------- 1 | Hi! -------------------------------------------------------------------------------- /third_party/json/tests/thirdparty/Fuzzer/test/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/thirdparty/Fuzzer/test/lit.cfg -------------------------------------------------------------------------------- /third_party/json/tests/thirdparty/Fuzzer/test/ulimit.test: -------------------------------------------------------------------------------- 1 | RUN: ulimit -s 1000 2 | RUN: LLVMFuzzer-SimpleTest 3 | -------------------------------------------------------------------------------- /third_party/json/tests/thirdparty/doctest/doctest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/thirdparty/doctest/doctest.h -------------------------------------------------------------------------------- /third_party/json/tests/thirdparty/imapdl/filterbr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tests/thirdparty/imapdl/filterbr.py -------------------------------------------------------------------------------- /third_party/json/tools/amalgamate/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tools/amalgamate/CHANGES.md -------------------------------------------------------------------------------- /third_party/json/tools/amalgamate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tools/amalgamate/README.md -------------------------------------------------------------------------------- /third_party/json/tools/amalgamate/amalgamate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tools/amalgamate/amalgamate.py -------------------------------------------------------------------------------- /third_party/json/tools/amalgamate/config_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tools/amalgamate/config_json.json -------------------------------------------------------------------------------- /third_party/json/tools/amalgamate/config_json_fwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tools/amalgamate/config_json_fwd.json -------------------------------------------------------------------------------- /third_party/json/tools/gdb_pretty_printer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tools/gdb_pretty_printer/README.md -------------------------------------------------------------------------------- /third_party/json/tools/generate_natvis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tools/generate_natvis/README.md -------------------------------------------------------------------------------- /third_party/json/tools/macro_builder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tools/macro_builder/main.cpp -------------------------------------------------------------------------------- /third_party/json/tools/serve_header/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tools/serve_header/README.md -------------------------------------------------------------------------------- /third_party/json/tools/serve_header/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tools/serve_header/demo.png -------------------------------------------------------------------------------- /third_party/json/tools/serve_header/requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML==6.0 2 | watchdog==2.1.7 3 | -------------------------------------------------------------------------------- /third_party/json/tools/serve_header/serve_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/tools/serve_header/serve_header.py -------------------------------------------------------------------------------- /third_party/json/wsjcpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/json/wsjcpp.yml -------------------------------------------------------------------------------- /third_party/miniz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/miniz/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/miniz/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/miniz/ChangeLog.md -------------------------------------------------------------------------------- /third_party/miniz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/miniz/LICENSE -------------------------------------------------------------------------------- /third_party/miniz/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/miniz/miniz.c -------------------------------------------------------------------------------- /third_party/miniz/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/miniz/miniz.h -------------------------------------------------------------------------------- /third_party/miniz/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/miniz/readme.md -------------------------------------------------------------------------------- /third_party/runtime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/runtime/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/sqlite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/sqlite/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/sqlite/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/sqlite/sqlite3.c -------------------------------------------------------------------------------- /third_party/sqlite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/sqlite/sqlite3.h -------------------------------------------------------------------------------- /third_party/sqlite/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimbleEdge/deliteAI/HEAD/third_party/sqlite/sqlite3ext.h --------------------------------------------------------------------------------