[codegen/tune]: added fragmentation types

This commit is contained in:
Philippe Tillet
2019-06-06 16:48:32 -07:00
parent f58c9a4d2b
commit cdf5a0d011
7 changed files with 101 additions and 35 deletions

View File

@@ -20,6 +20,6 @@ hresult = np.dot(hb.T, ha)
sess = tf.InteractiveSession()
sess.run(tf.global_variables_initializer())
result = sess.run([c], feed_dict = {locks: np.zeros(4096),
a: ha,
b: hb})
a: ha,
b: hb})
print(result - hresult)