Kaydet (Commit) f8129024 authored tarafından Michael Meeks's avatar Michael Meeks Kaydeden (comit) Kohei Yoshida

add SC_SOFTWARE tweak to force sw group interpret.

üst 7b87af68
......@@ -426,6 +426,11 @@ bool FormulaGroupInterpreterGroundwater::interpret(ScDocument& rDoc, const ScAdd
namespace opencl {
sc::FormulaGroupInterpreter *createFormulaGroupInterpreter()
{
if (getenv("SC_SOFTWARE"))
{
fprintf(stderr, "Create S/W interp\n");
return new sc::FormulaGroupInterpreterSoftware();
}
if (getenv("SC_GROUNDWATER"))
return new sc::FormulaGroupInterpreterGroundwater();
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment