Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for defaults (0.16 sec)

  1. tensorflow/c/eager/c_api.cc

              type_vector.push_back(default_value.list().type(i));
            }
            TFE_OpSetAttrTypeList(
                op, attr_name,
                reinterpret_cast<const TF_DataType*>(type_vector.data()),
                type_size);
          }
    
          // Rest are not supported.
          if (default_value.list().shape_size() > 0 ||
              default_value.list().func_size() > 0 ||
              default_value.list().tensor_size() > 0) {
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Mar 12 20:00:09 GMT 2024
    - 43.9K bytes
    - Viewed (2)
  2. tensorflow/c/c_api.cc

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