| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, |
| * software distributed under the License is distributed on an |
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| * KIND, either express or implied. See the License for the |
| * specific language governing permissions and limitations |
| * under the License. |
| */ |
| |
| package org.apache.sysds.lops; |
| |
| |
| import org.apache.sysds.common.Types.ExecType; |
| import org.apache.sysds.runtime.instructions.InstructionUtils; |
| import org.apache.sysds.common.Types.DataType; |
| import org.apache.sysds.common.Types.OpOp1; |
| import org.apache.sysds.common.Types.ValueType; |
| |
| public class UnaryCP extends Lop { |
| private final OpOp1 operation; |
| private final int _numThreads; |
| |
| /** |
| * Constructor to perform a scalar operation |
| * |
| * @param input low-level operator 1 |
| * @param op operation type |
| * @param dt data type of the output |
| * @param vt value type of the output |
| * @param et exec type |
| * @param k parallelization degree |
| */ |
| public UnaryCP(Lop input, OpOp1 op, DataType dt, ValueType vt, ExecType et, int k) { |
| super(Lop.Type.UnaryCP, dt, vt); |
| operation = op; |
| addInput(input); |
| input.addOutput(this); |
| lps.setProperties(inputs, et); |
| _numThreads = k; |
| } |
| |
| public UnaryCP(Lop input, OpOp1 op, DataType dt, ValueType vt, ExecType et) { |
| this(input, op, dt, vt, et, 1); |
| } |
| |
| public UnaryCP(Lop input, OpOp1 op, DataType dt, ValueType vt, int k) { |
| this(input, op, dt, vt, ExecType.CP, k); |
| } |
| |
| public UnaryCP(Lop input, OpOp1 op, DataType dt, ValueType vt) { |
| this(input, op, dt, vt, ExecType.CP, 1); |
| } |
| |
| @Override |
| public String toString() { |
| return "Operation: " + getInstructions("", ""); |
| } |
| |
| public String getOpCode() { |
| return operation.toString(); |
| } |
| |
| @Override |
| public String getInstructions(String input, String output) { |
| String ret = InstructionUtils.concatOperands( |
| getExecType().name(), getOpCode(), |
| getInputs().get(0).prepScalarInputOperand(getExecType()), |
| prepOutputOperand(output)); |
| if (getExecType() == ExecType.CP || getExecType() == ExecType.FED) |
| ret = InstructionUtils.concatOperands(ret, Integer.toString(_numThreads)); |
| return ret; |
| } |
| } |