Skip to content

Commit

Permalink
tools(profiling): type (related to kokkos/kokkos-tools/pull/221)
Browse files Browse the repository at this point in the history
  • Loading branch information
romintomasetti committed Dec 1, 2023
1 parent 30f0207 commit ed64cea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions core/src/impl/Kokkos_Profiling_C_Interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ enum Kokkos_Tools_OptimizationType {
Kokkos_Tools_Maximize
};

struct Kokkos_Tools_OptimzationGoal {
struct Kokkos_Tools_OptimizationGoal {
size_t type_id;
enum Kokkos_Tools_OptimizationType goal;
};
Expand Down Expand Up @@ -220,7 +220,7 @@ typedef void (*Kokkos_Tools_contextBeginFunction)(const size_t);
typedef void (*Kokkos_Tools_contextEndFunction)(
const size_t, struct Kokkos_Tools_VariableValue);
typedef void (*Kokkos_Tools_optimizationGoalDeclarationFunction)(
const size_t, const struct Kokkos_Tools_OptimzationGoal goal);
const size_t, const struct Kokkos_Tools_OptimizationGoal goal);

struct Kokkos_Profiling_EventSet {
Kokkos_Profiling_initFunction init;
Expand Down
2 changes: 1 addition & 1 deletion core/src/impl/Kokkos_Profiling_Interface.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ using ValueType = Kokkos_Tools_VariableInfo_ValueType;
using CandidateValueType = Kokkos_Tools_VariableInfo_CandidateValueType;
using SetOrRange = Kokkos_Tools_VariableInfo_SetOrRange;
using VariableInfo = Kokkos_Tools_VariableInfo;
using OptimizationGoal = Kokkos_Tools_OptimzationGoal;
using OptimizationGoal = Kokkos_Tools_OptimizationGoal;
using TuningString = Kokkos_Tools_Tuning_String;
using VariableValue = Kokkos_Tools_VariableValue;

Expand Down

0 comments on commit ed64cea

Please sign in to comment.