[RPC] clarify error message for unmatched context (#451)

Clarify confusing error message for unmatched context
This commit is contained in:
Shuai Yuan 2017-09-12 11:24:42 -05:00 коммит произвёл Tianqi Chen
Родитель ffff1e4932
Коммит 220fa04015
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -149,7 +149,7 @@ class RPCSession::EventHandler {
TVMContext StripSessMask(TVMContext ctx) {
int dev_type = ctx.device_type;
CHECK_EQ(dev_type / kRPCSessMask, rpc_sess_table_index_ + 1)
<< "Can only TVMContext related to the same remote sesstion";
<< "Can not pass in local context or context with a different remote session";
ctx.device_type = static_cast<DLDeviceType>(dev_type % kRPCSessMask);
return ctx;
}