Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for Dadd (0.03 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

          }
          subgraph.available_choices.emplace(*inference_device_type, impl);
        }
    
        // Insert in the subgraphs.
        subgraphs_.try_emplace(call_op, subgraph);
    
        // If it's an output subgraph, we will add to the output_subgraphs.
        if (returned_call_op_set.find(call_op) != returned_call_op_set.end()) {
          output_subgraphs->push_back(call_op);
        }
      });
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_head_tail_outside_compilation.cc

        // Insert all ops including nested ops for checking outputs/side effects.
        cluster_op.walk(
            [&](Operation* op) { tail_outside_compiled_ops_set.insert(op); });
    
        // Only add top level ops to output vector.
        tail_outside_compiled_ops->push_back(&cluster_op);
      }
    
      *cluster_results = cluster_results_set.takeVector();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

        return success();
      }
    };
    
    void SessionInitializerOp::getCanonicalizationPatterns(
        RewritePatternSet &results, MLIRContext *context) {
      results.add<OptimizeSessionInitializerPattern>(context);
    }
    
    SmallVector<StringRef, 2> GetSessionInitializerExportedName(ModuleOp op) {
      auto session_initializer_op = GetSessionInitializerOp(op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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