Commit e0cad160 authored by Oleg Dzhimiev's avatar Oleg Dzhimiev

+file for Tensorflow testing

parent cff91554
...@@ -4725,7 +4725,7 @@ private Panel panel1, ...@@ -4725,7 +4725,7 @@ private Panel panel1,
/* ======================================================================== */ /* ======================================================================== */
} else if (label.equals("JCUDA TEST")) { } else if (label.equals("JCUDA TEST")) {
ImagePlus impl = WindowManager.getCurrentImage(); ImagePlus impl = WindowManager.getCurrentImage();
if (impl!=null) { if (impl!=null) {
ImageProcessor impr = impl.getProcessor(); ImageProcessor impr = impl.getProcessor();
...@@ -4736,7 +4736,6 @@ private Panel panel1, ...@@ -4736,7 +4736,6 @@ private Panel panel1,
* In a standalone test JCUDA plugin it's unknown where .setup() is called from... * In a standalone test JCUDA plugin it's unknown where .setup() is called from...
* As well as .run(). But it works like this. * As well as .run(). But it works like this.
*/ */
jcuda.setup(null,impl); jcuda.setup(null,impl);
jcuda.run(impr); jcuda.run(impr);
...@@ -4747,7 +4746,10 @@ private Panel panel1, ...@@ -4747,7 +4746,10 @@ private Panel panel1,
return; return;
/* ======================================================================== */ /* ======================================================================== */
} else if (label.equals("TF TEST")) { } else if (label.equals("TF TEST")) {
System.out.println("TF TEST");
TensorflowExamplePlugin t = new TensorflowExamplePlugin();
t.run();
return; return;
//JTabbedTest //JTabbedTest
// End of buttons code // End of buttons code
......
/**
* Copyright (C) 2018 Elphel, Inc.
* SPDX-License-Identifier: GPL-3.0-or-later
*/
public class TensorflowExamplePlugin
{
public void run()
{
System.out.println("TensorflowExamplePlugin run");
}
}
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