Skip to content

Commit

Permalink
contenst to contents
Browse files Browse the repository at this point in the history
  • Loading branch information
jchen351 committed Jun 19, 2024
1 parent f9bd0d8 commit 4962fb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions onnxruntime/contrib_ops/cuda/math/cufft_plan_cache.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ struct CufftPlanInfo {
template <typename T>
struct ParamsHash {
// Params must be a trivial because we read out its memory
// contenst as char* when hashing
// contents as char* when hashing

static_assert(std::is_trivial<T>::value, "Params is not a trivial type");
size_t operator()(const T& params) const {
Expand All @@ -51,7 +51,7 @@ struct ParamsHash {
template <typename T>
struct ParamsEqual {
// Params must be a trivial because we read out its memory
// contenst as char* when comparing
// contents as char* when comparing

static_assert(std::is_trivial<T>::value, "Params is not a trivial type");

Expand Down

0 comments on commit 4962fb1

Please sign in to comment.