gpt4 book ai didi

linux - Ubuntu 12.4 上的 OpenGL 上下文访问速度慢

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:34:59 24 4
gpt4 key购买 nike

我有一个访问 OpenGL 上下文的应用程序。我在 2 个操作系统上运行它:

1.Kubuntu 13.4

2.Ubuntu 12.4

我遇到以下问题:在 OS 1 上设置上下文大约需要 60 毫秒,而在 OS 2 上需要 10 倍以上。两个操作系统都使用驱动程序版本为 319 的 Nvidia GPU。它似乎也像 OpenGL API 调用OS 2 的速度通常较慢。上下文在屏幕外。目前我不知道是什么原因造成的。我的问题是这种开销的可能来源是什么?X11 设置?或者可能是操作系统级别的东西?

另一个区别是 OS 1 使用 Nvidia GTX680,而 OS2 使用 Nvidia GRID K1 卡。此外,OS2 驻留在服务器上,延迟测试在该机器上本地运行。

更新:

这是导致大部分开销的部分:

typedef GLXContext (*glXCreateContextAttribsARBProc)(Display*, GLXFBConfig, GLXContext, Bool, const int*);
typedef Bool (*glXMakeContextCurrentARBProc)(Display*, GLXDrawable, GLXDrawable, GLXContext);
static glXCreateContextAttribsARBProc glXCreateContextAttribsARB = 0;
static glXMakeContextCurrentARBProc glXMakeContextCurrentARB = 0;

int main(int argc, const char* argv[]){
static int visual_attribs[] = {
None
};
int context_attribs[] = {
GLX_CONTEXT_MAJOR_VERSION_ARB, 3,
GLX_CONTEXT_MINOR_VERSION_ARB, 0,
None
};

Display* dpy = XOpenDisplay(0);
int fbcount = 0;
GLXFBConfig* fbc = NULL;
GLXContext ctx;
GLXPbuffer pbuf;

/* open display */
if ( ! (dpy = XOpenDisplay(0)) ){
fprintf(stderr, "Failed to open display\n");
exit(1);
}

/* get framebuffer configs, any is usable (might want to add proper attribs) */
if ( !(fbc = glXChooseFBConfig(dpy, DefaultScreen(dpy), visual_attribs, &fbcount) ) ){
fprintf(stderr, "Failed to get FBConfig\n");
exit(1);
}

/* get the required extensions */
glXCreateContextAttribsARB = (glXCreateContextAttribsARBProc)glXGetProcAddressARB( (const GLubyte *) "glXCreateContextAttribsARB");
glXMakeContextCurrentARB = (glXMakeContextCurrentARBProc)glXGetProcAddressARB( (const GLubyte *) "glXMakeContextCurrent");
if ( !(glXCreateContextAttribsARB && glXMakeContextCurrentARB) ){
fprintf(stderr, "missing support for GLX_ARB_create_context\n");
XFree(fbc);
exit(1);
}

/* create a context using glXCreateContextAttribsARB */
if ( !( ctx = glXCreateContextAttribsARB(dpy, fbc[0], 0, True, context_attribs)) ){
fprintf(stderr, "Failed to create opengl context\n");
XFree(fbc);
exit(1);
}

/* create temporary pbuffer */
int pbuffer_attribs[] = {
GLX_PBUFFER_WIDTH, 800,
GLX_PBUFFER_HEIGHT, 600,
None
};
pbuf = glXCreatePbuffer(dpy, fbc[0], pbuffer_attribs);

XFree(fbc);
XSync(dpy, False);

/* try to make it the current context */
if ( !glXMakeContextCurrent(dpy, pbuf, pbuf, ctx) ){
/* some drivers does not support context without default framebuffer, so fallback on
* using the default window.
*/
if ( !glXMakeContextCurrent(dpy, DefaultRootWindow(dpy), DefaultRootWindow(dpy), ctx) ){
fprintf(stderr, "failed to make current\n");
exit(1);
}
}

/* try it out */
printf("vendor: %s\n", (const char*)glGetString(GL_VENDOR));

return 0;
}

具体来说,行:

pbuf = glXCreatePbuffer(dpy, fbc[0], pbuffer_attribs);

创建虚拟 pbuffer 的地方是最慢的。如果其余的函数调用平均需要 2-4 ms,则此调用在 OS 1 上需要 40 ms。现在,在 OS2(很慢)上,pbuffer 创建需要 700ms !我希望现在我的问题看起来更清楚了。

最佳答案

绝对确定“OS2”已正确设置驱动程序并且不会退回到 SW OpenGL (Mesa) 渲染吗? glxgears 在每个系统上报告的帧速率是多少?

我注意到 Ubuntu 12.4 于 2012 年 4 月发布,而我相信 NVidia 的“GRID”技术直到 2012 年 5 月 GTC 才公布,我认为卡片直到 2013 年才出现(参见 relevant Nvidia press releases )。因此,与 Ubuntu 12.4 一起提供的 Nvidia 驱动程序似乎不太可能支持网格卡(除非您已经努力使用 Nvidia 更新的驱动程序版本进行升级?)。

您可以在 /usr/share/doc/nvidia-glx/README.txt.gz 的附录 A“支持的 NVIDIA GPU 产品”(位于至少我的 Debian 机器上有这些有用的信息。

关于linux - Ubuntu 12.4 上的 OpenGL 上下文访问速度慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20858132/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com