Skip to content

Commit

Permalink
Deshim //folly:dynamic to //folly/json:dynamic in glow
Browse files Browse the repository at this point in the history
Differential Revision: D53837146
  • Loading branch information
Gownta authored and facebook-github-bot committed Feb 29, 2024
1 parent db91555 commit 68d506b
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion include/glow/Graph/FXIRUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <cstdint>
#include <folly/Conv.h>
#include <folly/String.h>
#include <folly/dynamic.h>
#include <folly/json/dynamic.h>
#include <type_traits>

namespace glow {
Expand Down
2 changes: 1 addition & 1 deletion include/glow/Graph/FXIRWrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include "glow/Graph/Graph.h"
#include "llvm/ADT/MapVector.h"

#include <folly/dynamic.h>
#include <folly/json/dynamic.h>

namespace glow {

Expand Down
2 changes: 1 addition & 1 deletion lib/Backends/NNPI/NNPI.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "NNPIAdapterContainer.h"
#include "NNPIOptions.h"
#include "glow/Backend/Backend.h"
#include <folly/dynamic.h>
#include <folly/json/dynamic.h>
#include <vector>

namespace glow {
Expand Down
2 changes: 1 addition & 1 deletion lib/Backends/NNPI/NNPICompiledFunction.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include "glow/ExecutionContext/ExecutionContext.h"
#include "nnpi_inference_types.h"
#include "nnpi_transformer.h"
#include <folly/dynamic.h>
#include <folly/json/dynamic.h>
#include <map>
#include <memory>
#include <mutex>
Expand Down
2 changes: 1 addition & 1 deletion lib/Graph/FXIRUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "glow/Graph/FXIRWrapper.h"
#include "llvm/Support/Casting.h"

#include <folly/DynamicConverter.h>
#include <folly/json/DynamicConverter.h>

using namespace glow;

Expand Down
2 changes: 1 addition & 1 deletion lib/Runtime/Provisioner/Provisioner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/FormatVariadic.h"

#include <folly/dynamic.h>
#include <folly/json/dynamic.h>
#include <future>
#include <map>
#include <mutex>
Expand Down
2 changes: 1 addition & 1 deletion torch_glow/src/GlowCompileSpec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#include "GlowCompileSpec.h"
#include "PyTorchCommon.h"
#include "folly/json.h"
#include "folly/json/json.h"
#include <ATen/core/ivalue.h>
#include <torch/custom_class.h>

Expand Down
4 changes: 2 additions & 2 deletions torch_glow/src/GlowCompileSpec.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
#include "PyTorchCommon.h"
#include <ATen/core/ivalue.h>

#include "folly/dynamic.h"
#include "folly/json.h"
#include "folly/json/dynamic.h"
#include "folly/json/json.h"

namespace glow {

Expand Down

0 comments on commit 68d506b

Please sign in to comment.