Mila Deep Neural Network Library
Mila, version 0.9.69-alpha is currently an early, preview release.
Achilles Mila Deep Neural Network library provides a comprehensive API to model, train and evaluate Deep Neural Networks for both research and production environments. The library implements state-of-the-art architectures including transformers, convolutional networks, and recurrent models. Mila utilizes the NVIDIA CUDA runtime for high-performance GPU acceleration, enabling efficient training and inference on large-scale datasets. The library also supports distributed training across multiple GPUs and compute nodes, with automatic optimization for various hardware configurations.
-
Deep Neural Nets
- GPT2, Recurrent Neural Networks
- GPU acceleration using CUDA runtime
-
Datasets
- Batch sequence loader
- Optimized data processing pipelines
- Improved CUDA error handling with detailed error messages and source location tracking
- Optimized tensor operations for device memory with single-element access
- Enhanced memory management for GPU tensors with efficient transfer operations
- Added comprehensive documentation with Doxygen comments
- Standardized naming conventions across the codebase
- Performance improvements for device-to-host and host-to-device memory transfers
- Expanded tensor API with better type safety and memory access patterns
Mila uses CMake build. To build Mila, follow the steps below:
- Clone the Mila repository
- git clone https://github.com/toddthomson/mila.git cd mila
-
Prerequisites
- Visual Studio 2022 or newer with "Desktop development with C++" workload
- CUDA Toolkit 12.8
- CMake 3.31 or newer (included with Visual Studio)
-
Open the Project
- Launch Visual Studio
- Select "Open a local folder" and navigate to your cloned Mila repository
- Visual Studio will automatically detect the CMakeLists.txt file
-
Configure Project
- Visual Studio will automatically generate CMake cache
- To customize build settings, right-click on CMakeLists.txt and select "CMake Settings for MilaProject"
- Under "Configuration type", select "Release" for optimal performance
-
Build the Project
- Right-click on CMakeLists.txt and select "Build All"
- Alternatively, use the Build menu or press F7
-
Run Tests
- In the Solution Explorer, expand the "Tests" folder
- Right-click on a test project and select "Run Tests"
-
Prerequisites
- Visual Studio Code
- C/C++ extension
- CMake Tools extension
- CUDA Toolkit 12.8
- CMake 3.31 or newer
-
Open the Project
- Launch VS Code
- Open the folder containing your cloned Mila repository
- VS Code should detect the CMake project automatically
-
Configure Project
- Press Ctrl+Shift+P to open the command palette
- Type "CMake: Configure" and select it
- Choose your preferred generator (Ninja is recommended for faster builds)
- Select the build variant (Debug/Release)
-
Build the Project
- Press Ctrl+Shift+P to open the command palette
- Type "CMake: Build" and select it, or use the build button in the status bar
-
Run Tests
- Press Ctrl+Shift+P to open the command palette
- Type "CMake: Run Tests" and select it
- Alternatively, use the Test Explorer extension to browse and run tests
- C++23 support
- NVIDIA CUDA Runtime, 12.8
- CMake 3.31
- GTest framework for unit testing
Comprehensive documentation is available in the Docs folder, generated from Doxygen comments.
Mila is licensed under the Apache License 2.0. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
We welcome contributions from the community. If you are interested in contributing to Mila, please follow these steps:
- Fork the repository on GitHub.
- Create a new branch from the
main
branch. - Make your changes and commit them with clear and concise messages.
- Push your changes to your forked repository.
- Create a pull request to the
main
branch of the original repository.
Please ensure that your code adheres to the project's coding standards and includes appropriate tests. For more detailed guidelines, refer to the contribution guidelines for details on our code of conduct and the process for submitting pull requests.