-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/change_op_creation' into feature/uniform_random_op
- Loading branch information
Showing
20 changed files
with
141 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
add_python_test(test_swig_api | ||
testArguments.py testGradientMachine.py testMatrix.py testVector.py testTrain.py testTrainer.py) | ||
py_test(testTrain SRCS testTrain.py) | ||
py_test(testMatrix SRCS testMatrix.py) | ||
py_test(testVector SRCS testVector.py) | ||
py_test(testTrainer SRCS testTrainer.py) | ||
py_test(testArguments SRCS testArguments.py) | ||
py_test(testGradientMachine SRCS testGradientMachine.py) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
add_python_test(test_framework | ||
test_protobuf.py | ||
test_scope.py | ||
test_operator.py | ||
test_default_scope_funcs.py | ||
test_net.py | ||
test_tensor.py | ||
test_fc_op.py | ||
test_add_two_op.py | ||
test_sgd_op.py | ||
test_mul_op.py | ||
test_mean_op.py | ||
test_sigmoid_op.py | ||
test_softmax_op.py | ||
test_rowwise_add_op.py | ||
gradient_checker.py | ||
test_uniform_random_op.py) | ||
py_test(test_net SRCS test_net.py) | ||
|
||
py_test(test_fc_op SRCS test_fc_op.py) | ||
py_test(test_scope SRCS test_scope.py) | ||
|
||
py_test(test_tensor SRCS test_tensor.py) | ||
py_test(test_mul_op SRCS test_mul_op.py) | ||
|
||
py_test(test_mean_op SRCS test_mean_op.py) | ||
|
||
py_test(test_protobuf SRCS test_protobuf.py) | ||
|
||
py_test(test_add_two_op SRCS test_add_two_op.py) | ||
py_test(test_sigmoid_op SRCS test_sigmoid_op.py) | ||
py_test(test_softmax_op SRCS test_softmax_op.py) | ||
|
||
py_test(gradient_checker SRCS gradient_checker.py) | ||
|
||
py_test(test_rowwise_add_op SRCS test_rowwise_add_op.py) | ||
|
||
py_test(test_default_scope_funcs SRCS test_default_scope_funcs.py) | ||
py_test(test_operator SRCS test_operator.py) | ||
py_test(test_uniform_random_op SRCS test_uniform_random_op.py) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
if (NOT APPLE) | ||
# The Mac OS X backend will not be able to function correctly if Python is | ||
# not installed as a framework. | ||
add_python_test(test_ploter test_ploter.py) | ||
py_test(test_ploter SRCS test_ploter.py) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
add_python_test(reader_tests creator_test.py decorator_test.py) | ||
py_test(creator_test SRCS creator_test.py) | ||
py_test(decorator_test SRCS decorator_test.py) |
Oops, something went wrong.