Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

removing 64 bit un-used APIs MXNDArrayLoadFromBuffer64 and MXNDArrayLoad64 #16203

Merged
merged 1 commit into from
Sep 20, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions include/mxnet/c_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -675,12 +675,6 @@ MXNET_DLL int MXNDArrayLoad(const char* fname,
uint32_t *out_name_size,
const char*** out_names);

MXNET_DLL int MXNDArrayLoad64(const char* fname,
int64_t *out_size,
NDArrayHandle** out_arr,
int64_t *out_name_size,
const char*** out_names);

/*!
* \brief Load list / dictionary of narrays from file content loaded into memory.
* This will load a list of ndarrays in a similar
Expand All @@ -702,13 +696,6 @@ MXNET_DLL int MXNDArrayLoadFromBuffer(const void *ndarray_buffer,
uint32_t *out_name_size,
const char*** out_names);

MXNET_DLL int MXNDArrayLoadFromBuffer64(const void *ndarray_buffer,
size_t size,
int64_t *out_size,
NDArrayHandle** out_arr,
int64_t *out_name_size,
const char*** out_names);

/*!
* \brief Perform a synchronize copy from a continugous CPU memory region.
*
Expand Down