Skip to content

Commit ed64cea

Browse files
tools(profiling): type (related to kokkos/kokkos-tools/pull/221)
1 parent 30f0207 commit ed64cea

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

core/src/impl/Kokkos_Profiling_C_Interface.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ enum Kokkos_Tools_OptimizationType {
154154
Kokkos_Tools_Maximize
155155
};
156156

157-
struct Kokkos_Tools_OptimzationGoal {
157+
struct Kokkos_Tools_OptimizationGoal {
158158
size_t type_id;
159159
enum Kokkos_Tools_OptimizationType goal;
160160
};
@@ -220,7 +220,7 @@ typedef void (*Kokkos_Tools_contextBeginFunction)(const size_t);
220220
typedef void (*Kokkos_Tools_contextEndFunction)(
221221
const size_t, struct Kokkos_Tools_VariableValue);
222222
typedef void (*Kokkos_Tools_optimizationGoalDeclarationFunction)(
223-
const size_t, const struct Kokkos_Tools_OptimzationGoal goal);
223+
const size_t, const struct Kokkos_Tools_OptimizationGoal goal);
224224

225225
struct Kokkos_Profiling_EventSet {
226226
Kokkos_Profiling_initFunction init;

core/src/impl/Kokkos_Profiling_Interface.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ using ValueType = Kokkos_Tools_VariableInfo_ValueType;
226226
using CandidateValueType = Kokkos_Tools_VariableInfo_CandidateValueType;
227227
using SetOrRange = Kokkos_Tools_VariableInfo_SetOrRange;
228228
using VariableInfo = Kokkos_Tools_VariableInfo;
229-
using OptimizationGoal = Kokkos_Tools_OptimzationGoal;
229+
using OptimizationGoal = Kokkos_Tools_OptimizationGoal;
230230
using TuningString = Kokkos_Tools_Tuning_String;
231231
using VariableValue = Kokkos_Tools_VariableValue;
232232

0 commit comments

Comments
 (0)