blob: 8ec9ebb138f5c6bad6363efba91b18a65850b2d3 [file] [log] [blame]
#-------------------------------------------------------------
#
# 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.
#
#-------------------------------------------------------------
# junit test class: org.apache.sysds.test.integration.functions.binary.scalar.AdditionTest.java
$$readhelper$$
$$intintvardeclaration$$
IntIntComputation = $$intintop1$$ + $$intintop2$$;
IntIntComputationHelper = IntIntComputation * Helper;
write(IntIntComputationHelper, "$$outdir$$int_int", format="text");
$$intdoublevardeclaration$$
IntDoubleComputation = $$intdoubleop1$$ + $$intdoubleop2$$;
IntDoubleComputationHelper = IntDoubleComputation * Helper;
write(IntDoubleComputationHelper, "$$outdir$$int_double", format="text");
$$doubledoublevardeclaration$$
DoubleDoubleComputation = $$doubledoubleop1$$ + $$doubledoubleop2$$;
DoubleDoubleComputationHelper = DoubleDoubleComputation * Helper;
write(DoubleDoubleComputationHelper, "$$outdir$$double_double", format="text");
$$doubleintvardeclaration$$
DoubleIntComputation = $$doubleintop1$$ + $$doubleintop2$$;
DoubleIntComputationHelper = DoubleIntComputation * Helper;
write(DoubleIntComputationHelper, "$$outdir$$double_int", format="text");