Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9b1739a

Browse files
committedSep 13, 2024··
feat: rpc example
1 parent e6e537c commit 9b1739a

File tree

1 file changed

+28
-21
lines changed

1 file changed

+28
-21
lines changed
 

‎client.cu

+28-21
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ int open_rpc_client()
4040
return sockfd;
4141
}
4242

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)
4444
{
4545
static int next_request_id = 0, active_response_id = -1;
4646
static pthread_mutex_t mutex;
@@ -53,16 +53,16 @@ int send_rpc_message(void **response, const char *op, const void *args, const in
5353

5454
uint8_t oplen = (uint8_t)strlen(op);
5555
if (write(sockfd, (void *)&request_id, sizeof(int)) < 0)
56-
return -1;
56+
return NVML_ERROR_GPU_IS_LOST;
5757

5858
if (write(sockfd, (void *)&oplen, sizeof(uint8_t)) < 0)
59-
return -1;
59+
return NVML_ERROR_GPU_IS_LOST;
6060
if (write(sockfd, op, oplen) < 0)
61-
return -1;
61+
return NVML_ERROR_GPU_IS_LOST;
6262
if (write(sockfd, (void *)&argslen, sizeof(int)) < 0)
63-
return -1;
63+
return NVML_ERROR_GPU_IS_LOST;
6464
if (write(sockfd, args, argslen) < 0)
65-
return -1;
65+
return NVML_ERROR_GPU_IS_LOST;
6666

6767
// wait for the response
6868
while (true)
@@ -74,22 +74,33 @@ int send_rpc_message(void **response, const char *op, const void *args, const in
7474
if (active_response_id == -1)
7575
{
7676
if (read(sockfd, (void *)&active_response_id, sizeof(int)) < 0)
77-
return -1;
77+
return NVML_ERROR_GPU_IS_LOST;
7878
continue;
7979
}
8080
else
8181
{
8282
// 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+
}
89100

90101
// we are done, unlock and return.
91102
pthread_mutex_unlock(&mutex);
92-
return len;
103+
return ret;
93104
}
94105
}
95106
}
@@ -103,17 +114,13 @@ void close_rpc_client()
103114
nvmlReturn_t nvmlInitWithFlags(unsigned int flags)
104115
{
105116
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));
110118
}
111119

112120
nvmlReturn_t nvmlDeviceGetName(nvmlDevice_t device, char *name, unsigned int length)
113121
{
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));
117124
}
118125

119126
nvmlReturn_t nvmlDeviceGetName(nvmlDevice_t device, char *name, unsigned int length)

0 commit comments

Comments
 (0)
Please sign in to comment.