Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TF_ImportGraphDefOptionsSetUniquifyNames (0.35 sec)

  1. tensorflow/c/c_api.h

    // conflicting names will be treated as an error. Note that this option has no
    // effect if a prefix is set, since the prefix will guarantee all names are
    // unique. Defaults to false.
    TF_CAPI_EXPORT extern void TF_ImportGraphDefOptionsSetUniquifyNames(
        TF_ImportGraphDefOptions* opts, unsigned char uniquify_names);
    
    // If true, the specified prefix will be modified if it already exists as an
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  2. tensorflow/c/c_api.cc

    }
    void TF_ImportGraphDefOptionsSetDefaultDevice(TF_ImportGraphDefOptions* opts,
                                                  const char* device) {
      opts->opts.default_device = device;
    }
    
    void TF_ImportGraphDefOptionsSetUniquifyNames(TF_ImportGraphDefOptions* opts,
                                                  unsigned char uniquify_names) {
      opts->opts.uniquify_names = uniquify_names;
    }
    
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
Back to top