Skip to content

Commit

Permalink
fix ucx compile
Browse files Browse the repository at this point in the history
  • Loading branch information
hariharan-devarajan committed Nov 23, 2023
1 parent f8bb92e commit b9c6f46
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ endif ()
set(DYAD_CONTROL_PLANE "FLUX_RPC" CACHE STRING "Protocol to use for DYAD's Control Plane")
set_property(CACHE DYAD_CONTROL_PLANE PROPERTY STRINGS FLUX_RPC)
set(DYAD_DATA_PLANE "FLUX_RPC" CACHE STRING "Protocol to use for DYAD's Data Plane")
set_property(CACHE DYAD_DATA_PLANE PROPERTY STRINGS FLUX_RPC UPX)
set_property(CACHE DYAD_DATA_PLANE PROPERTY STRINGS FLUX_RPC UCX)
set(DYAD_PROFILER "NONE" CACHE STRING "Protocol to use for DYAD's Data Plane")
set_property(CACHE DYAD_DATA_PLANE PROPERTY STRINGS PERFFLOW_ASPECT CALIPER NONE)
set_property(CACHE DYAD_PROFILER PROPERTY STRINGS PERFFLOW_ASPECT CALIPER NONE)

#------------------------------------------------------------------------------
# Build Type based configurations
Expand Down
4 changes: 2 additions & 2 deletions src/dyad/dtl/ucx_dtl.c
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#include "ucx_dtl.h"
#include <dyad/dtl/ucx_dtl.h>

#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "base64.h"
#include <dyad/utils/base64/base64.h>

extern const base64_maps_t base64_maps_rfc4648;

Expand Down
2 changes: 1 addition & 1 deletion src/dyad/dtl/ucx_dtl.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <stdlib.h>
#include <ucp/api/ucp.h>

#include "dyad_dtl_impl.h"
#include <dyad/dtl/dyad_dtl_impl.h>

struct dyad_dtl_ucx {
flux_t* h;
Expand Down

0 comments on commit b9c6f46

Please sign in to comment.