From 15ed36d7f369a65c236a4c02504b65b513c38368 Mon Sep 17 00:00:00 2001
From: Neil Gershenfeld <gersh@cba.mit.edu>
Date: Mon, 3 Dec 2018 17:15:59 -0500
Subject: [PATCH] wip

---
 TensorFlow/tf3pi.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/TensorFlow/tf3pi.html b/TensorFlow/tf3pi.html
index 933036d..9073e3e 100644
--- a/TensorFlow/tf3pi.html
+++ b/TensorFlow/tf3pi.html
@@ -36,12 +36,12 @@ const divMulIndexSubProgram = {
   `
 }
 
-function divMulIndexSub(x, y, z) {
+function divMulIndexSub(a, b, c) {
   return tf.ENV.backend.compileAndRun(divMulIndexSubProgram, [a, b, c]);
 }
 
 function f() {
-  return tf.sum(divMulIndexSub(b, c, a)).dataSync();
+  return tf.sum(divMulIndexSub(a, b, c)).dataSync();
 }
 
 // Warmup
-- 
GitLab