@@ -40,7 +40,7 @@ int open_rpc_client()
40
40
return sockfd;
41
41
}
42
42
43
- int send_rpc_message (void **response, const char *op, const void *args, const int argslen)
43
+ nvmlReturn_t send_rpc_message (void **response, int *len , const char *op, const void *args, const int argslen)
44
44
{
45
45
static int next_request_id = 0 , active_response_id = -1 ;
46
46
static pthread_mutex_t mutex;
@@ -53,16 +53,16 @@ int send_rpc_message(void **response, const char *op, const void *args, const in
53
53
54
54
uint8_t oplen = (uint8_t )strlen (op);
55
55
if (write (sockfd, (void *)&request_id, sizeof (int )) < 0 )
56
- return - 1 ;
56
+ return NVML_ERROR_GPU_IS_LOST ;
57
57
58
58
if (write (sockfd, (void *)&oplen, sizeof (uint8_t )) < 0 )
59
- return - 1 ;
59
+ return NVML_ERROR_GPU_IS_LOST ;
60
60
if (write (sockfd, op, oplen) < 0 )
61
- return - 1 ;
61
+ return NVML_ERROR_GPU_IS_LOST ;
62
62
if (write (sockfd, (void *)&argslen, sizeof (int )) < 0 )
63
- return - 1 ;
63
+ return NVML_ERROR_GPU_IS_LOST ;
64
64
if (write (sockfd, args, argslen) < 0 )
65
- return - 1 ;
65
+ return NVML_ERROR_GPU_IS_LOST ;
66
66
67
67
// wait for the response
68
68
while (true )
@@ -74,22 +74,33 @@ int send_rpc_message(void **response, const char *op, const void *args, const in
74
74
if (active_response_id == -1 )
75
75
{
76
76
if (read (sockfd, (void *)&active_response_id, sizeof (int )) < 0 )
77
- return - 1 ;
77
+ return NVML_ERROR_GPU_IS_LOST ;
78
78
continue ;
79
79
}
80
80
else
81
81
{
82
82
// it's our turn to read the response.
83
- int len;
84
- if (read (sockfd, (void *)&len, sizeof (int )) < 0 )
85
- return -1 ;
86
- *response = malloc (len);
87
- if (read (sockfd, *response, len) < 0 )
88
- return -1 ;
83
+ nvmlReturn_t ret;
84
+ if (read (sockfd, (void *)&ret, sizeof (nvmlReturn_t)) < 0 )
85
+ return NVML_ERROR_GPU_IS_LOST;
86
+ if (ret != NVML_SUCCESS || response == NULL )
87
+ {
88
+ pthread_mutex_unlock (&mutex);
89
+ return ret;
90
+ }
91
+
92
+ if (read (sockfd, (void *)len, sizeof (int )) < 0 )
93
+ return NVML_ERROR_GPU_IS_LOST;
94
+ if (len > 0 )
95
+ {
96
+ *response = malloc (*len);
97
+ if (read (sockfd, *response, *len) < 0 )
98
+ return NVML_ERROR_GPU_IS_LOST;
99
+ }
89
100
90
101
// we are done, unlock and return.
91
102
pthread_mutex_unlock (&mutex);
92
- return len ;
103
+ return ret ;
93
104
}
94
105
}
95
106
}
@@ -103,17 +114,13 @@ void close_rpc_client()
103
114
nvmlReturn_t nvmlInitWithFlags (unsigned int flags)
104
115
{
105
116
open_rpc_client ();
106
- char buffer[1024 ];
107
- sprintf (buffer, " nvmlInitWithFlags %d\n " , flags);
108
- write (sockfd, buffer, strlen (buffer));
109
- return NVML_SUCCESS;
117
+ return send_rpc_message (NULL , NULL , " nvmlInitWithFlags" , (void *)&flags, sizeof (unsigned int ));
110
118
}
111
119
112
120
nvmlReturn_t nvmlDeviceGetName (nvmlDevice_t device, char *name, unsigned int length)
113
121
{
114
- // write "HI MUGIT" to the name buffer
115
- strcpy (name, " HI MUGIT" );
116
- return NVML_SUCCESS;
122
+ open_rpc_client ();
123
+ return send_rpc_message ((void **)&name, (int *)&length, " nvmlDeviceGetName" , (void *)&device, sizeof (nvmlDevice_t));
117
124
}
118
125
119
126
nvmlReturn_t nvmlDeviceGetName (nvmlDevice_t device, char *name, unsigned int length)
0 commit comments