Beispiel #1
0
 /**
  * This main() is for running the tests from Java. If running from the tests from python, use
  * python setup.py test.
  *
  * @param args
  */
 public static void main(String[] args) {
   File pwd = new File("tests");
   TestNumpy test = null;
   Jep jep = null;
   try {
     test = new TestNumpy();
     jep = new Jep(false, pwd.getPath());
     test.runFromJava(jep);
     test.testNDArraySafety();
   } catch (JepException e) {
     e.printStackTrace();
   } finally {
     if (jep != null) {
       jep.close();
     }
   }
 }
Beispiel #2
0
 /**
  * Helper method to support running the main() method to run from Java instead of python
  *
  * @param jep
  */
 public void runFromJava(Jep jep) {
   try {
     jep.eval("import test_numpy");
     jep.eval("v = test_numpy.TestNumpy('testArgReturn')");
     jep.eval("v.setUp()");
     for (int i = 0; i < REPEAT; i++) {
       this.testSetAndGet(jep);
     }
     for (int i = 0; i < REPEAT; i++) {
       jep.eval("v.testArgReturn()");
     }
     System.out.println("return NDArray from Java checked out ok");
     for (int i = 0; i < REPEAT; i++) {
       jep.eval("v.testMultiDimensional()");
     }
     System.out.println("multi dimensional arrays checked out ok");
     for (int i = 0; i < REPEAT; i++) {
       jep.eval("v.testArrayParams()");
     }
     System.out.println("Passing ndarrays to Java method as Java primitive[] checked out ok");
   } catch (JepException e) {
     e.printStackTrace();
   } finally {
     if (jep != null) jep.close();
   }
 }
Beispiel #3
0
 public static void main(String[] args) {
   TestNumpy test = null;
   Jep jep = null;
   try {
     test = new TestNumpy();
     jep = new Jep(false, ".");
     test.testNDArraySafety();
     test.testSetAndGet(jep);
   } catch (Throwable e) {
     e.printStackTrace();
     System.exit(1);
   } finally {
     if (jep != null) {
       jep.close();
     }
   }
   System.exit(0);
 }
Beispiel #4
0
  /**
   * Sets NDArrays in a Jep interpreter, then gets them and verifies the conversion in both
   * directions is safe, ie produces a symmetrical object despite a different reference/instance.
   *
   * @param jep
   * @throws JepException
   */
  public void testSetAndGet(Jep jep) throws JepException {
    int[] dimensions = new int[] {4};

    // test boolean[]
    NDArray<boolean[]> zarray =
        new NDArray<boolean[]>(new boolean[] {true, false, true, true}, dimensions);
    jep.set("zarray", zarray);
    String z_dtype = (String) jep.getValue("zarray.dtype");
    if (!"bool".equals(z_dtype)) {
      throw new AssertionError("boolean ndarray set failed, dtype = " + z_dtype);
    }
    NDArray<?> retZ = (NDArray<?>) jep.getValue("zarray");
    if (!zarray.equals(retZ)) {
      throw new AssertionError("boolean[] before != boolean[] after");
    }
    if (zarray.hashCode() != retZ.hashCode()) {
      throw new AssertionError("boolean[].hashCode() before != boolean[].hasCode() after");
    }

    // test byte[]
    NDArray<byte[]> barray = new NDArray<byte[]>(new byte[] {0x10, 0x00, 0x54, 032}, dimensions);
    jep.set("barray", barray);
    String b_dtype = (String) jep.getValue("barray.dtype");
    if (!"int8".equals(b_dtype)) {
      throw new AssertionError("byte ndarray set failed, dtype = " + b_dtype);
    }
    NDArray<?> retB = (NDArray<?>) jep.getValue("barray");
    if (!barray.equals(retB)) {
      throw new AssertionError("byte[] before != byte[] after");
    }
    if (barray.hashCode() != retB.hashCode()) {
      throw new AssertionError("byte[].hashCode() before != byte[].hasCode() after");
    }

    // test short[]
    NDArray<short[]> sarray = new NDArray<short[]>(new short[] {5, 3, 1, 8}, dimensions);
    jep.set("sarray", sarray);
    String s_dtype = (String) jep.getValue("sarray.dtype");
    if (!"int16".equals(s_dtype)) {
      throw new AssertionError("short ndarray set failed, dtype = " + s_dtype);
    }
    NDArray<?> retS = (NDArray<?>) jep.getValue("sarray");
    if (!sarray.equals(retS)) {
      throw new AssertionError("short[] before != short[] after");
    }
    if (sarray.hashCode() != retS.hashCode()) {
      throw new AssertionError("short[].hashCode() before != short[].hasCode() after");
    }

    // test int[]
    NDArray<int[]> iarray = new NDArray<int[]>(new int[] {547, 232, -675, 101}, dimensions);
    jep.set("iarray", iarray);
    String i_dtype = (String) jep.getValue("iarray.dtype");
    if (!"int32".equals(i_dtype)) {
      throw new AssertionError("int ndarray set failed, dtype = " + i_dtype);
    }
    NDArray<?> retI = (NDArray<?>) jep.getValue("iarray");
    if (!iarray.equals(retI)) {
      throw new AssertionError("int[] before != int[] after");
    }
    if (iarray.hashCode() != retI.hashCode()) {
      throw new AssertionError("int[].hashCode() before != int[].hasCode() after");
    }

    // test long[]
    NDArray<long[]> larray =
        new NDArray<long[]>(new long[] {62724764L, 3424637L, 3426734242L, -3429234L}, dimensions);
    jep.set("larray", larray);
    String l_dtype = (String) jep.getValue("larray.dtype");
    if (!"int64".equals(l_dtype)) {
      throw new AssertionError("long ndarray set failed, dtype = " + l_dtype);
    }
    NDArray<?> retL = (NDArray<?>) jep.getValue("larray");
    if (!larray.equals(retL)) {
      throw new AssertionError("long[] before != long[] after");
    }
    if (larray.hashCode() != retL.hashCode()) {
      throw new AssertionError("long[].hashCode() before != long[].hasCode() after");
    }

    // test float[]
    NDArray<float[]> farray =
        new NDArray<float[]>(new float[] {4.32f, -0.0001f, 349.285f, 3201.0f}, dimensions);
    jep.set("farray", farray);
    String f_dtype = (String) jep.getValue("farray.dtype");
    if (!"float32".equals(f_dtype)) {
      throw new AssertionError("float ndarray set failed, dtype = " + f_dtype);
    }
    NDArray<?> retF = (NDArray<?>) jep.getValue("farray");
    if (!farray.equals(retF)) {
      throw new AssertionError("float[] before != float[] after");
    }
    if (farray.hashCode() != retF.hashCode()) {
      throw new AssertionError("float[].hashCode() before != float[].hasCode() after");
    }

    // test double[]
    NDArray<double[]> darray =
        new NDArray<double[]>(new double[] {0.44321, 0.00015, -9.34278, 235574.53}, dimensions);
    jep.set("darray", darray);
    String d_dtype = (String) jep.getValue("darray.dtype");
    if (!"float64".equals(d_dtype)) {
      throw new AssertionError("double ndarray set failed, dtype = " + d_dtype);
    }
    NDArray<?> retD = (NDArray<?>) jep.getValue("darray");
    if (!darray.equals(retD)) {
      throw new AssertionError("double[] before != double[] after");
    }
    if (darray.hashCode() != retD.hashCode()) {
      throw new AssertionError("double[].hashCode() before != double[].hasCode() after");
    }

    // System.out.println("NDArray get/set checked out OK");
  }