Message boards : Server programs : ATI coproc support
Message board moderation
Author | Message |
---|---|
Send message Joined: 4 Sep 09 Posts: 3 |
In sched_customize.cpp, the following: bool app_plan_uses_gpu(const char* plan_class) { if (!strcmp(plan_class, "cuda")) { return true; } return false; } needs to acknowledge ATI coprocs such as: bool app_plan_uses_gpu(const char* plan_class) { if (!strcmp(plan_class, "cuda")) { return true; } if (!strcmp(plan_class, "ati")) { return true; } return false; } |
Send message Joined: 19 Jan 07 Posts: 1179 |
That file is just an example; you're supposed to modify it to suit your needs. |
Copyright © 2024 University of California.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License,
Version 1.2 or any later version published by the Free Software Foundation.