libdl  0.0.1
Simple yet powerful deep learning
Loading...
Searching...
No Matches
shape.hpp
1#pragma once
2
3#include <cinttypes>
4#include <vector>
5
6namespace dl {
7 using SShape = std::vector<std::int64_t>;
8 using Shape = std::vector<std::size_t>;
9} // namespace dl