Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/torch7.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhou Mo <cdluminate@gmail.com>2017-07-30 15:38:00 +0300
committerSoumith Chintala <soumith@gmail.com>2017-08-25 21:25:17 +0300
commitf4b408dccf1c333e6c2972abcb80faf902b9f43c (patch)
tree0702a14e80acaeeac59220158f1242034e59e523
parent9d8f9087695e435e0829f466a69343d1995c5c3b (diff)
Fix typos.
-rw-r--r--lib/TH/CMakeLists.txt2
-rw-r--r--lib/TH/vector/VSX.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/TH/CMakeLists.txt b/lib/TH/CMakeLists.txt
index c9be21a..5a2c5fb 100644
--- a/lib/TH/CMakeLists.txt
+++ b/lib/TH/CMakeLists.txt
@@ -154,7 +154,7 @@ IF(C_SSE3_FOUND)
MESSAGE(STATUS "SSE3 Found")
SET(CMAKE_C_FLAGS "${C_SSE3_FLAGS} -DUSE_SSE3 ${CMAKE_C_FLAGS}")
ENDIF(C_SSE3_FOUND)
-# we dont set -mavx and -mavx2 flags globally, but only for specific files
+# we don't set -mavx and -mavx2 flags globally, but only for specific files
# however, we want to enable the AVX codepaths, so we still need to
# add USE_AVX and USE_AVX2 macro defines
IF(C_AVX_FOUND)
diff --git a/lib/TH/vector/VSX.c b/lib/TH/vector/VSX.c
index ce5bb38..f01718c 100644
--- a/lib/TH/vector/VSX.c
+++ b/lib/TH/vector/VSX.c
@@ -1345,7 +1345,7 @@ static void THFloatVector_divs_VSX(float *y, const float*x, const float c, const
// TODO
//
//
-// Finished runnning all tests. All tests PASSED.
+// Finished running all tests. All tests PASSED.
//
//------------------------------------------------
#ifdef RUN_VSX_TESTS
@@ -2509,7 +2509,7 @@ int main()
- printf("Finished runnning all tests. All tests PASSED.\n");
+ printf("Finished running all tests. All tests PASSED.\n");
return 0;
}