Skip to content

Commit

Permalink
fix: suppress spell check failure to ignore LOBF, bcnn, CTRV and DLCPU (
Browse files Browse the repository at this point in the history
#6432)

fix: suppress spell check failure to ignore LOBF, bcnn, CTRV
  • Loading branch information
h-ohta authored Mar 4, 2024
1 parent 44e4be7 commit 833722b
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 0 deletions.
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

0 comments on commit 833722b

Please sign in to comment.