Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for debugString (0.33 sec)

  1. tensorflow/c/eager/parallel_device/parallel_device.cc

                status, TF_INVALID_ARGUMENT,
                absl::StrCat(
                    "Got a non-parallel tensor ",
                    tensorflow::unwrap(absl::get<TFE_TensorHandle*>(input))
                        ->DebugString(),
                    " as input to a parallel operation. First pack non-parallel "
                    "tensors for each device into a parallel tensor explicitly.")
                    .c_str());
            return absl::nullopt;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 29 22:05:31 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_compiler.h

        return persistor_.get();
      }
      DeviceCompilerClient<ExecutableType, ClientType>* compiler_client() {
        return compiler_client_.get();
      }
    
      string DebugString() const override;
    
     private:
      // Common implementation of Compile and CompileSingleOp. The `OpKernelContext`
      // parameter is always null for the former.
      Status CompileImpl(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/saved_model_bundle_test.cc

      TF_ASSERT_OK(ReadMetaGraphDefFromSavedModel(export_dir, {kSavedModelTagServe},
                                                  &actual_metagraph));
      EXPECT_EQ(actual_metagraph.DebugString(),
                bundle.meta_graph_def.DebugString());
    }
    
    TEST_F(LoaderTest, RestoreSession) {
      SavedModelBundle bundle;
      SessionOptions session_options;
      RunOptions run_options;
    
      const string export_dir =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

            Node* output_node = le->dst();
    
            if (add_edges_to_output_of_downstream_nodes) {
              TF_RET_CHECK(output_node->type_string() == kXlaClusterOutput)
                  << le->DebugString();
              nodes_to_remove.push_back(output_node);
    
              for (const Edge* oe : output_node->out_edges()) {
                TF_RET_CHECK(!oe->IsControlEdge());
                data_outputs[le->src_output()].push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/compilability_check_util.cc

        MaybeMarkUncompilableNode(uncompilable_reason, *stack_trace,
                                  encapsulating_function, uncompilable_nodes);
        VLOG(2) << "Rejecting " << call_def.DebugString() << ": "
                << uncompilable_reason << " : " << s;
        return false;
      }
    
      auto release_handle_on_return = gtl::MakeCleanup(
          [&] { TF_CHECK_OK(lib_runtime->ReleaseHandle(handle)); });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/partially_decluster_pass.cc

            GetXlaClusterForNode(*dst);
        if (dst_cluster_name != cluster_name) {
          out_edges_to_clone.push_back(out_edge);
        }
      }
    
      CHECK(!out_edges_to_clone.empty()) << n->DebugString();
    
      NodeDef ndef = n->def();
      ndef.set_name(absl::StrCat(n->name(), "/declustered"));
      MergeDebugInfo(NodeDebugInfo(n->def()), &ndef);
      RemoveFromXlaCluster(&ndef);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.cc

      InputArrays inputs;
      ss << "\ninputs: ";
      for (auto& it : inputs) {
        ss << "\n\t" << it.first << " -> "
           << DataTypeString(it.second.imported_dtype) << " "
           << it.second.shape.DebugString();
      }
      ss << "\noutputs:";
      for (auto& output : outputs) ss << " " << output;
      ss << "\ncontrol_outputs:";
      for (auto& output : control_outputs) ss << " " << output;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/gradient_checker.cc

                return errors::Internal("Gradient for input ", x_idx,
                                        " expected shape ",
                                        x_shapes[x_idx].DebugString(), " but was ",
                                        dxout[x_idx].shape().DebugString());
              }
              const int64_t x_size = x_shapes[x_idx].num_elements();
              auto jacobian = (*jacobian_ts)[x_idx * y_num + y_idx].matrix<JAC_T>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

              "TF2XLA TPU bridge input check: invalid no. of tuple shardings ")
              << sharding.tuple_shardings().size()
              << " for arity = " << op->getNumResults() << "\n The sharding is "
              << sharding.DebugString() << "\n";
          return false;
        }
      }
      return true;
    }
    
    bool IsValidMAXIMALSharding(Operation* op, MetadataMap& metadata_map) {
      if (!op->hasAttr(TF::kTpuReplicateAttr)) return true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

                "not all have the same rank is not supported. One tensor had "
                "shape ",
                first_shape.DebugString(), " and another had shape ",
                component_shape.DebugString()));
          } else {
            // Generalize differing axis lengths to "variable"/"unknown".
            for (int axis_index = 0; axis_index < combined_shape.dims();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
Back to top