Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 986 for Auto (0.04 sec)

  1. tensorflow/cc/framework/gradient_checker_test.cc

      TensorShape x_shape({4, 3});
      TensorShape y_shape({3, 2});
      TensorShape z_shape({4, 2});
    
      auto x = Placeholder(scope, DT_DOUBLE, Placeholder::Shape(x_shape));
      auto y = Const(scope, {1.0, 2.0, 3.0, 4.0, 5.0, 6.0}, y_shape);
      auto z = MatMul(scope, x, y);
      double max_error;
      TF_ASSERT_OK((ComputeGradientError<double, double, double>(
          scope, {x}, {x_shape}, {z}, {z_shape}, &max_error)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 06 15:54:08 UTC 2018
    - 6.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/hoist_replicate_invariant_resource_writes.cc

      const auto num_replicas = replicate_op.getN();
      auto return_op = llvm::dyn_cast<tf_device::ReturnOp>(
          replicate_op.getRegion().front().getTerminator());
    
      // Get the new result types.
      // TODO(prakalps): Do not add a value to returned values if it is already
      // returned.
      auto new_result_types = llvm::to_vector<4>(replicate_op->getResultTypes());
      for (auto assign : tail_assign_variable_ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  3. tensorflow/cc/ops/const_op_test.cc

    }
    
    TEST(ConstOpTest, Names) {
      Scope root = Scope::NewRootScope();
      auto c = ops::Const(root, {{2.0}, {3.0}});
      EXPECT_EQ(c.node()->name(), "Const");
      auto c_1 = ops::Const(root, {{2.0}, {3.0}});
      EXPECT_EQ(c_1.node()->name(), "Const_1");
    
      auto x = ops::Const(root.WithOpName("x"), 1);
      EXPECT_EQ(x.node()->name(), "x");
      auto x_1 = ops::Const(root.WithOpName("x"), 1);
      EXPECT_EQ(x_1.node()->name(), "x_1");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 12 14:38:21 UTC 2019
    - 4.9K bytes
    - Viewed (0)
  4. .idea/uiDesigner.xml

            <default-constraints vsize-policy="1" hsize-policy="6" anchor="0" fill="1" />
          </item>
          <item class="com.intellij.uiDesigner.VSpacer" tooltip-text="Vertical Spacer" icon="/com/intellij/uiDesigner/icons/vspacer.png" removable="false" auto-create-binding="false" can-attach-label="false">
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Oct 24 15:06:04 UTC 2013
    - 9.5K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/loader_util.cc

                     string* init_op_name) {
      const auto& sig_def_map = meta_graph_def.signature_def();
      const auto& init_op_sig_it =
          meta_graph_def.signature_def().find(kSavedModelInitOpSignatureKey);
      if (init_op_sig_it != sig_def_map.end()) {
        const auto& sig_def_outputs = init_op_sig_it->second.outputs();
        const auto& sig_def_outputs_it =
            sig_def_outputs.find(kSavedModelInitOpSignatureKey);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 10 10:25:28 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/initialize_variables_in_session_init.cc

        return failure();
      }
    
      auto session_init_func = GetOrCreateSessionInitFunc(module);
      OpBuilder builder(session_init_func.getContext());
    
      for (auto var_and_tensor : llvm::zip(var_ops, resource_tensors_or.value())) {
        auto& var_op = std::get<0>(var_and_tensor);
        auto& resource_tensor = std::get<1>(var_and_tensor);
        if (resource_tensor.dtype() != tensorflow::DT_RESOURCE) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_read_for_write.cc

      Operation* result_user = *result.getUsers().begin();
      auto assign_var = dyn_cast<TF::AssignVariableOp>(result_user);
      if (!assign_var) return resource;
    
      auto handle = assign_var.getResource();
      // Skip result if cluster writes to the same variable via multiple results.
      for (Operation* handle_user : handle.getUsers()) {
        if (handle_user == assign_var) continue;
        auto assign_var_user = dyn_cast<TF::AssignVariableOp>(handle_user);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 16:54:40 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/hoist_loop_invariant.cc

    ResourceHandle GetResourceHandle(Operation *op) {
      llvm::StringRef device;
      if (auto attr = op->getAttrOfType<StringAttr>("device")) {
        device = attr.getValue();
      }
    
      llvm::StringRef container;
      if (auto attr = op->getAttrOfType<StringAttr>("container")) {
        container = attr.getValue();
      }
    
      llvm::StringRef shared_name;
      if (auto attr = op->getAttrOfType<StringAttr>("shared_name")) {
        shared_name = attr.getValue();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSoakTest.groovy

                    .run()
    
            then: "the JDK is auto-provisioned again and its files, even though they are already there don't trigger an error, they just get overwritten"
            markerFile.exists()
        }
    
        def "issue warning on using auto-provisioned toolchain with no configured repositories"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 16:13:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter_test.cc

      mlir::MLIRContext context(registry);
      auto module = mlir::OwningOpRef<mlir::ModuleOp>(
          mlir::parseSourceString<mlir::ModuleOp>(kMLIR, &context));
      auto module_op = module.get();
      auto serialized_result_fb = ExportRuntimeMetadata(module_op);
      const auto* result = GetRuntimeMetadata(serialized_result_fb.value().c_str());
      const auto* expected = GetRuntimeMetadata(kExpectedFB.c_str());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top