this.learningType = TrainFlatNetworkOpenCL.LEARN_MANHATTAN;
this.learningRate = learningRate;
final Map<String, String> options = getOptions("LEARN_MANHATTAN");
this.kernel = new KernelNetworkTrain(this.profile.getDevice(),
this.network, this.training, 1);
this.kernel.compile(options, this.profile, this.network);
this.kernel.getTempDataArray()[0] = (float) learningRate;
}