Sliced3DConfiguration.java

  1. package neureka.ndim.config.types.sliced;

  2. import neureka.ndim.config.types.D3C;

  3. public class Sliced3DConfiguration extends D3C //:= IMMUTABLE
  4. {
  5.     /**
  6.      *  The shape of the NDArray.
  7.      */
  8.     protected final int _shape1;
  9.     protected final int _shape2;
  10.     protected final int _shape3;
  11.     /**
  12.      *  The translation from a shape index (indices) to the index of the underlying data array.
  13.      */
  14.     private final int _stride1;
  15.     private final int _stride2;
  16.     private final int _stride3;
  17.     /**
  18.      *  The mapping of idx array.
  19.      */
  20.     private final int _indicesMap1;
  21.     private final int _indicesMap2; // Maps index integer to array like translation. Used to avoid distortion when slicing!
  22.     private final int _indicesMap3;
  23.     /**
  24.      *  Produces the steps of a tensor subset / slice
  25.      */
  26.     private final int _spread1;
  27.     private final int _spread2;
  28.     private final int _spread3;
  29.     /**
  30.      *  Defines the position of a subset / slice tensor within its parent!
  31.      */
  32.     private final int _offset1;
  33.     private final int _offset2;
  34.     private final int _offset3;


  35.     protected Sliced3DConfiguration(
  36.             int[] shape,
  37.             int[] strides,
  38.             int[] indicesMap,
  39.             int[] spread,
  40.             int[] offset
  41.     ) {
  42.         _shape1 = shape[ 0 ];
  43.         _shape2 = shape[ 1 ];
  44.         _shape3 = shape[ 2 ];
  45.         _stride1 = strides[ 0 ];
  46.         _stride2 = strides[ 1 ];
  47.         _stride3 = strides[ 2 ];
  48.         _indicesMap1 = indicesMap[ 0 ];
  49.         _indicesMap2 = indicesMap[ 1 ];
  50.         _indicesMap3 = indicesMap[ 2 ];
  51.         _spread1 = spread[ 0 ];
  52.         _spread2 = spread[ 1 ];
  53.         _spread3 = spread[ 2 ];
  54.         _offset1 = offset[ 0 ];
  55.         _offset2 = offset[ 1 ];
  56.         _offset3 = offset[ 2 ];
  57.     }

  58.     public static Sliced3DConfiguration construct(
  59.             int[] shape,
  60.             int[] strides,
  61.             int[] indicesMap,
  62.             int[] spread,
  63.             int[] offset
  64.     ) {
  65.         return _cached( new Sliced3DConfiguration(shape, strides, indicesMap, spread, offset) );
  66.     }

  67.     /** {@inheritDoc} */
  68.     @Override public final int rank() { return 3; }

  69.     /** {@inheritDoc} */
  70.     @Override public final int[] shape() { return new int[]{ _shape1, _shape2, _shape3 }; }

  71.     /** {@inheritDoc} */
  72.     @Override public final int shape( int i ) { return ( i==0 ? _shape1 : ( i==1 ? _shape2 : _shape3 ) ); }

  73.     /** {@inheritDoc} */
  74.     @Override public final int[] indicesMap() { return new int[]{ _indicesMap1, _indicesMap2, _indicesMap3 }; }

  75.     /** {@inheritDoc} */
  76.     @Override public final int indicesMap( int i ) { return ( i == 0 ? _indicesMap1 : ( i==1 ? _indicesMap2 : _indicesMap3 ) ); }

  77.     /** {@inheritDoc} */
  78.     @Override
  79.     public final int[] strides() { return new int[]{_stride1, _stride2, _stride3}; }

  80.     /** {@inheritDoc} */
  81.     @Override public final int strides(int i ) { return ( i == 0 ? _stride1 : ( i == 1 ? _stride2 : _stride3) ); }

  82.     /** {@inheritDoc} */
  83.     @Override public final int[] spread() { return new int[]{ _spread1, _spread2, _spread3 }; }

  84.     /** {@inheritDoc} */
  85.     @Override public final int spread( int i ) { return ( i == 0 ? _spread1 : ( i == 1 ? _spread2 : _spread3 ) ); }

  86.     /** {@inheritDoc} */
  87.     @Override public final int[] offset() { return new int[]{ _offset1, _offset2, _offset3 }; }

  88.     /** {@inheritDoc} */
  89.     @Override public final int offset( int i ) { return ( i == 0 ? _offset1 : ( i == 1 ? _offset2 : _offset3 ) ); }

  90.     /** {@inheritDoc} */
  91.     @Override
  92.     public final int indexOfIndex( int index ) {
  93.         int indices1, indices2, indices3;
  94.         indices1 = index / _indicesMap1;
  95.         index %= _indicesMap1;
  96.         indices2 = index / _indicesMap2;
  97.         index %= _indicesMap2;
  98.         indices3 = index / _indicesMap3;
  99.         return (indices1 * _spread1 + _offset1) * _stride1 +
  100.                 (indices2 * _spread2 + _offset2) * _stride2 +
  101.                 (indices3 * _spread3 + _offset3) * _stride3;
  102.     }

  103.     /** {@inheritDoc} */
  104.     @Override
  105.     public final int[] indicesOfIndex( int index ) {
  106.         int indices1, indices2, indices3;
  107.         indices1 = index / _indicesMap1;
  108.         index %= _indicesMap1;
  109.         indices2 = index / _indicesMap2;
  110.         index %= _indicesMap2;
  111.         indices3 = index / _indicesMap3;
  112.         return new int[]{indices1, indices2, indices3};
  113.     }

  114.     /** {@inheritDoc} */
  115.     @Override
  116.     public final int indexOfIndices(int[] indices) {
  117.         return (indices[ 0 ] * _spread1 + _offset1) * _stride1 +
  118.                     (indices[ 1 ] * _spread2 + _offset2) * _stride2 +
  119.                         (indices[ 2 ] * _spread3 + _offset3) * _stride3;
  120.     }

  121.     /** {@inheritDoc} */
  122.     @Override
  123.     public final int indexOfIndices(int d1, int d2, int d3 ) {
  124.         return (d1 * _spread1 + _offset1) * _stride1 +
  125.                 (d2 * _spread2 + _offset2) * _stride2 +
  126.                 (d3 * _spread3 + _offset3) * _stride3;
  127.     }

  128. }