Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Junges (0.18 sec)

  1. tensorflow/c/c_api.cc

                                     TF_Status* status) {
      NameRangeMap name_ranges;
      status->status =
          NameRangesForNode(oper->node, oper->node.op_def(), nullptr, &name_ranges);
      if (!status->status.ok()) return -1;
      auto iter = name_ranges.find(arg_name);
      if (iter == name_ranges.end()) {
        status->status = InvalidArgument("Output arg '", arg_name, "' not found");
        return -1;
      }
    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)
  2. RELEASE.md

    *   `tf.math`:
    
        *   Added `tf.math.approx_max_k` and `tf.math.approx_min_k` which are the
            optimized alternatives to `tf.math.top_k` on TPU. The performance
            difference ranges from 8 to 100 times depending on the size of k. When
            running on CPU and GPU, a non-optimized XLA kernel is used.
    
    *   `tf.train`:
    
        *   Added `tf.train.TrackableView` which allows users to inspect the
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top