├── .gitattributes ├── Debug ├── SimpleDeepLearningFramework.dll ├── SimpleDeepLearningFramework.exp ├── SimpleDeepLearningFramework.ilk ├── SimpleDeepLearningFramework.lib └── SimpleDeepLearningFramework.pdb ├── SdlfSimpleFullConnectedExample ├── ReadMe.txt ├── SdlfSimpleFullConnectedExample.cpp ├── SdlfSimpleFullConnectedExample.vcxproj ├── SdlfSimpleFullConnectedExample.vcxproj.filters ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── x64 │ ├── Debug │ ├── MnistFileManager.obj │ ├── SdlfSimp.010DB441.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SdlfSimpleFullConnectedExample.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── SdlfSimpleFullConnectedExample.log │ ├── SdlfSimpleFullConnectedExample.obj │ ├── SdlfSimpleFullConnectedExample.pch │ ├── stdafx.obj │ ├── vc140.idb │ └── vc140.pdb │ └── Release │ ├── MnistFileManager.obj │ ├── SdlfSimp.010DB441.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── SdlfSimpleFullConnectedExample.lastbuildstate │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog │ ├── SdlfSimpleFullConnectedExample.log │ ├── SdlfSimpleFullConnectedExample.obj │ ├── SdlfSimpleFullConnectedExample.pch │ ├── stdafx.obj │ └── vc140.pdb ├── SdlfTrainExample ├── Common.h ├── MnistFileManager.cpp ├── MnistFileManager.h ├── ReadMe.txt ├── SdlfTrainExample.cpp ├── SdlfTrainExample.vcxproj ├── SdlfTrainExample.vcxproj.filters ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── x64 │ ├── Debug │ ├── MnistFileManager.obj │ ├── SdlfTrainExample.log │ ├── SdlfTrainExample.obj │ ├── SdlfTrainExample.pch │ ├── SdlfTrainExample.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SdlfTrainExample.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── stdafx.obj │ ├── vc140.idb │ └── vc140.pdb │ └── Release │ ├── MnistFileManager.obj │ ├── SdlfTrainExample.log │ ├── SdlfTrainExample.obj │ ├── SdlfTrainExample.pch │ ├── SdlfTrainExample.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── SdlfTrainExample.lastbuildstate │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog │ ├── stdafx.obj │ └── vc140.pdb ├── SimpleDeepLearningFramework.VC.db ├── SimpleDeepLearningFramework.sln ├── SimpleDeepLearningFramework ├── Common.h ├── Debug │ ├── SdlfCalculator.obj │ ├── SdlfCalculatorCPU.obj │ ├── SdlfFunction.obj │ ├── SdlfLayer.obj │ ├── SdlfModel.obj │ ├── SimpleDe.20416C6E.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SimpleDeepLearningFramework.lastbuildstate │ │ ├── SimpleDeepLearningFramework.write.1u.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── SimpleDeepLearningFramework.log │ ├── vc140.idb │ └── vc140.pdb ├── Sdlf.h ├── SdlfCalculator.cpp ├── SdlfCalculator.h ├── SdlfCalculatorCPU.cpp ├── SdlfCalculatorCPU.h ├── SdlfFunction.cpp ├── SdlfFunction.h ├── SdlfLayer.cpp ├── SdlfLayer.h ├── SdlfModel.cpp ├── SdlfModel.h ├── SimpleDeepLearningFramework.vcxproj ├── SimpleDeepLearningFramework.vcxproj.filters └── x64 │ ├── Debug │ ├── SdlfCalculator.obj │ ├── SdlfCalculatorCPU.obj │ ├── SdlfFunction.obj │ ├── SdlfLayer.obj │ ├── SdlfModel.obj │ ├── SimpleDe.20416C6E.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SimpleDeepLearningFramework.lastbuildstate │ │ ├── SimpleDeepLearningFramework.write.1u.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── SimpleDeepLearningFramework.log │ ├── sdlfcalculatorcpu.obj.enc │ ├── vc140.idb │ └── vc140.pdb │ └── Release │ ├── SdlfCalculator.obj │ ├── SdlfCalculatorCPU.obj │ ├── SdlfFunction.obj │ ├── SdlfLayer.obj │ ├── SdlfModel.obj │ ├── SimpleDe.20416C6E.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── SimpleDeepLearningFramework.lastbuildstate │ ├── SimpleDeepLearningFramework.write.1u.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog │ ├── SimpleDeepLearningFramework.log │ └── vc140.pdb ├── ipch ├── SDLFSIMPLEFULLCONNECTEDEXAMPLE-594519fc │ ├── SDLFSIMPLEFULLCONNECTEDEXAMPLE-195d94ef.ipch │ └── SDLFSIMPLEFULLCONNECTEDEXAMPLE-7273a2e9.ipch └── SDLFTRAINEXAMPLE-d1dbd518 │ └── SDLFTRAINEXAMPLE-ca3ea6bd.ipch ├── x64 ├── Debug │ ├── SdlfSimpleFullConnectedExample.exe │ ├── SdlfSimpleFullConnectedExample.ilk │ ├── SdlfSimpleFullConnectedExample.pdb │ ├── SdlfTrainExample.exe │ ├── SdlfTrainExample.ilk │ ├── SdlfTrainExample.pdb │ ├── SimpleDeepLearningFramework.dll │ ├── SimpleDeepLearningFramework.exp │ ├── SimpleDeepLearningFramework.ilk │ ├── SimpleDeepLearningFramework.lib │ ├── SimpleDeepLearningFramework.pdb │ ├── t10k-images.idx3-ubyte │ ├── t10k-labels.idx1-ubyte │ ├── train-images.idx3-ubyte │ └── train-labels.idx1-ubyte └── Release │ ├── SdlfSimpleFullConnectedExample.exe │ ├── SdlfSimpleFullConnectedExample.iobj │ ├── SdlfSimpleFullConnectedExample.ipdb │ ├── SdlfSimpleFullConnectedExample.pdb │ ├── SdlfTrainExample.exe │ ├── SdlfTrainExample.iobj │ ├── SdlfTrainExample.ipdb │ ├── SdlfTrainExample.pdb │ ├── SimpleDeepLearningFramework.dll │ ├── SimpleDeepLearningFramework.exp │ ├── SimpleDeepLearningFramework.iobj │ ├── SimpleDeepLearningFramework.ipdb │ ├── SimpleDeepLearningFramework.lib │ ├── SimpleDeepLearningFramework.pdb │ ├── t10k-images.idx3-ubyte │ ├── t10k-labels.idx1-ubyte │ ├── train-images.idx3-ubyte │ └── train-labels.idx1-ubyte └── 说明文档.doc /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /Debug/SimpleDeepLearningFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/Debug/SimpleDeepLearningFramework.dll -------------------------------------------------------------------------------- /Debug/SimpleDeepLearningFramework.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/Debug/SimpleDeepLearningFramework.exp -------------------------------------------------------------------------------- /Debug/SimpleDeepLearningFramework.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/Debug/SimpleDeepLearningFramework.ilk -------------------------------------------------------------------------------- /Debug/SimpleDeepLearningFramework.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/Debug/SimpleDeepLearningFramework.lib -------------------------------------------------------------------------------- /Debug/SimpleDeepLearningFramework.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/Debug/SimpleDeepLearningFramework.pdb -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/ReadMe.txt: -------------------------------------------------------------------------------- 1 | ======================================================================== 2 | 控制台应用程序:SdlfSimpleFullConnectedExample 项目概述 3 | ======================================================================== 4 | 5 | 应用程序向导已为您创建了此 SdlfSimpleFullConnectedExample 应用程序。 6 | 7 | 本文件概要介绍组成 SdlfSimpleFullConnectedExample 应用程序的每个文件的内容。 8 | 9 | 10 | SdlfSimpleFullConnectedExample.vcxproj 11 | 这是使用应用程序向导生成的 VC++ 项目的主项目文件,其中包含生成该文件的 Visual C++ 的版本信息,以及有关使用应用程序向导选择的平台、配置和项目功能的信息。 12 | 13 | SdlfSimpleFullConnectedExample.vcxproj.filters 14 | 这是使用“应用程序向导”生成的 VC++ 项目筛选器文件。它包含有关项目文件与筛选器之间的关联信息。在 IDE 中,通过这种关联,在特定节点下以分组形式显示具有相似扩展名的文件。例如,“.cpp”文件与“源文件”筛选器关联。 15 | 16 | SdlfSimpleFullConnectedExample.cpp 17 | 这是主应用程序源文件。 18 | 19 | ///////////////////////////////////////////////////////////////////////////// 20 | 其他标准文件: 21 | 22 | StdAfx.h, StdAfx.cpp 23 | 这些文件用于生成名为 SdlfSimpleFullConnectedExample.pch 的预编译头 (PCH) 文件和名为 StdAfx.obj 的预编译类型文件。 24 | 25 | ///////////////////////////////////////////////////////////////////////////// 26 | 其他注释: 27 | 28 | 应用程序向导使用“TODO:”注释来指示应添加或自定义的源代码部分。 29 | 30 | ///////////////////////////////////////////////////////////////////////////// 31 | -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/SdlfSimpleFullConnectedExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/SdlfSimpleFullConnectedExample.cpp -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/SdlfSimpleFullConnectedExample.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | Debug 14 | x64 15 | 16 | 17 | Release 18 | x64 19 | 20 | 21 | 22 | {010DB441-31C1-4AE3-BBD5-D262AA972868} 23 | Win32Proj 24 | SdlfSimpleFullConnectedExample 25 | 8.1 26 | 27 | 28 | 29 | Application 30 | true 31 | v140 32 | Unicode 33 | 34 | 35 | Application 36 | false 37 | v140 38 | true 39 | Unicode 40 | 41 | 42 | Application 43 | true 44 | v140 45 | Unicode 46 | 47 | 48 | Application 49 | false 50 | v140 51 | true 52 | Unicode 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | true 74 | 75 | 76 | true 77 | 78 | 79 | false 80 | 81 | 82 | false 83 | 84 | 85 | 86 | Use 87 | Level3 88 | Disabled 89 | WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) 90 | true 91 | 92 | 93 | Console 94 | true 95 | 96 | 97 | 98 | 99 | NotUsing 100 | Level3 101 | Disabled 102 | _DEBUG;_CONSOLE;%(PreprocessorDefinitions) 103 | true 104 | 105 | 106 | Console 107 | true 108 | ../x64/debug/ 109 | 110 | 111 | 112 | 113 | Level3 114 | Use 115 | MaxSpeed 116 | true 117 | true 118 | WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 119 | true 120 | 121 | 122 | Console 123 | true 124 | true 125 | true 126 | 127 | 128 | 129 | 130 | Level3 131 | NotUsing 132 | MaxSpeed 133 | true 134 | true 135 | NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 136 | true 137 | 138 | 139 | Console 140 | true 141 | true 142 | true 143 | ../x64/release/ 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | Create 160 | Create 161 | Create 162 | Create 163 | 164 | 165 | 166 | 167 | 168 | -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/SdlfSimpleFullConnectedExample.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 头文件 23 | 24 | 25 | 头文件 26 | 27 | 28 | 头文件 29 | 30 | 31 | 头文件 32 | 33 | 34 | 35 | 36 | 源文件 37 | 38 | 39 | 源文件 40 | 41 | 42 | 源文件 43 | 44 | 45 | -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/stdafx.cpp -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/stdafx.h -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/targetver.h -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Debug/MnistFileManager.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Debug/MnistFileManager.obj -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Debug/SdlfSimp.010DB441.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Debug/SdlfSimp.010DB441.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Debug/SdlfSimp.010DB441.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Debug/SdlfSimp.010DB441.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Debug/SdlfSimp.010DB441.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Debug/SdlfSimp.010DB441.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Debug/SdlfSimp.010DB441.tlog/SdlfSimpleFullConnectedExample.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1 2 | Debug|x64|E:\Work\SimpleDeepLearningFramework\| 3 | -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Debug/SdlfSimp.010DB441.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Debug/SdlfSimp.010DB441.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Debug/SdlfSimp.010DB441.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Debug/SdlfSimp.010DB441.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Debug/SdlfSimp.010DB441.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Debug/SdlfSimp.010DB441.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Debug/SdlfSimpleFullConnectedExample.log: -------------------------------------------------------------------------------- 1 |  SdlfSimpleFullConnectedExample.cpp 2 | e:\work\simpledeeplearningframework\sdlfsimplefullconnectedexample\sdlfsimplefullconnectedexample.cpp(81): warning C4244: “参数”: 从“time_t”转换到“unsigned int”,可能丢失数据 3 | SdlfSimpleFullConnectedExample.vcxproj -> E:\Work\SimpleDeepLearningFramework\x64\Debug\SdlfSimpleFullConnectedExample.exe 4 | SdlfSimpleFullConnectedExample.vcxproj -> E:\Work\SimpleDeepLearningFramework\x64\Debug\SdlfSimpleFullConnectedExample.pdb (Full PDB) 5 | -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Debug/SdlfSimpleFullConnectedExample.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Debug/SdlfSimpleFullConnectedExample.obj -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Debug/SdlfSimpleFullConnectedExample.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Debug/SdlfSimpleFullConnectedExample.pch -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Debug/stdafx.obj -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Debug/vc140.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Debug/vc140.idb -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Debug/vc140.pdb -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Release/MnistFileManager.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Release/MnistFileManager.obj -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Release/SdlfSimp.010DB441.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Release/SdlfSimp.010DB441.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Release/SdlfSimp.010DB441.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Release/SdlfSimp.010DB441.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Release/SdlfSimp.010DB441.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Release/SdlfSimp.010DB441.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Release/SdlfSimp.010DB441.tlog/SdlfSimpleFullConnectedExample.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1 2 | Release|x64|E:\Work\SimpleDeepLearningFramework\| 3 | -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Release/SdlfSimp.010DB441.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Release/SdlfSimp.010DB441.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Release/SdlfSimp.010DB441.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Release/SdlfSimp.010DB441.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Release/SdlfSimp.010DB441.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Release/SdlfSimp.010DB441.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Release/SdlfSimpleFullConnectedExample.log: -------------------------------------------------------------------------------- 1 |  SdlfSimpleFullConnectedExample.cpp 2 | SdlfSimpleFullConnectedExample.cpp(83): warning C4244: “参数”: 从“time_t”转换到“unsigned int”,可能丢失数据 3 | 正在生成代码 4 | 3 of 214 functions ( 1.4%) were compiled, the rest were copied from previous compilation. 5 | 0 functions were new in current compilation 6 | 0 functions had inline decision re-evaluated but remain unchanged 7 | 已完成代码的生成 8 | SdlfSimpleFullConnectedExample.vcxproj -> E:\Work\SimpleDeepLearningFramework\x64\Release\SdlfSimpleFullConnectedExample.exe 9 | SdlfSimpleFullConnectedExample.vcxproj -> E:\Work\SimpleDeepLearningFramework\x64\Release\SdlfSimpleFullConnectedExample.pdb (Full PDB) 10 | -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Release/SdlfSimpleFullConnectedExample.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Release/SdlfSimpleFullConnectedExample.obj -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Release/SdlfSimpleFullConnectedExample.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Release/SdlfSimpleFullConnectedExample.pch -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Release/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Release/stdafx.obj -------------------------------------------------------------------------------- /SdlfSimpleFullConnectedExample/x64/Release/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfSimpleFullConnectedExample/x64/Release/vc140.pdb -------------------------------------------------------------------------------- /SdlfTrainExample/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/Common.h -------------------------------------------------------------------------------- /SdlfTrainExample/MnistFileManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/MnistFileManager.cpp -------------------------------------------------------------------------------- /SdlfTrainExample/MnistFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/MnistFileManager.h -------------------------------------------------------------------------------- /SdlfTrainExample/ReadMe.txt: -------------------------------------------------------------------------------- 1 | ======================================================================== 2 | 控制台应用程序:SdlfTrainExample 项目概述 3 | ======================================================================== 4 | 5 | 应用程序向导已为您创建了此 SdlfTrainExample 应用程序。 6 | 7 | 本文件概要介绍组成 SdlfTrainExample 应用程序的每个文件的内容。 8 | 9 | 10 | SdlfTrainExample.vcxproj 11 | 这是使用应用程序向导生成的 VC++ 项目的主项目文件,其中包含生成该文件的 Visual C++ 的版本信息,以及有关使用应用程序向导选择的平台、配置和项目功能的信息。 12 | 13 | SdlfTrainExample.vcxproj.filters 14 | 这是使用“应用程序向导”生成的 VC++ 项目筛选器文件。它包含有关项目文件与筛选器之间的关联信息。在 IDE 中,通过这种关联,在特定节点下以分组形式显示具有相似扩展名的文件。例如,“.cpp”文件与“源文件”筛选器关联。 15 | 16 | SdlfTrainExample.cpp 17 | 这是主应用程序源文件。 18 | 19 | ///////////////////////////////////////////////////////////////////////////// 20 | 其他标准文件: 21 | 22 | StdAfx.h, StdAfx.cpp 23 | 这些文件用于生成名为 SdlfTrainExample.pch 的预编译头 (PCH) 文件和名为 StdAfx.obj 的预编译类型文件。 24 | 25 | ///////////////////////////////////////////////////////////////////////////// 26 | 其他注释: 27 | 28 | 应用程序向导使用“TODO:”注释来指示应添加或自定义的源代码部分。 29 | 30 | ///////////////////////////////////////////////////////////////////////////// 31 | -------------------------------------------------------------------------------- /SdlfTrainExample/SdlfTrainExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/SdlfTrainExample.cpp -------------------------------------------------------------------------------- /SdlfTrainExample/SdlfTrainExample.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | Debug 14 | x64 15 | 16 | 17 | Release 18 | x64 19 | 20 | 21 | 22 | {38F1B8F0-9A45-425C-95CD-A44ADBC45AEB} 23 | Win32Proj 24 | SdlfTrainExample 25 | 8.1 26 | 27 | 28 | 29 | Application 30 | true 31 | v140 32 | Unicode 33 | 34 | 35 | Application 36 | false 37 | v140 38 | true 39 | Unicode 40 | 41 | 42 | Application 43 | true 44 | v140 45 | Unicode 46 | 47 | 48 | Application 49 | false 50 | v140 51 | true 52 | Unicode 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | true 74 | 75 | 76 | true 77 | 78 | 79 | false 80 | 81 | 82 | false 83 | 84 | 85 | 86 | Use 87 | Level3 88 | Disabled 89 | WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) 90 | true 91 | 92 | 93 | Console 94 | true 95 | 96 | 97 | 98 | 99 | NotUsing 100 | Level3 101 | Disabled 102 | _DEBUG;_CONSOLE;%(PreprocessorDefinitions) 103 | true 104 | ../SimpleDeepLearningFramework/;%(AdditionalIncludeDirectories) 105 | 106 | 107 | Console 108 | true 109 | ../x64/debug/;%(AdditionalLibraryDirectories) 110 | 10485760 111 | 112 | 113 | 114 | 115 | Level3 116 | Use 117 | MaxSpeed 118 | true 119 | true 120 | WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 121 | true 122 | 123 | 124 | Console 125 | true 126 | true 127 | true 128 | 129 | 130 | 131 | 132 | Level3 133 | NotUsing 134 | MaxSpeed 135 | true 136 | true 137 | NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 138 | true 139 | ../SimpleDeepLearningFramework/ 140 | 141 | 142 | Console 143 | true 144 | true 145 | true 146 | ../x64/release/;%(AdditionalLibraryDirectories) 147 | 10485760 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | Create 165 | Create 166 | Create 167 | Create 168 | 169 | 170 | 171 | 172 | 173 | -------------------------------------------------------------------------------- /SdlfTrainExample/SdlfTrainExample.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 头文件 23 | 24 | 25 | 头文件 26 | 27 | 28 | 头文件 29 | 30 | 31 | 头文件 32 | 33 | 34 | 头文件 35 | 36 | 37 | 38 | 39 | 源文件 40 | 41 | 42 | 源文件 43 | 44 | 45 | 源文件 46 | 47 | 48 | -------------------------------------------------------------------------------- /SdlfTrainExample/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/stdafx.cpp -------------------------------------------------------------------------------- /SdlfTrainExample/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/stdafx.h -------------------------------------------------------------------------------- /SdlfTrainExample/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/targetver.h -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Debug/MnistFileManager.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Debug/MnistFileManager.obj -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Debug/SdlfTrainExample.log: -------------------------------------------------------------------------------- 1 |  SdlfTrainExample.cpp 2 | e:\work\simpledeeplearningframework\sdlftrainexample\sdlftrainexample.cpp(137): warning C4244: “参数”: 从“time_t”转换到“unsigned int”,可能丢失数据 3 | SdlfTrainExample.vcxproj -> E:\Work\SimpleDeepLearningFramework\x64\Debug\SdlfTrainExample.exe 4 | SdlfTrainExample.vcxproj -> E:\Work\SimpleDeepLearningFramework\x64\Debug\SdlfTrainExample.pdb (Full PDB) 5 | -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Debug/SdlfTrainExample.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Debug/SdlfTrainExample.obj -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Debug/SdlfTrainExample.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Debug/SdlfTrainExample.pch -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Debug/SdlfTrainExample.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Debug/SdlfTrainExample.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Debug/SdlfTrainExample.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Debug/SdlfTrainExample.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Debug/SdlfTrainExample.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Debug/SdlfTrainExample.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Debug/SdlfTrainExample.tlog/SdlfTrainExample.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1 2 | Debug|x64|E:\Work\SimpleDeepLearningFramework\| 3 | -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Debug/SdlfTrainExample.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Debug/SdlfTrainExample.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Debug/SdlfTrainExample.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Debug/SdlfTrainExample.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Debug/SdlfTrainExample.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Debug/SdlfTrainExample.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Debug/stdafx.obj -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Debug/vc140.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Debug/vc140.idb -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Debug/vc140.pdb -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Release/MnistFileManager.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Release/MnistFileManager.obj -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Release/SdlfTrainExample.log: -------------------------------------------------------------------------------- 1 |  SdlfTrainExample.cpp 2 | SdlfTrainExample.cpp(138): warning C4244: “参数”: 从“time_t”转换到“unsigned int”,可能丢失数据 3 | 正在生成代码 4 | 2 of 214 functions ( 0.9%) were compiled, the rest were copied from previous compilation. 5 | 0 functions were new in current compilation 6 | 0 functions had inline decision re-evaluated but remain unchanged 7 | 已完成代码的生成 8 | SdlfTrainExample.vcxproj -> E:\Work\SimpleDeepLearningFramework\x64\Release\SdlfTrainExample.exe 9 | SdlfTrainExample.vcxproj -> E:\Work\SimpleDeepLearningFramework\x64\Release\SdlfTrainExample.pdb (Full PDB) 10 | -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Release/SdlfTrainExample.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Release/SdlfTrainExample.obj -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Release/SdlfTrainExample.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Release/SdlfTrainExample.pch -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Release/SdlfTrainExample.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Release/SdlfTrainExample.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Release/SdlfTrainExample.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Release/SdlfTrainExample.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Release/SdlfTrainExample.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Release/SdlfTrainExample.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Release/SdlfTrainExample.tlog/SdlfTrainExample.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1 2 | Release|x64|E:\Work\SimpleDeepLearningFramework\| 3 | -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Release/SdlfTrainExample.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Release/SdlfTrainExample.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Release/SdlfTrainExample.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Release/SdlfTrainExample.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Release/SdlfTrainExample.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Release/SdlfTrainExample.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Release/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Release/stdafx.obj -------------------------------------------------------------------------------- /SdlfTrainExample/x64/Release/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SdlfTrainExample/x64/Release/vc140.pdb -------------------------------------------------------------------------------- /SimpleDeepLearningFramework.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework.VC.db -------------------------------------------------------------------------------- /SimpleDeepLearningFramework.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.25420.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SimpleDeepLearningFramework", "SimpleDeepLearningFramework\SimpleDeepLearningFramework.vcxproj", "{20416C6E-3456-4DB3-BF20-5AF6EE699987}" 7 | EndProject 8 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SdlfTrainExample", "SdlfTrainExample\SdlfTrainExample.vcxproj", "{38F1B8F0-9A45-425C-95CD-A44ADBC45AEB}" 9 | EndProject 10 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SdlfSimpleFullConnectedExample", "SdlfSimpleFullConnectedExample\SdlfSimpleFullConnectedExample.vcxproj", "{010DB441-31C1-4AE3-BBD5-D262AA972868}" 11 | EndProject 12 | Global 13 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 14 | Debug|x64 = Debug|x64 15 | Debug|x86 = Debug|x86 16 | Release|x64 = Release|x64 17 | Release|x86 = Release|x86 18 | EndGlobalSection 19 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 20 | {20416C6E-3456-4DB3-BF20-5AF6EE699987}.Debug|x64.ActiveCfg = Debug|x64 21 | {20416C6E-3456-4DB3-BF20-5AF6EE699987}.Debug|x64.Build.0 = Debug|x64 22 | {20416C6E-3456-4DB3-BF20-5AF6EE699987}.Debug|x86.ActiveCfg = Debug|Win32 23 | {20416C6E-3456-4DB3-BF20-5AF6EE699987}.Debug|x86.Build.0 = Debug|Win32 24 | {20416C6E-3456-4DB3-BF20-5AF6EE699987}.Release|x64.ActiveCfg = Release|x64 25 | {20416C6E-3456-4DB3-BF20-5AF6EE699987}.Release|x64.Build.0 = Release|x64 26 | {20416C6E-3456-4DB3-BF20-5AF6EE699987}.Release|x86.ActiveCfg = Release|Win32 27 | {20416C6E-3456-4DB3-BF20-5AF6EE699987}.Release|x86.Build.0 = Release|Win32 28 | {38F1B8F0-9A45-425C-95CD-A44ADBC45AEB}.Debug|x64.ActiveCfg = Debug|x64 29 | {38F1B8F0-9A45-425C-95CD-A44ADBC45AEB}.Debug|x64.Build.0 = Debug|x64 30 | {38F1B8F0-9A45-425C-95CD-A44ADBC45AEB}.Debug|x86.ActiveCfg = Debug|Win32 31 | {38F1B8F0-9A45-425C-95CD-A44ADBC45AEB}.Debug|x86.Build.0 = Debug|Win32 32 | {38F1B8F0-9A45-425C-95CD-A44ADBC45AEB}.Release|x64.ActiveCfg = Release|x64 33 | {38F1B8F0-9A45-425C-95CD-A44ADBC45AEB}.Release|x64.Build.0 = Release|x64 34 | {38F1B8F0-9A45-425C-95CD-A44ADBC45AEB}.Release|x86.ActiveCfg = Release|Win32 35 | {38F1B8F0-9A45-425C-95CD-A44ADBC45AEB}.Release|x86.Build.0 = Release|Win32 36 | {010DB441-31C1-4AE3-BBD5-D262AA972868}.Debug|x64.ActiveCfg = Debug|x64 37 | {010DB441-31C1-4AE3-BBD5-D262AA972868}.Debug|x64.Build.0 = Debug|x64 38 | {010DB441-31C1-4AE3-BBD5-D262AA972868}.Debug|x86.ActiveCfg = Debug|Win32 39 | {010DB441-31C1-4AE3-BBD5-D262AA972868}.Debug|x86.Build.0 = Debug|Win32 40 | {010DB441-31C1-4AE3-BBD5-D262AA972868}.Release|x64.ActiveCfg = Release|x64 41 | {010DB441-31C1-4AE3-BBD5-D262AA972868}.Release|x64.Build.0 = Release|x64 42 | {010DB441-31C1-4AE3-BBD5-D262AA972868}.Release|x86.ActiveCfg = Release|Win32 43 | {010DB441-31C1-4AE3-BBD5-D262AA972868}.Release|x86.Build.0 = Release|Win32 44 | EndGlobalSection 45 | GlobalSection(SolutionProperties) = preSolution 46 | HideSolutionNode = FALSE 47 | EndGlobalSection 48 | EndGlobal 49 | -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/Common.h -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/Debug/SdlfCalculator.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/Debug/SdlfCalculator.obj -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/Debug/SdlfCalculatorCPU.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/Debug/SdlfCalculatorCPU.obj -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/Debug/SdlfFunction.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/Debug/SdlfFunction.obj -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/Debug/SdlfLayer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/Debug/SdlfLayer.obj -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/Debug/SdlfModel.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/Debug/SdlfModel.obj -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/Debug/SimpleDe.20416C6E.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/Debug/SimpleDe.20416C6E.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/Debug/SimpleDe.20416C6E.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/Debug/SimpleDe.20416C6E.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/Debug/SimpleDe.20416C6E.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/Debug/SimpleDe.20416C6E.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/Debug/SimpleDe.20416C6E.tlog/SimpleDeepLearningFramework.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1 2 | Debug|Win32|E:\Work\SimpleDeepLearningFramework\| 3 | -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/Debug/SimpleDe.20416C6E.tlog/SimpleDeepLearningFramework.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/Debug/SimpleDe.20416C6E.tlog/SimpleDeepLearningFramework.write.1u.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/Debug/SimpleDe.20416C6E.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/Debug/SimpleDe.20416C6E.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/Debug/SimpleDe.20416C6E.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/Debug/SimpleDe.20416C6E.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/Debug/SimpleDe.20416C6E.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/Debug/SimpleDe.20416C6E.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/Debug/SimpleDeepLearningFramework.log: -------------------------------------------------------------------------------- 1 |  SdlfLayer.cpp 2 | SdlfCalculator.cpp 3 | 正在生成代码... 4 | 正在编译... 5 | SdlfModel.cpp 6 | SdlfCalculatorCPU.cpp 7 | 正在生成代码... 8 | SimpleDeepLearningFramework.vcxproj -> E:\Work\SimpleDeepLearningFramework\Debug\SimpleDeepLearningFramework.dll 9 | SimpleDeepLearningFramework.vcxproj -> E:\Work\SimpleDeepLearningFramework\Debug\SimpleDeepLearningFramework.pdb (Full PDB) 10 | -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/Debug/vc140.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/Debug/vc140.idb -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/Debug/vc140.pdb -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/Sdlf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/Sdlf.h -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/SdlfCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/SdlfCalculator.cpp -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/SdlfCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/SdlfCalculator.h -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/SdlfCalculatorCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/SdlfCalculatorCPU.cpp -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/SdlfCalculatorCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/SdlfCalculatorCPU.h -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/SdlfFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/SdlfFunction.cpp -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/SdlfFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/SdlfFunction.h -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/SdlfLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/SdlfLayer.cpp -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/SdlfLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/SdlfLayer.h -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/SdlfModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/SdlfModel.cpp -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/SdlfModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/SdlfModel.h -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/SimpleDeepLearningFramework.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | Debug 14 | x64 15 | 16 | 17 | Release 18 | x64 19 | 20 | 21 | 22 | {20416C6E-3456-4DB3-BF20-5AF6EE699987} 23 | Win32Proj 24 | SimpleDeepLearningFramework 25 | 8.1 26 | 27 | 28 | 29 | DynamicLibrary 30 | true 31 | v140 32 | Unicode 33 | 34 | 35 | DynamicLibrary 36 | false 37 | v140 38 | true 39 | Unicode 40 | 41 | 42 | DynamicLibrary 43 | true 44 | v140 45 | Unicode 46 | 47 | 48 | DynamicLibrary 49 | false 50 | v140 51 | true 52 | Unicode 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | true 74 | 75 | 76 | true 77 | 78 | 79 | false 80 | 81 | 82 | false 83 | 84 | 85 | 86 | 87 | 88 | Level3 89 | Disabled 90 | WIN32;_DEBUG;_WINDOWS;_USRDLL;SIMPLEDEEPLEARNINGFRAMEWORK_EXPORTS;%(PreprocessorDefinitions) 91 | true 92 | 93 | 94 | Windows 95 | true 96 | 97 | 98 | 99 | 100 | 101 | 102 | Level3 103 | Disabled 104 | _DEBUG;_WINDOWS;_USRDLL;SIMPLEDEEPLEARNINGFRAMEWORK_EXPORTS;%(PreprocessorDefinitions) 105 | true 106 | 107 | 108 | Windows 109 | true 110 | 10485760 111 | 112 | 113 | 114 | 115 | Level3 116 | 117 | 118 | MaxSpeed 119 | true 120 | true 121 | WIN32;NDEBUG;_WINDOWS;_USRDLL;SIMPLEDEEPLEARNINGFRAMEWORK_EXPORTS;%(PreprocessorDefinitions) 122 | true 123 | 124 | 125 | Windows 126 | true 127 | true 128 | true 129 | 130 | 131 | 132 | 133 | Level3 134 | 135 | 136 | MaxSpeed 137 | true 138 | true 139 | NDEBUG;_WINDOWS;_USRDLL;SIMPLEDEEPLEARNINGFRAMEWORK_EXPORTS;%(PreprocessorDefinitions) 140 | true 141 | 142 | 143 | Windows 144 | true 145 | true 146 | true 147 | 10485760 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/SimpleDeepLearningFramework.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | 头文件 20 | 21 | 22 | 头文件 23 | 24 | 25 | 头文件 26 | 27 | 28 | 头文件 29 | 30 | 31 | 头文件 32 | 33 | 34 | 头文件 35 | 36 | 37 | 头文件 38 | 39 | 40 | 41 | 42 | 源文件 43 | 44 | 45 | 源文件 46 | 47 | 48 | 源文件 49 | 50 | 51 | 源文件 52 | 53 | 54 | 源文件 55 | 56 | 57 | -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Debug/SdlfCalculator.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Debug/SdlfCalculator.obj -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Debug/SdlfCalculatorCPU.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Debug/SdlfCalculatorCPU.obj -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Debug/SdlfFunction.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Debug/SdlfFunction.obj -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Debug/SdlfLayer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Debug/SdlfLayer.obj -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Debug/SdlfModel.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Debug/SdlfModel.obj -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Debug/SimpleDe.20416C6E.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Debug/SimpleDe.20416C6E.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Debug/SimpleDe.20416C6E.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Debug/SimpleDe.20416C6E.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Debug/SimpleDe.20416C6E.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Debug/SimpleDe.20416C6E.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Debug/SimpleDe.20416C6E.tlog/SimpleDeepLearningFramework.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1 2 | Debug|x64|E:\Work\SimpleDeepLearningFramework\| 3 | -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Debug/SimpleDe.20416C6E.tlog/SimpleDeepLearningFramework.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Debug/SimpleDe.20416C6E.tlog/SimpleDeepLearningFramework.write.1u.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Debug/SimpleDe.20416C6E.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Debug/SimpleDe.20416C6E.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Debug/SimpleDe.20416C6E.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Debug/SimpleDe.20416C6E.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Debug/SimpleDe.20416C6E.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Debug/SimpleDe.20416C6E.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Debug/SimpleDeepLearningFramework.log: -------------------------------------------------------------------------------- 1 |  SdlfModel.cpp 2 | e:\work\simpledeeplearningframework\simpledeeplearningframework\sdlfmodel.cpp(121): warning C4244: “+=”: 从“double”转换到“float”,可能丢失数据 3 | SdlfLayer.cpp 4 | 正在生成代码... 5 | 正在编译... 6 | SdlfCalculatorCPU.cpp 7 | SdlfCalculator.cpp 8 | 正在生成代码... 9 | 正在跳过...(未检测到相关更改) 10 | SdlfFunction.cpp 11 | SimpleDeepLearningFramework.vcxproj -> E:\Work\SimpleDeepLearningFramework\x64\Debug\SimpleDeepLearningFramework.dll 12 | SimpleDeepLearningFramework.vcxproj -> E:\Work\SimpleDeepLearningFramework\x64\Debug\SimpleDeepLearningFramework.pdb (Full PDB) 13 | -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Debug/sdlfcalculatorcpu.obj.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Debug/sdlfcalculatorcpu.obj.enc -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Debug/vc140.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Debug/vc140.idb -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Debug/vc140.pdb -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Release/SdlfCalculator.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Release/SdlfCalculator.obj -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Release/SdlfCalculatorCPU.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Release/SdlfCalculatorCPU.obj -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Release/SdlfFunction.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Release/SdlfFunction.obj -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Release/SdlfLayer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Release/SdlfLayer.obj -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Release/SdlfModel.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Release/SdlfModel.obj -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Release/SimpleDe.20416C6E.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Release/SimpleDe.20416C6E.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Release/SimpleDe.20416C6E.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Release/SimpleDe.20416C6E.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Release/SimpleDe.20416C6E.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Release/SimpleDe.20416C6E.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Release/SimpleDe.20416C6E.tlog/SimpleDeepLearningFramework.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1 2 | Release|x64|E:\Work\SimpleDeepLearningFramework\| 3 | -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Release/SimpleDe.20416C6E.tlog/SimpleDeepLearningFramework.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Release/SimpleDe.20416C6E.tlog/SimpleDeepLearningFramework.write.1u.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Release/SimpleDe.20416C6E.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Release/SimpleDe.20416C6E.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Release/SimpleDe.20416C6E.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Release/SimpleDe.20416C6E.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Release/SimpleDe.20416C6E.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Release/SimpleDe.20416C6E.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Release/SimpleDeepLearningFramework.log: -------------------------------------------------------------------------------- 1 |  SdlfCalculator.cpp 2 | SdlfCalculatorCPU.cpp 3 | SdlfFunction.cpp 4 | SdlfLayer.cpp 5 | SdlfModel.cpp 6 | SdlfModel.cpp(122): warning C4244: “+=”: 从“double”转换到“float”,可能丢失数据 7 | 正在创建库 E:\Work\SimpleDeepLearningFramework\x64\Release\SimpleDeepLearningFramework.lib 和对象 E:\Work\SimpleDeepLearningFramework\x64\Release\SimpleDeepLearningFramework.exp 8 | 正在生成代码 9 | 29 of 226 functions (12.8%) were compiled, the rest were copied from previous compilation. 10 | 5 functions were new in current compilation 11 | 8 functions had inline decision re-evaluated but remain unchanged 12 | 已完成代码的生成 13 | SimpleDeepLearningFramework.vcxproj -> E:\Work\SimpleDeepLearningFramework\x64\Release\SimpleDeepLearningFramework.dll 14 | SimpleDeepLearningFramework.vcxproj -> E:\Work\SimpleDeepLearningFramework\x64\Release\SimpleDeepLearningFramework.pdb (Full PDB) 15 | -------------------------------------------------------------------------------- /SimpleDeepLearningFramework/x64/Release/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/SimpleDeepLearningFramework/x64/Release/vc140.pdb -------------------------------------------------------------------------------- /ipch/SDLFSIMPLEFULLCONNECTEDEXAMPLE-594519fc/SDLFSIMPLEFULLCONNECTEDEXAMPLE-195d94ef.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/ipch/SDLFSIMPLEFULLCONNECTEDEXAMPLE-594519fc/SDLFSIMPLEFULLCONNECTEDEXAMPLE-195d94ef.ipch -------------------------------------------------------------------------------- /ipch/SDLFSIMPLEFULLCONNECTEDEXAMPLE-594519fc/SDLFSIMPLEFULLCONNECTEDEXAMPLE-7273a2e9.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/ipch/SDLFSIMPLEFULLCONNECTEDEXAMPLE-594519fc/SDLFSIMPLEFULLCONNECTEDEXAMPLE-7273a2e9.ipch -------------------------------------------------------------------------------- /ipch/SDLFTRAINEXAMPLE-d1dbd518/SDLFTRAINEXAMPLE-ca3ea6bd.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/ipch/SDLFTRAINEXAMPLE-d1dbd518/SDLFTRAINEXAMPLE-ca3ea6bd.ipch -------------------------------------------------------------------------------- /x64/Debug/SdlfSimpleFullConnectedExample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Debug/SdlfSimpleFullConnectedExample.exe -------------------------------------------------------------------------------- /x64/Debug/SdlfSimpleFullConnectedExample.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Debug/SdlfSimpleFullConnectedExample.ilk -------------------------------------------------------------------------------- /x64/Debug/SdlfSimpleFullConnectedExample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Debug/SdlfSimpleFullConnectedExample.pdb -------------------------------------------------------------------------------- /x64/Debug/SdlfTrainExample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Debug/SdlfTrainExample.exe -------------------------------------------------------------------------------- /x64/Debug/SdlfTrainExample.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Debug/SdlfTrainExample.ilk -------------------------------------------------------------------------------- /x64/Debug/SdlfTrainExample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Debug/SdlfTrainExample.pdb -------------------------------------------------------------------------------- /x64/Debug/SimpleDeepLearningFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Debug/SimpleDeepLearningFramework.dll -------------------------------------------------------------------------------- /x64/Debug/SimpleDeepLearningFramework.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Debug/SimpleDeepLearningFramework.exp -------------------------------------------------------------------------------- /x64/Debug/SimpleDeepLearningFramework.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Debug/SimpleDeepLearningFramework.ilk -------------------------------------------------------------------------------- /x64/Debug/SimpleDeepLearningFramework.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Debug/SimpleDeepLearningFramework.lib -------------------------------------------------------------------------------- /x64/Debug/SimpleDeepLearningFramework.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Debug/SimpleDeepLearningFramework.pdb -------------------------------------------------------------------------------- /x64/Debug/t10k-images.idx3-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Debug/t10k-images.idx3-ubyte -------------------------------------------------------------------------------- /x64/Debug/t10k-labels.idx1-ubyte: -------------------------------------------------------------------------------- 1 | '                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             -------------------------------------------------------------------------------- /x64/Debug/train-images.idx3-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Debug/train-images.idx3-ubyte -------------------------------------------------------------------------------- /x64/Debug/train-labels.idx1-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Debug/train-labels.idx1-ubyte -------------------------------------------------------------------------------- /x64/Release/SdlfSimpleFullConnectedExample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Release/SdlfSimpleFullConnectedExample.exe -------------------------------------------------------------------------------- /x64/Release/SdlfSimpleFullConnectedExample.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Release/SdlfSimpleFullConnectedExample.iobj -------------------------------------------------------------------------------- /x64/Release/SdlfSimpleFullConnectedExample.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Release/SdlfSimpleFullConnectedExample.ipdb -------------------------------------------------------------------------------- /x64/Release/SdlfSimpleFullConnectedExample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Release/SdlfSimpleFullConnectedExample.pdb -------------------------------------------------------------------------------- /x64/Release/SdlfTrainExample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Release/SdlfTrainExample.exe -------------------------------------------------------------------------------- /x64/Release/SdlfTrainExample.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Release/SdlfTrainExample.iobj -------------------------------------------------------------------------------- /x64/Release/SdlfTrainExample.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Release/SdlfTrainExample.ipdb -------------------------------------------------------------------------------- /x64/Release/SdlfTrainExample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Release/SdlfTrainExample.pdb -------------------------------------------------------------------------------- /x64/Release/SimpleDeepLearningFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Release/SimpleDeepLearningFramework.dll -------------------------------------------------------------------------------- /x64/Release/SimpleDeepLearningFramework.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Release/SimpleDeepLearningFramework.exp -------------------------------------------------------------------------------- /x64/Release/SimpleDeepLearningFramework.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Release/SimpleDeepLearningFramework.iobj -------------------------------------------------------------------------------- /x64/Release/SimpleDeepLearningFramework.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Release/SimpleDeepLearningFramework.ipdb -------------------------------------------------------------------------------- /x64/Release/SimpleDeepLearningFramework.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Release/SimpleDeepLearningFramework.lib -------------------------------------------------------------------------------- /x64/Release/SimpleDeepLearningFramework.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Release/SimpleDeepLearningFramework.pdb -------------------------------------------------------------------------------- /x64/Release/t10k-images.idx3-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Release/t10k-images.idx3-ubyte -------------------------------------------------------------------------------- /x64/Release/t10k-labels.idx1-ubyte: -------------------------------------------------------------------------------- 1 | '                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             -------------------------------------------------------------------------------- /x64/Release/train-images.idx3-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Release/train-images.idx3-ubyte -------------------------------------------------------------------------------- /x64/Release/train-labels.idx1-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/x64/Release/train-labels.idx1-ubyte -------------------------------------------------------------------------------- /说明文档.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygyue/SimpleDeepLearningFramework/8dbdb098902ceba75e7c0edc2b7a5706e4eb4de6/说明文档.doc --------------------------------------------------------------------------------