2011-04-27 11:58:34 +00:00
|
|
|
/*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Copyright 2011-2013 Blender Foundation
|
2011-04-27 11:58:34 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2011-04-27 11:58:34 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-04-27 11:58:34 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License
|
2011-04-27 11:58:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "device.h"
|
|
|
|
|
|
|
|
#include "util_args.h"
|
|
|
|
#include "util_foreach.h"
|
|
|
|
#include "util_path.h"
|
2012-12-21 11:13:46 +00:00
|
|
|
#include "util_stats.h"
|
2011-04-27 11:58:34 +00:00
|
|
|
#include "util_string.h"
|
2012-12-21 11:13:46 +00:00
|
|
|
#include "util_task.h"
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
using namespace ccl;
|
|
|
|
|
|
|
|
int main(int argc, const char **argv)
|
|
|
|
{
|
|
|
|
path_init();
|
|
|
|
|
|
|
|
/* device types */
|
2012-12-21 11:13:46 +00:00
|
|
|
string devicelist = "";
|
2011-04-27 11:58:34 +00:00
|
|
|
string devicename = "cpu";
|
2012-01-04 18:06:32 +00:00
|
|
|
bool list = false;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2012-01-04 18:06:32 +00:00
|
|
|
vector<DeviceType>& types = Device::available_types();
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
foreach(DeviceType type, types) {
|
2012-12-21 11:13:46 +00:00
|
|
|
if(devicelist != "")
|
|
|
|
devicelist += ", ";
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2012-12-21 11:13:46 +00:00
|
|
|
devicelist += Device::string_from_type(type);
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* parse options */
|
|
|
|
ArgParse ap;
|
|
|
|
|
|
|
|
ap.options ("Usage: cycles_server [options]",
|
2012-12-21 11:13:46 +00:00
|
|
|
"--device %s", &devicename, ("Devices to use: " + devicelist).c_str(),
|
2012-01-04 18:06:32 +00:00
|
|
|
"--list-devices", &list, "List information about all available devices",
|
2011-04-27 11:58:34 +00:00
|
|
|
NULL);
|
|
|
|
|
|
|
|
if(ap.parse(argc, argv) < 0) {
|
2012-12-21 11:13:46 +00:00
|
|
|
fprintf(stderr, "%s\n", ap.geterror().c_str());
|
2011-04-27 11:58:34 +00:00
|
|
|
ap.usage();
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2012-01-04 18:06:32 +00:00
|
|
|
else if(list) {
|
|
|
|
vector<DeviceInfo>& devices = Device::available_devices();
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2012-01-04 18:06:32 +00:00
|
|
|
printf("Devices:\n");
|
|
|
|
|
|
|
|
foreach(DeviceInfo& info, devices) {
|
|
|
|
printf(" %s%s\n",
|
|
|
|
info.description.c_str(),
|
|
|
|
(info.display_device)? " (display)": "");
|
|
|
|
}
|
|
|
|
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* find matching device */
|
|
|
|
DeviceType device_type = Device::type_from_string(devicename.c_str());
|
|
|
|
vector<DeviceInfo>& devices = Device::available_devices();
|
|
|
|
DeviceInfo device_info;
|
|
|
|
|
|
|
|
foreach(DeviceInfo& device, devices) {
|
|
|
|
if(device_type == device.type) {
|
|
|
|
device_info = device;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2012-12-21 11:13:46 +00:00
|
|
|
TaskScheduler::init();
|
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
while(1) {
|
2012-12-21 11:13:46 +00:00
|
|
|
Stats stats;
|
|
|
|
Device *device = Device::create(device_info, stats);
|
|
|
|
printf("Cycles Server with device: %s\n", device->info.description.c_str());
|
2011-04-27 11:58:34 +00:00
|
|
|
device->server_run();
|
|
|
|
delete device;
|
|
|
|
}
|
|
|
|
|
2012-12-21 11:13:46 +00:00
|
|
|
TaskScheduler::exit();
|
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|