C_and_CPP 板


LINE

开发平台(Platform): (Ex: VC++, GCC, Linux, ...) VS2012 额外使用到的函数库(Library Used): (Ex: OpenGL, ...) CUDA6.5、Optix3.9.0 问题(Question): 我的最终目的要使用Optix做ray tracing并透过cuda加速, 目前打算先使用Optix里的SDK sample1做测试,但不知道是不是cuda、optix版本相容问题 用Cmake建好的专案,run的时候会告诉我invalid context(程式码会附在下面), google有人发生类似的问题,他们是把cuda更新到6.0版本就没问题(但我的是最新版本囧) 想请问有没有人对cuda、optix熟,可以帮我解这个超新手问题>< 喂入的资料(Input): command line: (在exe所在资料夹下) sample1.exe -f a.jpg 预期的正确结果(Expected Output): 看教学应该是会输出一张jpg档 错误结果(Wrong Output): error讯息: OptiX Error: Invalid context 程式码(Code):(请善用置底文网页, 记得排版) sample1.c #include <optix.h> #include <stdlib.h> #include <stdio.h> #include <string.h> #include <sutil.h> void printUsageAndExit( const char* argv0 ); int main(int argc, char* argv[]) { /* Primary RTAPI objects */ RTcontext context; RTprogram ray_gen_program; RTbuffer buffer; /* Parameters */ RTvariable result_buffer; RTvariable draw_color; char path_to_ptx[512]; char outfile[512]; unsigned int width = 512u; unsigned int height = 384u; int i; int use_glut = 1; outfile[0] = '\0'; /* If "--file" is specified, don't do any GL stuff */ for( i = 1; i < argc; ++i ) { if( strcmp( argv[i], "--file" ) == 0 || strcmp( argv[i], "-f" ) == 0 ) use_glut = 0; } /* Process command line args */ if( use_glut ) RT_CHECK_ERROR_NO_CONTEXT( sutilInitGlut( &argc, argv ) ); for( i = 1; i < argc; ++i ) { if( strcmp( argv[i], "--help" ) == 0 || strcmp( argv[i], "-h" ) == 0 ) { printUsageAndExit( argv[0] ); } else if( strcmp( argv[i], "--file" ) == 0 || strcmp( argv[i],"-f")==0) { printf("file = %s\n",argv[i]); if( i < argc-1 ) { strcpy( outfile, argv[++i] ); printf("outfile = %s\n",outfile); } else { printUsageAndExit( argv[0] ); } } else if ( strncmp( argv[i], "--dim=", 6 ) == 0 ) { const char *dims_arg = &argv[i][6]; if ( sutilParseImageDimensions( dims_arg, &width, &height ) != RT_SUCCESS ) { fprintf( stderr, "Invalid window dimensions: '%s'\n", dims_arg ); printUsageAndExit( argv[0] ); } } else { fprintf( stderr, "Unknown option '%s'\n", argv[i] ); printUsageAndExit( argv[0] ); } } /* Create our objects and set state */ RT_CHECK_ERROR( rtContextCreate( &context ) ); RT_CHECK_ERROR( rtContextSetRayTypeCount( context, 1 ) ); RT_CHECK_ERROR( rtContextSetEntryPointCount( context, 1 ) ); RT_CHECK_ERROR( rtBufferCreate( context, RT_BUFFER_OUTPUT, &buffer ) ); RT_CHECK_ERROR( rtBufferSetFormat( buffer, RT_FORMAT_FLOAT4 ) ); RT_CHECK_ERROR( rtBufferSetSize2D( buffer, width, height ) ); RT_CHECK_ERROR( rtContextDeclareVariable( context, "result_buffer", &result_buffer ) ); RT_CHECK_ERROR( rtVariableSetObject( result_buffer, buffer ) ); sprintf( path_to_ptx, "%s/%s", sutilSamplesPtxDir(), "sample1_generated_draw_color.cu.ptx" ); RT_CHECK_ERROR( rtProgramCreateFromPTXFile( context, path_to_ptx, "draw_solid_color", &ray_gen_program ) ); RT_CHECK_ERROR( rtProgramDeclareVariable( ray_gen_program, "draw_color", &draw_color ) ); RT_CHECK_ERROR( rtVariableSet3f( draw_color, 0.462f, 0.725f, 0.0f ) ); RT_CHECK_ERROR( rtContextSetRayGenerationProgram( context, 0, ray_gen_program ) ); /* Run */ RT_CHECK_ERROR( rtContextValidate( context ) ); RT_CHECK_ERROR( rtContextCompile( context ) ); RT_CHECK_ERROR( rtContextLaunch2D( context, 0 /* entry point */, width, height ) ); /* Display image */ if( strlen( outfile ) == 0 ) { RT_CHECK_ERROR( sutilDisplayBufferInGlutWindow( argv[0], buffer ) ); } else { RT_CHECK_ERROR( sutilDisplayFilePPM( outfile, buffer ) ); } /* Clean up */ RT_CHECK_ERROR( rtBufferDestroy( buffer ) ); RT_CHECK_ERROR( rtProgramDestroy( ray_gen_program ) ); RT_CHECK_ERROR( rtContextDestroy( context ) ); return( 0 ); } void printUsageAndExit( const char* argv0 ) { fprintf( stderr, "Usage : %s [options]\n", argv0 ); fprintf( stderr, "Options: --file | -f <filename> Specify file for image output\n" ); fprintf( stderr, " --help | -h Print this usage message\n" ); fprintf( stderr, " --dim=<width>x<height> Set image dimensions; defaults to 512x384\n" ); exit(1); } draw_color.cu档内 #include <optix.h> #include <optixu/optixu_math_namespace.h> using namespace optix; rtDeclareVariable(uint2, launch_index, rtLaunchIndex, ); rtBuffer<float4, 2> result_buffer; rtDeclareVariable(float3, draw_color, , ); RT_PROGRAM void draw_solid_color() { result_buffer[launch_index] = make_float4(draw_color, 0.f); } 补充说明(Supplement): 1.黄色那行为出现invalid context的function 2.之前有用别的cuda程式测试过没出现问题,但这个的cu档会出现红色波浪底线@@ 3.测其他范例程式也会卡在rtContextCreate( &context )这行 4.皆是用x64模式执行 请问是Cmake完後还要再另外Link(应该不必吧)还是cuda、optix版本出问题? 没碰过Optix、cuda,新手问题还请多包涵>< --



