Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/c/eager/c_api_experimental.h

    // while `op` is alive.
    TF_CAPI_EXPORT extern const TFE_OpAttrs* TFE_OpGetAttrs(const TFE_Op* op);
    // Add attributes in `attrs` to `op`.
    //
    // Does not overwrite or update existing attributes, but adds new ones.
    TF_CAPI_EXPORT extern void TFE_OpAddAttrs(TFE_Op* op, const TFE_OpAttrs* attrs);
    
    // Serialize `attrs` as a tensorflow::NameAttrList protocol buffer (into `buf`),
    // containing the op name and a map of its attributes.
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Feb 21 22:37:46 GMT 2024
    - 39.5K bytes
    - Viewed (0)
  2. tensorflow/c/eager/tape.h

              if (op_it->second.output_tensor_info[j].GetID() == id) {
                found = true;
                Gradient* ones_like = nullptr;
                TF_RETURN_IF_ERROR(vspace.BuildOnesLike(
                    op_it->second.output_tensor_info[j], &ones_like));
                (*result)[id].push_back(ones_like);
                break;
              }
            }
            if (!found) {
              return errors::Internal(
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 02 12:40:29 GMT 2024
    - 47.2K bytes
    - Viewed (1)
Back to top