mirror of
https://github.com/leejet/stable-diffusion.cpp.git
synced 2025-12-12 13:28:37 +00:00
10 lines
206 B
C++
10 lines
206 B
C++
#ifndef __NAME_CONVERSTION_H__
|
|
#define __NAME_CONVERSTION_H__
|
|
|
|
#include <string>
|
|
|
|
#include "model.h"
|
|
|
|
std::string convert_tensor_name(std::string name, SDVersion version);
|
|
|
|
#endif // __NAME_CONVERSTION_H__
|