Skip to content

Commit

Permalink
restore int type for hwloc
Browse files Browse the repository at this point in the history
  • Loading branch information
slabasan committed Mar 8, 2024
1 parent 1e8e81c commit 9681c44
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/variorum/config_architecture.h
Original file line number Diff line number Diff line change
Expand Up @@ -283,15 +283,15 @@ struct platform
/// @brief Hostname.
char hostname[1024];
/// @brief Number of sockets in the node.
uint16_t num_sockets;
int num_sockets;
/// @brief Total number of physical cores in the node.
uint16_t total_cores;
int total_cores;
/// @brief Total number of logical threads in the node.
uint16_t total_threads;
int total_threads;
/// @brief Number of physical cores per socket in the node.
uint16_t num_cores_per_socket;
int num_cores_per_socket;
/// @brief Number of logical threads per core.
uint16_t num_threads_per_core;
int num_threads_per_core;
};

#if 0 /* To implement later */
Expand Down

0 comments on commit 9681c44

Please sign in to comment.