Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: suppress spell check failure to ignore LOBF, bcnn, CTRV and DLCPU #6432

Merged
merged 1 commit into from
Mar 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
#ifndef PERCEPTION__LIDAR_APOLLO_SEGMENTATION_TVM__DATA__MODELS__BAIDU_CNN__INFERENCE_ENGINE_TVM_CONFIG_HPP_ // NOLINT
#define PERCEPTION__LIDAR_APOLLO_SEGMENTATION_TVM__DATA__MODELS__BAIDU_CNN__INFERENCE_ENGINE_TVM_CONFIG_HPP_ // NOLINT

// cspell: ignore bcnn

namespace model_zoo
{
namespace perception
Expand All @@ -38,6 +40,7 @@ static const tvm_utility::pipeline::InferenceEngineTVMConfig config{
"./deploy_graph.json", // network_graph_path
"./deploy_param.params", // network_params_path

// cspell: ignore DLCPU
kDLCPU, // tvm_device_type
0, // tvm_device_id

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ static const tvm_utility::pipeline::InferenceEngineTVMConfig config{
"./deploy_graph.json", // network_graph_path
"./deploy_param.params", // network_params_path

// cspell: ignore DLCPU
kDLCPU, // tvm_device_type
0, // tvm_device_id

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ static const tvm_utility::pipeline::InferenceEngineTVMConfig config{
"./", // network_graph_path
"./", // network_params_path

// cspell: ignore DLCPU
kDLCPU, // tvm_device_type
0, // tvm_device_id

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ static const tvm_utility::pipeline::InferenceEngineTVMConfig config{
"./deploy_graph.json", // network_graph_path
"./deploy_param.params", // network_params_path

// cspell: ignore DLCPU
kDLCPU, // tvm_device_type
0, // tvm_device_id

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ bool PedestrianTracker::predict(const rclcpp::Time & time)

bool PedestrianTracker::predict(const double dt, KalmanFilter & ekf) const
{
// cspell: ignore CTRV
/* Motion model: Constant turn-rate motion model (CTRV)
*
* x_{k+1} = x_k + vx_k * cos(yaw_k) * dt
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@
#include <string>
#include <vector>

// cspell: ignore LOBF

namespace synchronized_grid_map_fusion
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include <eigen3/Eigen/Geometry>

// LOBF means: Log Odds Bayes Filter
// cspell: ignore LOBF

namespace costmap_2d
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
#include "probabilistic_occupancy_grid_map/cost_value.hpp"
#include "probabilistic_occupancy_grid_map/utils/utils.hpp"

// cspell: ignore LOBF

namespace synchronized_grid_map_fusion
{
using costmap_2d::OccupancyGridMapFixedBlindSpot;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

#include <algorithm>

// cspell: ignore LOBF

namespace costmap_2d
{

Expand Down
Loading