※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 140.113.210.20
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/C_and_CPP/M.1450856946.A.4B8.html ※ 编辑: micrometer (140.113.210.20), 12/23/2015 15:52:32
1F:→ micrometer: 自己的问题自己回XD 应该是Optix3.9版本太新 12/23 16:54
2F:→ micrometer: 改装3.7版本就成功了,可能刚出一周bug还没修掉(吧? 12/23 16:54







like.gif 您可能会有兴趣的文章
icon.png[问题/行为] 猫晚上进房间会不会有憋尿问题
icon.pngRe: [闲聊] 选了错误的女孩成为魔法少女 XDDDDDDDDDD
icon.png[正妹] 瑞典 一张
icon.png[心得] EMS高领长版毛衣.墨小楼MC1002
icon.png[分享] 丹龙隔热纸GE55+33+22
icon.png[问题] 清洗洗衣机
icon.png[寻物] 窗台下的空间
icon.png[闲聊] 双极の女神1 木魔爵
icon.png[售车] 新竹 1997 march 1297cc 白色 四门
icon.png[讨论] 能从照片感受到摄影者心情吗
icon.png[狂贺] 贺贺贺贺 贺!岛村卯月!总选举NO.1
icon.png[难过] 羡慕白皮肤的女生
icon.png阅读文章
icon.png[黑特]
icon.png[问题] SBK S1安装於安全帽位置
icon.png[分享] 旧woo100绝版开箱!!
icon.pngRe: [无言] 关於小包卫生纸
icon.png[开箱] E5-2683V3 RX480Strix 快睿C1 简单测试
icon.png[心得] 苍の海贼龙 地狱 执行者16PT
icon.png[售车] 1999年Virage iO 1.8EXi
icon.png[心得] 挑战33 LV10 狮子座pt solo
icon.png[闲聊] 手把手教你不被桶之新手主购教学
icon.png[分享] Civic Type R 量产版官方照无预警流出
icon.png[售车] Golf 4 2.0 银色 自排
icon.png[出售] Graco提篮汽座(有底座)2000元诚可议
icon.png[问题] 请问补牙材质掉了还能再补吗?(台中半年内
icon.png[问题] 44th 单曲 生写竟然都给重复的啊啊!
icon.png[心得] 华南红卡/icash 核卡
icon.png[问题] 拔牙矫正这样正常吗
icon.png[赠送] 老莫高业 初业 102年版
icon.png[情报] 三大行动支付 本季掀战火
icon.png[宝宝] 博客来Amos水蜡笔5/1特价五折
icon.pngRe: [心得] 新鲜人一些面试分享
icon.png[心得] 苍の海贼龙 地狱 麒麟25PT
icon.pngRe: [闲聊] (君の名は。雷慎入) 君名二创漫画翻译
icon.pngRe: [闲聊] OGN中场影片:失踪人口局 (英文字幕)
icon.png[问题] 台湾大哥大4G讯号差
icon.png[出售] [全国]全新千寻侘草LED灯, 水草

请输入看板名称,例如:BabyMother站内搜寻

TOP