Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 594 for debugLink (0.15 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    #include "tensorflow/core/protobuf/saver.pb.h"
    
    namespace mlir::quant::stablehlo {
    
    // Suffix string for the module export step. Used for debugging.
    constexpr absl::string_view kExportStepSuffix = "_export";
    
    // Options when running passes for exporting an MLIR ModuleOp.
    struct ExportOptions {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. doc/next/5-toolchain.md

    a large open-source code corpus remain supported.
    Any new references to standard library internal symbols will be disallowed.
    
    A linker command line flag `-checklinkname=0` can be used to disable
    this check, for debugging and experimenting purposes.
    
    <!-- CL 473495 -->
    When building a dynamically linked ELF binary (including PIE binary), the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. pkg/test/framework/resource/resource.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package resource
    
    import "fmt"
    
    // Resource of a resource.
    type Resource interface {
    	// ID used for debugging the resource instance.
    	ID() ID
    }
    
    // ID for the resource instance. This is allocated by the framework and passed here.
    type ID interface {
    	fmt.Stringer
    }
    
    var _ ID = FakeID("")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 30 01:00:01 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/cc/run_passes.cc

    #include <memory>
    #include <optional>
    
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/error_util.h"
    #include "tsl/platform/errors.h"
    
    namespace tensorflow {
    namespace quantization {
    
    absl::Status RunPassesOnModuleOp(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 01:17:26 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/flags.h

      // but can be used as a debugging aid.
      bool tf_xla_disable_deadness_safety_checks_for_debugging;
    
      // If tf_xla_disable_resource_variable_safety_checks_for_debugging is set to
      // true then we do not do safety checks to preserve TensorFlow's resource
      // variable concurrency semantics.  This is unsound in general, but can be
      // used as a debugging aid.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/pre_calibration.h

    // lifted quantizable functions.
    class PreCalibrationComponent : public Component {
     public:
      // Name of the post-training quantization pre-calibration step. Used for
      // debugging purposes.
      static constexpr absl::string_view kName = "quant_ptq_pre_calibration";
    
      explicit PreCalibrationComponent(absl::Nonnull<MLIRContext*> ctx);
    
      absl::StatusOr<ModuleOp> Run(
          ModuleOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/cache/debugger/debugger.go

    	"k8s.io/klog/v2"
    	internalcache "k8s.io/kubernetes/pkg/scheduler/internal/cache"
    	internalqueue "k8s.io/kubernetes/pkg/scheduler/internal/queue"
    )
    
    // CacheDebugger provides ways to check and write cache information for debugging.
    type CacheDebugger struct {
    	Comparer CacheComparer
    	Dumper   CacheDumper
    }
    
    // New creates a CacheDebugger.
    func New(
    	nodeLister corelisters.NodeLister,
    	podLister corelisters.PodLister,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/LogStream.java

     */
    
    package jcifs.smb1.util;
    
    import java.io.PrintStream;
    
    /**
    0 - nothing
    1 - critical [default]
    2 - basic info can be logged under load
    3 - almost everything
    N - debugging
     */
    
    public class LogStream extends PrintStream {
    
        private static LogStream inst;
    
        public static int level = 1;
    
        public LogStream( PrintStream stream ) {
            super( stream );
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/quantize_passes.h

    #include "tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.pb.h"
    
    namespace tensorflow {
    namespace quantization {
    
    // mlir_dump_file_prefix is an optional field that is used for debugging to save
    // mlir dump files.
    void AddQuantizeQatPasses(mlir::OpPassManager &pm,
                              const QuantizationOptions &quantization_options,
                              std::optional<const absl::string_view>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 10:03:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/internal/poll/sendfile_solaris.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package poll
    
    import "syscall"
    
    // Not strictly needed, but very helpful for debugging, see issue #10221.
    //
    //go:cgo_import_dynamic _ _ "libsendfile.so"
    //go:cgo_import_dynamic _ _ "libsocket.so"
    
    // maxSendfileSize is the largest chunk size we ask the kernel to copy
    // at a time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top