aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/quantization
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2016-10-12 10:26:07 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-10-12 11:32:50 -0700
commite443fe0f0cac70ec4f6d24df1ecc59135b5df2fe (patch)
tree2fb036ed3bcf555c5091b3b3ac339badb829d394 /tensorflow/contrib/quantization
parentdd2c7678c5f8135144ba7b94f99b844d468e9ffc (diff)
Rename gemm_wrapper.h to soc_interface.h
Change: 135940182
Diffstat (limited to 'tensorflow/contrib/quantization')
-rw-r--r--tensorflow/contrib/quantization/kernels/hexagon/quantized_matmul_op_for_hexagon_test.cc11
1 files changed, 5 insertions, 6 deletions
diff --git a/tensorflow/contrib/quantization/kernels/hexagon/quantized_matmul_op_for_hexagon_test.cc b/tensorflow/contrib/quantization/kernels/hexagon/quantized_matmul_op_for_hexagon_test.cc
index 3d139fbe0a..f5b7f482e2 100644
--- a/tensorflow/contrib/quantization/kernels/hexagon/quantized_matmul_op_for_hexagon_test.cc
+++ b/tensorflow/contrib/quantization/kernels/hexagon/quantized_matmul_op_for_hexagon_test.cc
@@ -30,7 +30,7 @@ limitations under the License.
#include "tensorflow/core/platform/test.h"
#ifdef USE_HEXAGON_LIBS
-#include "tensorflow/core/platform/hexagon/gemm_wrapper.h"
+#include "tensorflow/core/platform/hexagon/soc_interface.h"
#include "tensorflow/core/platform/profile_utils/cpu_utils.h"
#endif
@@ -42,9 +42,9 @@ class QuantizedMatMulOpForHexagonTest : public OpsTestBase {
#ifdef USE_HEXAGON_LIBS
profile_utils::CpuUtils::EnableClockCycleProfiling(true);
LOG(INFO) << "Hexagon libs are linked (wrapper version = "
- << hexagon_gemm_wrapper_GetWrapperVersion()
+ << soc_interface_GetWrapperVersion()
<< ", hexagon binary version = "
- << hexagon_gemm_wrapper_GetHexagonBinaryVersion() << ")";
+ << soc_interface_GetHexagonBinaryVersion() << ")";
LOG(INFO) << "Cpu frequency = "
<< profile_utils::CpuUtils::GetCycleCounterFrequency();
#else
@@ -58,15 +58,14 @@ class QuantizedMatMulOpForHexagonTest : public OpsTestBase {
TEST_F(QuantizedMatMulOpForHexagonTest, EvaluateSharedLibOverhead) {
const uint64 overhead_shared_lib_start =
profile_utils::CpuUtils::GetCurrentClockCycle();
- const int wrapper_version = hexagon_gemm_wrapper_GetWrapperVersion();
+ const int wrapper_version = soc_interface_GetWrapperVersion();
const uint64 overhead_shared_lib_end =
profile_utils::CpuUtils::GetCurrentClockCycle();
const uint64 overhead_shared_lib_diff =
(overhead_shared_lib_end - overhead_shared_lib_start);
const uint64 overhead_hexagon_rpc_start =
profile_utils::CpuUtils::GetCurrentClockCycle();
- const int hexagon_binary_version =
- hexagon_gemm_wrapper_GetHexagonBinaryVersion();
+ const int hexagon_binary_version = soc_interface_GetHexagonBinaryVersion();
const uint64 overhead_hexagon_rpc_end =
profile_utils::CpuUtils::GetCurrentClockCycle();
const uint64 overhead_hexagon_rpc_diff =