mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 21:14:01 +08:00
* modeld: Retain pre-20hz drive model support * Method not available anymore on OP * some fixes * Revert "Long planner get accel: new function args (#34288)" * Revert "Fix low-speed allow_throttle behavior in long planner (#33894)" * Revert "long planner: allow throttle reflects usage (#33792)" * Revert "Gate acceleration on model gas press predictions (#33643)" * Reapply "Gate acceleration on model gas press predictions (#33643)" This reverts commit76b08e37cb. * Reapply "long planner: allow throttle reflects usage (#33792)" This reverts commitc75244ca4e. * Reapply "Fix low-speed allow_throttle behavior in long planner (#33894)" This reverts commitb2b7d21b7b. * Reapply "Long planner get accel: new function args (#34288)" This reverts commit74dca2fccf. * don't need * retain snpe * wrong * they're symlinks * remove * put back into VCS * add back * don't include built * Refactor model runner retrieval with caching support Added caching for active model runner type via `ModelRunnerTypeCache` to enhance performance and avoid redundant checks. Introduced a `force_check` flag to bypass the cache when necessary. Updated related code to handle cache clearing during onroad transitions. * Update model runner determination logic with caching fix Enhances `get_active_model_runner` to utilize caching more effectively by ensuring type consistency and updating cache only when necessary. Also updates `is_snpe_model` to pass the `started` state to the runner determination function, improving behavior for dynamic checks. * default to none * enable in next PR * more --------- Co-authored-by: DevTekVE <devtekve@gmail.com>
155 lines
3.1 KiB
C++
155 lines
3.1 KiB
C++
//=============================================================================
|
|
//
|
|
// Copyright (c) 2019 Qualcomm Technologies, Inc.
|
|
// All Rights Reserved.
|
|
// Confidential and Proprietary - Qualcomm Technologies, Inc.
|
|
//
|
|
//=============================================================================
|
|
|
|
#include "ZdlExportDefine.hpp"
|
|
#include "DlSystem/DlEnums.hpp"
|
|
#include "DlSystem/StringList.hpp"
|
|
#include <cstddef>
|
|
#include <memory>
|
|
|
|
#ifndef DL_SYSTEM_RUNTIME_LIST_HPP
|
|
#define DL_SYSTEM_RUNTIME_LIST_HPP
|
|
|
|
namespace DlSystem
|
|
{
|
|
// Forward declaration of Runtime List implementation.
|
|
class RuntimeListImpl;
|
|
}
|
|
|
|
namespace zdl
|
|
{
|
|
namespace DlSystem
|
|
{
|
|
|
|
/** @addtogroup c_plus_plus_apis C++
|
|
@{ */
|
|
|
|
/**
|
|
* @brief .
|
|
*
|
|
* A class representing list of runtimes
|
|
*/
|
|
class ZDL_EXPORT RuntimeList final
|
|
{
|
|
public:
|
|
|
|
/**
|
|
* @brief .
|
|
*
|
|
* Creates a new runtime list
|
|
*
|
|
*/
|
|
RuntimeList();
|
|
|
|
/**
|
|
* @brief .
|
|
*
|
|
* copy constructor.
|
|
* @param[in] other object to copy.
|
|
*/
|
|
RuntimeList(const RuntimeList& other);
|
|
|
|
/**
|
|
* @brief .
|
|
*
|
|
* constructor with single Runtime_t object
|
|
* @param[in] Runtime_t object
|
|
*/
|
|
RuntimeList(const zdl::DlSystem::Runtime_t& runtime);
|
|
|
|
/**
|
|
* @brief .
|
|
*
|
|
* assignment operator.
|
|
*/
|
|
RuntimeList& operator=(const RuntimeList& other);
|
|
|
|
/**
|
|
* @brief .
|
|
*
|
|
* subscript operator.
|
|
*/
|
|
Runtime_t& operator[](size_t index);
|
|
|
|
/**
|
|
* @brief Adds runtime to the end of the runtime list
|
|
* order of precedence is former followed by latter entry
|
|
*
|
|
* @param[in] runtime to add
|
|
*
|
|
* Ruturns false If the runtime already exists
|
|
*/
|
|
bool add(const zdl::DlSystem::Runtime_t& runtime);
|
|
|
|
/**
|
|
* @brief Removes the runtime from the list
|
|
*
|
|
* @param[in] runtime to be removed
|
|
*
|
|
* @note If the runtime is not found, nothing is done.
|
|
*/
|
|
void remove(const zdl::DlSystem::Runtime_t runtime) noexcept;
|
|
|
|
/**
|
|
* @brief Returns the number of runtimes in the list
|
|
*/
|
|
size_t size() const noexcept;
|
|
|
|
/**
|
|
* @brief Returns true if the list is empty
|
|
*/
|
|
bool empty() const noexcept;
|
|
|
|
/**
|
|
* @brief .
|
|
*
|
|
* Removes all runtime from the list
|
|
*/
|
|
void clear() noexcept;
|
|
|
|
/**
|
|
* @brief .
|
|
*
|
|
* Returns a StringList of names from the runtime list in
|
|
* order of precedence
|
|
*/
|
|
zdl::DlSystem::StringList getRuntimeListNames() const;
|
|
|
|
/**
|
|
* @brief .
|
|
*
|
|
* @param[in] runtime string
|
|
* Returns a Runtime enum corresponding to the in param string
|
|
*
|
|
*/
|
|
static zdl::DlSystem::Runtime_t stringToRuntime(const char* runtimeStr);
|
|
|
|
/**
|
|
* @brief .
|
|
*
|
|
* @param[in] runtime
|
|
* Returns a string corresponding to the in param runtime enum
|
|
*
|
|
*/
|
|
static const char* runtimeToString(const zdl::DlSystem::Runtime_t runtime);
|
|
|
|
~RuntimeList();
|
|
|
|
private:
|
|
void deepCopy(const RuntimeList &other);
|
|
std::unique_ptr<::DlSystem::RuntimeListImpl> m_RuntimeListImpl;
|
|
};
|
|
|
|
} // DlSystem namespace
|
|
} // zdl namespace
|
|
|
|
/** @} */ /* end_addtogroup c_plus_plus_apis C++ */
|
|
|
|
#endif // DL_SYSTEM_RUNTIME_LIST_HPP
|
|
|