Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 432 for inserting (0.13 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

      let summary = "Converts stablehlo.convolution op of NCHW format to -> NHWC.";
      let description = [{
        Matches `ConvolutionOp`s with NCHW format and converts it to NHWC
        format by inserting `TransposeOp`s to input, filter, and output tensors.
        In terms of dimension numbers, this matches
        `[b, f, 0, 1]x[o, i, 0, 1]->[b, f, 0, 1]` format and converts it to
        `[b, 0, 1, f]x[0, 1, i, o]->[b, 0, 1, f]` format.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/net/textproto/writer.go

    	w.closeDot()
    	fmt.Fprintf(w.W, format, args...)
    	w.W.Write(crnl)
    	return w.W.Flush()
    }
    
    // DotWriter returns a writer that can be used to write a dot-encoding to w.
    // It takes care of inserting leading dots when necessary,
    // translating line-ending \n into \r\n, and adding the final .\r\n line
    // when the DotWriter is closed. The caller should close the
    // DotWriter before the next call to a method on w.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/extractdoc.go

    //	//
    //	// # Analyzer halting
    //	//
    //	// halting: reports whether execution will halt.
    //	//
    //	// The halting analyzer reports a diagnostic for functions
    //	// that run forever. To suppress the diagnostics, try inserting
    //	// a 'break' statement into each loop.
    //	package halting
    //
    //	import _ "embed"
    //
    //	//go:embed doc.go
    //	var doc string
    //
    // And declare your analyzer as:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. src/runtime/tracemap.go

    			//
    			// The discard will only happen if two threads race on inserting
    			// the same value. Both might create nodes, but only one will
    			// succeed on insertion. If two threads race to insert two
    			// different values, then both nodes will *always* get inserted,
    			// because the equality checking below will always fail.
    			//
    			// Performance note: contention on insertion is likely to be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectArtifactResolver.java

            // NOTE: This isn't thread-safe because we're not locking around allResolvedArtifacts to ensure we're not inserting multiple resolvableArtifacts for
            // the same artifact id.
            //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/math/MathPreconditionsTest.java

         * We never want to pass null for them, so we haven't annotated them to say that null is
         * allowed. But at the same time, it seems wasteful to bother inserting the checkNotNull calls
         * that NullPointerTester wants.
         *
         * (This empty method disables the automatic null testing provided by PackageSanityTests.)
         */
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/transforms/tac_filter.cc

      TacFilters* tac_filters_ = nullptr;
    
      llvm::StringRef getArgument() const final { return "tfl-tac-filter"; }
      llvm::StringRef getDescription() const final {
        return "This pass marks the ops to skip target annotation by inserting "
               "`tac.skip_target_annotation` attribute to them based on user "
               "provided config.";
      }
    
      Option<bool> use_test_setting_{
          *this, "use-test-setting",
          llvm::cl::desc(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_dynamic_range.cc

        if (!(getQuantizableOps(op, quantizable_ops))) {
          return failure();
        }
    
        // 2. Quantize collected ops. It is immediately quantized by inserting Q-DQ
        // pair for int8 while it is lazily applied for float16 by inserting CastOp.
        if (!(quantizeOps(rewriter, op, quantizable_ops))) {
          return failure();
        }
    
        // 3. Apply post-processing required for each inference type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_quantized_functions.cc

                                   "attribute in the quantized composite function.";
          signalPassFailure();
        }
      }
    }
    
    }  // namespace
    
    // Creates an instance of the pass for inserting quantized functions.
    std::unique_ptr<OperationPass<ModuleOp>> CreateInsertQuantizedFunctionsPass(
        QuantMethod quantization_method, OpSet target_opset) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

        const tensorflow::GraphDef& graph_def);
    
    // Adds passes for transforming the MLIR module op so that it can be exported
    // back to GraphDef. Roughly, this consists of:
    //   1) Inserting the @main function, which will become the main Graph.
    //   2) Duplicating shape-determining constants.
    //   3) Converting TF dialect -> tf_executor dialect.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top