protected ColumnSchema(MatrixSchema<M> matrixSchema) { super(matrixSchema.getRows(), 1, matrixSchema.type, FieldReferenceOffsetManager.buildSingleNumberBlockFrom(matrixSchema.rows, matrixSchema.type.typeMask, "Matrix")); this.root = matrixSchema; }
public static MatrixSchema buildResultSchema(MatrixSchema leftSchema, MatrixSchema rightSchema) { assert(leftSchema.type == rightSchema.type); return buildSchema(leftSchema.getRows(), rightSchema.getColumns(), leftSchema.type); }
/** * * @param graphManager * @param input _in_ Input pipe as matrix with RowSchema * @param output _out_ Output pipe in which RowSchema is converted to DecimalSchema */ public ConvertToDecimalStage(GraphManager graphManager, Pipe<RowSchema<M>> input, Pipe<DecimalSchema<M>> output) { super(graphManager, input, output); this.input = input; this.output = output; M schema = (M) input.config().schema(); this.blockSize = schema.getRows()*schema.getColumns(); this.inputType = schema.type; }
protected RowsToColumnRouteStage(GraphManager graphManager, Pipe<RowSchema<M>> rowPipeInput, Pipe<ColumnSchema<M>>[] columnPipeOutput) { super(graphManager, rowPipeInput, columnPipeOutput); M matrixSchema = (M) rowPipeInput.config().schema().rootSchema(); this.rowPipeInput = rowPipeInput; this.columnPipeOutput = columnPipeOutput; this.matrixSchema = matrixSchema; this.rowLimit = matrixSchema.getRows(); this.remainingRows = rowLimit; this.sizeOf = Pipe.sizeOf(columnPipeOutput[0], matrixSchema.columnId); if (matrixSchema.columns != columnPipeOutput.length) { throw new UnsupportedOperationException(matrixSchema.columns+" was expected to match "+columnPipeOutput.length); } }
/** * * @param graphManager * @param columnPipeInput _in_ Pipes containing ColumnSchema that will be converted to RowSchema * @param matrixPipeOutput _out_ Pipes onto which ColumnSchema will be output to RowSchema */ public ColumnsToRowsStage(GraphManager graphManager, Pipe<ColumnSchema<M>>[] columnPipeInput, Pipe<RowSchema<M>> matrixPipeOutput) { super(graphManager, columnPipeInput, matrixPipeOutput); M matrixSchema = (M) matrixPipeOutput.config().schema().rootSchema(); this.columnPipeInput = columnPipeInput; this.matrixPipeOutput = matrixPipeOutput; this.matrixSchema = matrixSchema; this.shutdownCount = columnPipeInput.length; this.typeSize = matrixSchema.typeSize; this.rowLimit = matrixSchema.getRows(); this.columnLimit = matrixSchema.getColumns(); this.remainingRows = rowLimit; assert(columnLimit==columnPipeInput.length); this.colSizeOf = Pipe.sizeOf(columnPipeInput[0], matrixSchema.columnId); this.matrixSize = Pipe.sizeOf(matrixPipeOutput, matrixSchema.rowId); }
public static <M extends MatrixSchema<M>> Pipe<RowSchema<M>> buildProductGraphRR(GraphManager gm, int targetThreadCount, Pipe<RowSchema<M>> left, Pipe<RowSchema<M>> right) { Pipe<ColumnSchema<M>>[] colResults = buildProductGraphRC(gm, left, right, targetThreadCount); ////////////////// ////////////////// MatrixSchema resultSchema2 = colResults[0].config().schema().rootSchema(); PipeConfig<RowSchema<M>> config = new PipeConfig<RowSchema<M>>(new RowSchema<M>(resultSchema2), resultSchema2.getRows()); config.hideLabels(); Pipe<RowSchema<M>> rowResults = new Pipe<RowSchema<M>>(config); ColumnsToRowsStage<M> ctr = new ColumnsToRowsStage( gm, colResults, rowResults); return rowResults; }
splitterPipes[--splitterPipesCount] = pipe, outputs, resultSchema, leftSchema, rightSchema.getRows(), rightSchema.getColumns(), rightSchema.type); return splitterPipesCount;
PipeConfig<RowSchema<M>> rowConfig = new PipeConfig<RowSchema<M>>(rs, schema.getRows()); PipeConfig<ColumnSchema<M>> columnConfig = new PipeConfig<ColumnSchema<M>>(cs, 2);
assertTrue(resultSchema.getRows()==leftRows); assertTrue(resultSchema.getColumns()==rightColumns); assertTrue(leftSchema.getRows()==leftRows); assertTrue(leftSchema.getColumns()==leftColumns); assertTrue(rightSchema.getRows()==rightRows); assertTrue(rightSchema.getColumns()==rightColumns); Pipe<RowSchema<M>> right = new Pipe<RowSchema<M>>(new PipeConfig<RowSchema<M>>(rightRowSchema, rightRows)); Pipe<RowSchema<M>> result = new Pipe<RowSchema<M>>(new PipeConfig<RowSchema<M>>(rowResultSchema, resultSchema.getRows())); //NOTE: reqires 2 or JSON will not write out !!
assertTrue(resultSchema.getRows()==leftRows); assertTrue(resultSchema.getColumns()==rightColumns); assertTrue(leftSchema.getRows()==leftRows); assertTrue(leftSchema.getColumns()==leftColumns); assertTrue(rightSchema.getRows()==rightRows); assertTrue(rightSchema.getColumns()==rightColumns); Pipe<RowSchema<M>> result = new Pipe<RowSchema<M>>(new PipeConfig<RowSchema<M>>(rowResultSchema, resultSchema.getRows())); //NOTE: reqires 2 or JSON will not write out !! Pipe<DecimalSchema<M>> result2 = new Pipe<DecimalSchema<M>>(new PipeConfig<DecimalSchema<M>>(result2Schema, resultSchema.getRows())); //NOTE: reqires 2 or JSON will not write out !!