Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for Dadd (0.02 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.cc

            TypeID::get<TF::XlaSpmdFullToShardShapeOp>(),
            TypeID::get<TF::XlaSpmdShardToFullShapeOp>(),
            TypeID::get<TF::XlaSvdOp>(),
        };
    
        // Add the ops from the TPUEmbeddingOpsRegistry.
        for (auto op_type_id :
             TF::TPUEmbeddingOpsRegistry::Global().GetOpsTypeIds()) {
          ops_set->insert(op_type_id);
        }
        return ops_set;
      }();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/codegen.cc

                   std::back_inserter(result), [](const BufferInfo& buffer_info) {
                     return buffer_info.is_temp_buffer();
                   });
      return result;
    }
    
    // Add (from,to) rewrite pairs based on the given shape.  These rewrite pairs
    // are used to generate methods for args and results.
    Status AddRewritesForShape(int i, const xla::Shape& shape,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

    // If GCS_APPEND_MODE=compose then instead the new data is uploaded to a
    // temporary object and composed with the original object. This is disabled by
    // default as the multiple API calls required add a risk of stranding temporary
    // objects.
    constexpr char kComposeAppend[] = "compose";
    
    // We can cast `google::cloud::StatusCode` to `TF_Code` because they have the
    // same integer values. See
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 06:55:53 UTC 2023
    - 46.9K bytes
    - Viewed (0)
Back to top