Skip to content

Commit 49e82f9

Browse files
committed
fix: suppress spell check failure to ignore LOBF, bcnn, CTRV
1 parent 6b1a459 commit 49e82f9

File tree

9 files changed

+14
-0
lines changed

9 files changed

+14
-0
lines changed

perception/lidar_apollo_segmentation_tvm/data/models/baidu_cnn/inference_engine_tvm_config.hpp

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
#ifndef PERCEPTION__LIDAR_APOLLO_SEGMENTATION_TVM__DATA__MODELS__BAIDU_CNN__INFERENCE_ENGINE_TVM_CONFIG_HPP_ // NOLINT
1818
#define PERCEPTION__LIDAR_APOLLO_SEGMENTATION_TVM__DATA__MODELS__BAIDU_CNN__INFERENCE_ENGINE_TVM_CONFIG_HPP_ // NOLINT
1919

20+
// cspell: ignore bcnn
21+
2022
namespace model_zoo
2123
{
2224
namespace perception
@@ -38,6 +40,7 @@ static const tvm_utility::pipeline::InferenceEngineTVMConfig config{
3840
"./deploy_graph.json", // network_graph_path
3941
"./deploy_param.params", // network_params_path
4042

43+
// cspell: ignore DLCPU
4144
kDLCPU, // tvm_device_type
4245
0, // tvm_device_id
4346

perception/lidar_centerpoint_tvm/data/models/centerpoint_backbone/inference_engine_tvm_config.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ static const tvm_utility::pipeline::InferenceEngineTVMConfig config{
3838
"./deploy_graph.json", // network_graph_path
3939
"./deploy_param.params", // network_params_path
4040

41+
// cspell: ignore DLCPU
4142
kDLCPU, // tvm_device_type
4243
0, // tvm_device_id
4344

perception/lidar_centerpoint_tvm/data/models/centerpoint_backbone/preprocessing_inference_engine_tvm_config.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ static const tvm_utility::pipeline::InferenceEngineTVMConfig config{
4040
"./", // network_graph_path
4141
"./", // network_params_path
4242

43+
// cspell: ignore DLCPU
4344
kDLCPU, // tvm_device_type
4445
0, // tvm_device_id
4546

perception/lidar_centerpoint_tvm/data/models/centerpoint_encoder/inference_engine_tvm_config.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ static const tvm_utility::pipeline::InferenceEngineTVMConfig config{
3838
"./deploy_graph.json", // network_graph_path
3939
"./deploy_param.params", // network_params_path
4040

41+
// cspell: ignore DLCPU
4142
kDLCPU, // tvm_device_type
4243
0, // tvm_device_id
4344

perception/multi_object_tracker/src/tracker/model/pedestrian_tracker.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ bool PedestrianTracker::predict(const rclcpp::Time & time)
158158

159159
bool PedestrianTracker::predict(const double dt, KalmanFilter & ekf) const
160160
{
161+
// cspell: ignore CTRV
161162
/* Motion model: Constant turn-rate motion model (CTRV)
162163
*
163164
* x_{k+1} = x_k + vx_k * cos(yaw_k) * dt

perception/probabilistic_occupancy_grid_map/include/probabilistic_occupancy_grid_map/fusion/synchronized_grid_map_fusion_node.hpp

+2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@
4343
#include <string>
4444
#include <vector>
4545

46+
// cspell: ignore LOBF
47+
4648
namespace synchronized_grid_map_fusion
4749
{
4850

perception/probabilistic_occupancy_grid_map/include/probabilistic_occupancy_grid_map/updater/occupancy_grid_map_log_odds_bayes_filter_updater.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#include <eigen3/Eigen/Geometry>
2424

2525
// LOBF means: Log Odds Bayes Filter
26+
// cspell: ignore LOBF
2627

2728
namespace costmap_2d
2829
{

perception/probabilistic_occupancy_grid_map/src/fusion/synchronized_grid_map_fusion_node.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
#include "probabilistic_occupancy_grid_map/cost_value.hpp"
1818
#include "probabilistic_occupancy_grid_map/utils/utils.hpp"
1919

20+
// cspell: ignore LOBF
21+
2022
namespace synchronized_grid_map_fusion
2123
{
2224
using costmap_2d::OccupancyGridMapFixedBlindSpot;

perception/probabilistic_occupancy_grid_map/src/updater/occupancy_grid_map_log_odds_bayes_filter_updater.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818

1919
#include <algorithm>
2020

21+
// cspell: ignore LOBF
22+
2123
namespace costmap_2d
2224
{
2325

0 commit comments

Comments
 (0)