数値を乗算する

説明

TensorFlowで数値同士を乗算する(掛け算する)にはmul()を使います。mul()には乗算する数と乗算される数を指定します。

サンプルプログラム [サンプルをダウンロード]

import tensorflow as tf
import multiprocessing as mp
core_num = mp.cpu_count()
config = tf.ConfigProto(
  inter_op_parallelism_threads=core_num,
  intra_op_parallelism_threads=core_num )
a = tf.constant(12)
b = tf.constant(34)
c = tf.mul(a,b)
ss= tf.Session(config=config)
print(ss.run(c))

実行結果

TensorFlowを使ったプログラムの実行結果