Skip to content

Commit ddfa795

Browse files
Gowntafacebook-github-bot
authored andcommitted
Deshim //folly:dynamic to //folly/json:dynamic in glow
Differential Revision: D53837146
1 parent db91555 commit ddfa795

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

Diff for: include/glow/Graph/FXIRUtils.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <cstdint>
2525
#include <folly/Conv.h>
2626
#include <folly/String.h>
27-
#include <folly/dynamic.h>
27+
#include <folly/json/dynamic.h>
2828
#include <type_traits>
2929

3030
namespace glow {

Diff for: include/glow/Graph/FXIRWrapper.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include "glow/Graph/Graph.h"
2121
#include "llvm/ADT/MapVector.h"
2222

23-
#include <folly/dynamic.h>
23+
#include <folly/json/dynamic.h>
2424

2525
namespace glow {
2626

Diff for: lib/Backends/NNPI/NNPI.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include "NNPIAdapterContainer.h"
2020
#include "NNPIOptions.h"
2121
#include "glow/Backend/Backend.h"
22-
#include <folly/dynamic.h>
22+
#include <folly/json/dynamic.h>
2323
#include <vector>
2424

2525
namespace glow {

Diff for: lib/Backends/NNPI/NNPICompiledFunction.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include "glow/ExecutionContext/ExecutionContext.h"
2525
#include "nnpi_inference_types.h"
2626
#include "nnpi_transformer.h"
27-
#include <folly/dynamic.h>
27+
#include <folly/json/dynamic.h>
2828
#include <map>
2929
#include <memory>
3030
#include <mutex>

Diff for: lib/Graph/FXIRUtils.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include "glow/Graph/FXIRWrapper.h"
2020
#include "llvm/Support/Casting.h"
2121

22-
#include <folly/DynamicConverter.h>
22+
#include <folly/json/DynamicConverter.h>
2323

2424
using namespace glow;
2525

Diff for: lib/Runtime/Provisioner/Provisioner.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#include "llvm/Support/FileSystem.h"
2727
#include "llvm/Support/FormatVariadic.h"
2828

29-
#include <folly/dynamic.h>
29+
#include <folly/json/dynamic.h>
3030
#include <future>
3131
#include <map>
3232
#include <mutex>

Diff for: torch_glow/src/GlowCompileSpec.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
#include "GlowCompileSpec.h"
1818
#include "PyTorchCommon.h"
19-
#include "folly/json.h"
19+
#include "folly/json/json.h"
2020
#include <ATen/core/ivalue.h>
2121
#include <torch/custom_class.h>
2222

Diff for: torch_glow/src/GlowCompileSpec.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
#include "PyTorchCommon.h"
2121
#include <ATen/core/ivalue.h>
2222

23-
#include "folly/dynamic.h"
24-
#include "folly/json.h"
23+
#include "folly/json/dynamic.h"
24+
#include "folly/json/json.h"
2525

2626
namespace glow {
2727

0 commit comments

Comments
 (0)