Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CXX/LD -o .build_release/test/test_all.testbin src/caffe/test/test_caffe_main.cpp
- .build_release/tools/caffe
- caffe: command line brew
- usage: caffe <command> <args>
- commands:
- train train or finetune a model
- test score a model
- device_query show GPU diagnostic information
- time benchmark model execution time
- Flags from tools/caffe.cpp:
- -gpu (Run in GPU mode on given device ID.) type: int32 default: -1
- -iterations (The number of iterations to run.) type: int32 default: 50
- -model (The model definition protocol buffer text file..) type: string
- default: ""
- -snapshot (Optional; the snapshot solver state to resume training.)
- type: string default: ""
- -solver (The solver definition protocol buffer text file.) type: string
- default: ""
- -weights (Optional; the pretrained weights to initialize finetuning. Cannot
- be set simultaneously with snapshot.) type: string default: ""
- .build_release/test/test_all.testbin 0 --gtest_shuffle
- Cuda number of devices: 0
- Setting to use device 0
- Current device id: 0
- Note: Randomizing tests' orders with a seed of 29074 .
- [==========] Running 1356 tests from 214 test cases.
- [----------] Global test environment set-up.
- [----------] 3 tests from FilterLayerTest/1, where TypeParam = caffe::CPUDevice<double>
- [ RUN ] FilterLayerTest/1.TestForward
- E0712 02:41:24.558691 20345 common.cpp:93] Cannot create Cublas handle. Cublas won't be available.
- E0712 02:41:24.568986 20345 common.cpp:100] Cannot create Curand generator. Curand won't be available.
- E0712 02:41:24.569087 20345 common.cpp:120] Curand not available. Skipping setting the curand seed.
- [ OK ] FilterLayerTest/1.TestForward (21 ms)
- [ RUN ] FilterLayerTest/1.TestReshape
- [ OK ] FilterLayerTest/1.TestReshape (0 ms)
- [ RUN ] FilterLayerTest/1.TestGradient
- [ OK ] FilterLayerTest/1.TestGradient (291 ms)
- [----------] 3 tests from FilterLayerTest/1 (312 ms total)
- [----------] 1 test from SolverTest/0, where TypeParam = caffe::CPUDevice<float>
- [ RUN ] SolverTest/0.TestInitTrainTestNets
- [ OK ] SolverTest/0.TestInitTrainTestNets (4 ms)
- [----------] 1 test from SolverTest/0 (4 ms total)
- [----------] 11 tests from PoolingLayerTest/3, where TypeParam = caffe::GPUDevice<double>
- [ RUN ] PoolingLayerTest/3.TestForwardMaxPadded
- F0712 02:41:24.864735 20345 syncedmem.cpp:57] Check failed: error == cudaSuccess (35 vs. 0) CUDA driver version is insufficient for CUDA runtime version
- *** Check failure stack trace: ***
- @ 0x2ae03ce67daa (unknown)
- @ 0x2ae03ce67ce4 (unknown)
- @ 0x2ae03ce676e6 (unknown)
- @ 0x2ae03ce6a687 (unknown)
- @ 0x2ae03e76f36c caffe::SyncedMemory::gpu_data()
- @ 0x2ae03e7c8de2 caffe::Blob<>::gpu_data()
- @ 0x2ae03e8808a5 caffe::PoolingLayer<>::Forward_gpu()
- @ 0x4530a8 caffe::Layer<>::Forward()
- @ 0x5fedad caffe::PoolingLayerTest_TestForwardMaxPadded_Test<>::TestBody()
- @ 0x758ac3 testing::internal::HandleExceptionsInMethodIfSupported<>()
- @ 0x74f707 testing::Test::Run()
- @ 0x74f7ae testing::TestInfo::Run()
- @ 0x74f8b5 testing::TestCase::Run()
- @ 0x752bf8 testing::internal::UnitTestImpl::RunAllTests()
- @ 0x752e87 testing::UnitTest::Run()
- @ 0x44a16a main
- @ 0x2ae03f47bec5 (unknown)
- @ 0x44fc59 (unknown)
- @ (nil) (unknown)
- make: *** [runtest] Aborted (core dumped)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement