Skip to content

Commit e1739ad

Browse files
author
DvirDukhan
committed
moved backends folders
1 parent d6d98ef commit e1739ad

File tree

9 files changed

+5
-5
lines changed

9 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ IF(BUILD_TFLITE)
182182
# Find TensorFlow Lite stuff and build our wrapper
183183
INCLUDE_DIRECTORIES(util/libtflite_c)
184184

185-
ADD_SUBDIRECTORY(src/libtflite_c)
185+
ADD_SUBDIRECTORY(src/backends/libtflite_c)
186186
ENDIF()
187187

188188
#----------------------------------------------------------------------------------------------
@@ -194,7 +194,7 @@ IF(BUILD_TORCH)
194194

195195
INCLUDE_DIRECTORIES(util/libtorch_c)
196196

197-
ADD_SUBDIRECTORY(src/libtorch_c)
197+
ADD_SUBDIRECTORY(src/backends/libtorch_c)
198198
ENDIF()
199199

200200
#----------------------------------------------------------------------------------------------
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include "tensorflow/lite/kernels/register.h"
66
#include "tensorflow/lite/model.h"
77
#include "tensorflow/lite/tools/evaluation/utils.h"
8-
#include "../redismodule.h"
8+
#include "../../redismodule.h"
99

1010
namespace {
1111

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include "torch/csrc/jit/serialization/import.h"
44
#include "torch/csrc/jit/api/compilation_unit.h"
55
#include "ATen/Functions.h"
6-
#include "../redismodule.h"
6+
#include "../../redismodule.h"
77

88
#include <iostream>
99
#include <sstream>

src/libtorch_c/torch_extensions/torch_redis.cpp renamed to src/backends/libtorch_c/torch_extensions/torch_redis.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include <string>
22
#include "torch_redis.h"
3-
#include "../../redismodule.h"
3+
#include "../../../redismodule.h"
44

55
torch::IValue IValueFromRedisReply(RedisModuleCallReply *reply){
66

File renamed without changes.

0 commit comments

Comments
 (0)