BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
Classes | Namespaces | Macros | Functions
io.h File Reference
#include "common.h"
#include "tensors.h"
#include "string.h"
#include <algorithm>
#include <sstream>
#include <fstream>
#include <string>
#include <vector>
#include <assert.h>
Include dependency graph for io.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  bc::io::Range< T >
 
struct  bc::io::csv_descriptor
 

Namespaces

 bc
 The Evaluator determines if an expression needs to be greedily optimized.
 
 bc::io
 

Macros

#define from_string_def(dtype, ...)
 
#define FORWARDED_PARAM(dtype, name, default_value)
 

Functions

template<>
double bc::io::from_string (const std::string &str)
 
template<>
float bc::io::from_string (const std::string &str)
 
template<>
int bc::io::from_string (const std::string &str)
 
template<>
std::string bc::io::from_string (const std::string &str)
 
template<class T >
auto bc::io::range (T begin, T end=T())
 

Macro Definition Documentation

◆ FORWARDED_PARAM

#define FORWARDED_PARAM (   dtype,
  name,
  default_value 
)
Value:
dtype name##_ = default_value; \
csv_descriptor& name(dtype name) { \
name##_ = name; \
return *this; \
} \
const dtype& name() const { \
return name##_; \
} \

◆ from_string_def

#define from_string_def (   dtype,
  ... 
)
Value:
template<>\
inline dtype from_string(const std::string& str) {\
return __VA_ARGS__;\
}
std::string from_string(const std::string &str)
Definition: io.h:36