From aaa395fa44257ee990bdbe3370c2035418f8bbfc Mon Sep 17 00:00:00 2001
From: Logan Weber <weberlo@cs.washington.edu>
Date: Fri, 26 Jun 2020 18:11:30 -0700
Subject: [PATCH] clkjsdflkjlfsjdflkj

---
 python/tvm/relay/analysis/analysis.py | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/python/tvm/relay/analysis/analysis.py b/python/tvm/relay/analysis/analysis.py
index 7004ec614171..9e7126b67731 100644
--- a/python/tvm/relay/analysis/analysis.py
+++ b/python/tvm/relay/analysis/analysis.py
@@ -244,12 +244,6 @@ def visit(self, expr):
         ExprVisitor.visit(self, expr)
 
 
-#def collect_unquantized_ops(quantized_mod, quantized_dtypes):
-#    op_collector = UnquantizedOpCollector(quantized_dtypes)
-#    op_collector.visit(quantized_mod['main'])
-#    return op_collector.unquantized_ops
-
-
 def all_dtypes(expr):
     """TODO
 
@@ -262,8 +256,6 @@ def all_dtypes(expr):
     ret : Set[String]
         Set of data types used in the expression
     """
-    # TODO move visitor to here and eventually move to C++
-    # ret = _ffi_api.search_fc_transpose(expr)
     dtype_collector = ExprDtypeCollector()
     dtype_collector.visit(expr)
     return dtype_collector.ty_visitor.dtypes