Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 65 of 65 for debugString (0.59 sec)

  1. tensorflow/compiler/jit/deadness_analysis.cc

            // If we didn't return with an error above then the graph is probably
            // fine and we have a bug in deadness analysis.
            return errors::Internal("Could not find input ", in_edge->DebugString(),
                                    " to ", n->name(),
                                    " when visiting the graph in post-order.  Most "
                                    "likely indicates a bug in deadness analysis.");
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        const auto& dim = window.dimensions(i);
        if (dim.size() <= 0) {
          llvm::errs() << "Window " << window.DebugString()
                       << " has a non-positive dimension.\n";
          return std::nullopt;
        }
        if (dim.stride() <= 0) {
          llvm::errs() << "Window " << window.DebugString()
                       << " has a non-positive stride.\n";
          return std::nullopt;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                  "Invalid \"_handle_dtypes\" attribute value for _Arg node: ",
                  shape_attr->DebugString());
            }
            if (shape_attr->list().shape().empty()) {
              return errors::InvalidArgument(
                  "Invalid \"_handle_shapes\" attribute value for _Arg node: ",
                  shape_attr->DebugString());
            }
            DataType dtype = dtype_attr->list().type(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. RELEASE.md

        *   `partial_tensor_shape.h` -> `../framework/partial_tensor_shape.h`
        *   `tensorflow_server.h` deleted
    *   For C++ API users: `TensorShape::ShortDebugString` has been renamed to
        `DebugString`, and the previous `DebugString` behavior is gone (it was
        needlessly verbose and produced a confusing empty string for scalars).
    *   `GraphOptions.skip_common_subexpression_elimination` has been removed. All
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/static/trace_viewer_full.html

    },intersects(other){return(other.start<this.end)&&(other.end>this.start);},isNear(event,threshold){return(this.end+threshold)>event.start;},debug(){let debugString=this.type+'(';debugString+=parseInt(this.start)+' ';debugString+=parseInt(this.end);this.associatedEvents.forEach(function(event){debugString+=' '+event.typeName;});return debugString+')';}};return{ProtoExpectation,};});'use strict';tr.exportTo('tr.importer',function(){const ProtoExpectation=tr.importer.ProtoExpectation;const INITIATO...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top