Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 381 for computations (0.3 sec)

  1. tensorflow/compiler/aot/quantize.h

    namespace tensorflow {
    namespace tfcompile {
    
    using QuantizeXlaFn = std::function<Status(const tf2xla::Config& config,
                                               xla::XlaComputation* computation)>;
    
    // Set the static quantization function to the `fn` if it hasn't been set.
    // Return false if the static function has been set.
    bool RegisterQuantizeFn(const QuantizeXlaFn& fn);
    
    }  // namespace tfcompile
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_compilation_cache.proto

    }
    
    // Represents an entry in the XLA compile cache.
    message XlaSerializedCacheEntry {
      // Used to uniqely identify this entry in its persisted representation.
      XlaSerializedCacheKey key = 1;
    
      // The computation (HLO) that compilation was done for. It is correlated to
      // the input TF graph so we can use it to fingerprint the compiled binary. We
      // serialize this rather than the input graphdef because it provides a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_to_hlo.h

    namespace tf2xla {
    namespace internal {
    
    // Legalize the given MLIR module to XLA HLO using a combination of the MLIR
    // Bridge and XlaBuilder
    absl::StatusOr<XlaCompilationResult> LegalizeTfToHlo(
        const tpu::MlirToHloArgs& computation,
        const tpu::TPUCompileMetadataProto& metadata, bool use_tuple_args,
        llvm::StringRef device_type,
        XlaShapeLayoutHelpers::ShapeDeterminationFns shape_determination_fns,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.td

    //
    // Like qcasts, a dcast is allowed to have both its operand and result
    // as non quantized types. This facilitates transformations and marks edges
    // where the computation must be carried out in the expressed type.
    //
    // Especially early in transformation, it is common to have dcasts on
    // all operands to ops that must operate with the expressed type (typically
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 13 12:46:08 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.td

        $mlir_module is a serialized MLIR module with a `main` function that contains target computation.
        $metadata is a serialized TPUCompileMetadataProto describing the shapes and types of the inputs to the computation, as well as a mapping onto the TPU pod topology.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:35:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/strconv/ftoaryu.go

    	// Now compute mant*(2^e2)*(10^q).
    	// Is it an exact computation?
    	// Only small positive powers of 10 are exact (5^28 has 66 bits).
    	exact := q <= 27 && q >= 0
    
    	di, dexp2, d0 := mult64bitPow10(mant, e2, q)
    	if dexp2 >= 0 {
    		panic("not enough significant bits after mult64bitPow10")
    	}
    	// As a special case, computation might still be exact, if exponent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/cpu.go

    //
    // If you modify this table, you MUST run 'go generate' to regenerate anames.go!
    const (
    	// Unprivileged ISA (Document Version 20190608-Base-Ratified)
    
    	// 2.4: Integer Computational Instructions
    	AADDI = obj.ABaseRISCV + obj.A_ARCHSPECIFIC + iota
    	ASLTI
    	ASLTIU
    	AANDI
    	AORI
    	AXORI
    	ASLLI
    	ASRLI
    	ASRAI
    	ALUI
    	AAUIPC
    	AADD
    	ASLT
    	ASLTU
    	AAND
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testlife/testdata/c-life.c

    	GoStart(2, x, y, 0, x / 2, y / 2, y, a, n);
    	GoStart(3, x, y, x / 2, x, y / 2, y, a, n);
    	GoWait(0);
    	GoWait(1);
    	GoWait(2);
    	GoWait(3);
    }
    
    // The actual computation.  This is called in parallel.
    void
    DoStep(int xdim, int ydim, int xstart, int xend, int ystart, int yend, int *a, int *n)
    {
    	int x, y, c, i, j;
    
    	for(x = xstart; x < xend; x++) {
    		for(y = ystart; y < yend; y++) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

    //
    // Like qcasts, a dcast is allowed to have both its operand and result
    // as non quantized types. This facilitates transformations and marks edges
    // where the computation must be carried out in the expressed type.
    //
    // Especially early in transformation, it is common to have dcasts on
    // all operands to ops that must operate with the expressed type (typically
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

                        **host_graph, fld);
      }
    
      return absl::OkStatus();
    }
    
    // Expand XLA computation's outside compilation host side graph into main graph.
    // Add a control edge between sequencer node and the XLA computation node.
    Status ExpandHostGraphIntoMainGraph(Graph* main_graph,
                                        FunctionLibraryDefinition* fld,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top