Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 264 for Fpack (0.05 sec)

  1. src/cmd/internal/archive/archive_test.go

    			if err != nil {
    				return fmt.Errorf("go tool compile -o %s %s: %v\n%s", go2obj, go2src, err, out)
    			}
    			out, err = testenv.Command(t, gotool, "tool", "pack", "c", goarchive, go1obj, go2obj).CombinedOutput()
    			if err != nil {
    				return fmt.Errorf("go tool pack c %s %s %s: %v\n%s", goarchive, go1obj, go2obj, err, out)
    			}
    
    			if testenv.HasCGO() {
    				cgoarchive = filepath.Join(buildDir, "mycgo.a")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 19:27:33 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/nnapi_hardware.cc

      }
    };
    
    std::unique_ptr<TargetHardwareOperation> CreateBasicOpNoCost() {
      return std::make_unique<NNAPIBasicSupportedOpNoCost>();
    }
    
    // Currently used for these ops:
    // tfl.concatenation / tfl.reshape / tfl.pack
    class NNAPIConcatOp : public TargetHardwareOperation {
      double GetOpCost(mlir::Operation* op) const override {
        int64_t count;
        if (ArithmeticCountUtilHelper::GetInputTensorTotalSize(op, &count))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. src/test/resources/plugin/repo2/index.html

                              </td>
                <td></td>
              </tr>
                      <tr>
                <td><a href="https://oss.sonatype.org/content/repositories/snapshots/org/codelibs/fess/fess-xpack/">fess-xpack/</a></td>
                <td>Sun Jun 02 23:11:23 UTC 2019</td>
                <td align="right">
                                  &nbsp;
                              </td>
                <td></td>
              </tr>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Aug 13 07:34:14 UTC 2019
    - 10.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		t.Tag.goString(indent+2, "Tag: "))
    }
    
    // PackExpansion is a pack expansion.  The Pack field may be nil.
    type PackExpansion struct {
    	Base AST
    	Pack *ArgumentPack
    }
    
    func (pe *PackExpansion) print(ps *printState) {
    	// We normally only get here if the simplify function was
    	// unable to locate and expand the pack.
    	if pe.Pack == nil {
    		if ps.llvmStyle {
    			ps.print(pe.Base)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // Fold pack operation if it computes the input tensor shape:
      //
      //   %shape  = tf.Shape(%arg)                    // [? x ...]
      //   %dim0   = tf.StridedSlice(%shape, 0, 1, 1)  // get unknown dim0 value
      //   %pack   = tf.Pack(dim0, ...) { axis = 0 }   // [? x ...]
      //
      // Where `...` are some statically known dimensions. In this case %pack can be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.h

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    
    namespace mlir {
    namespace TFL {
    namespace tac {
    
    // TODO(renjieliu): add more patterns.
    
    // This basically:
    // Pack => (Concat -> Reshape)
    struct LowerPackIntoConcatReshape : public OpRewritePattern<TFL::PackOp> {
      using OpRewritePattern<TFL::PackOp>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(TFL::PackOp pack_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 03 16:37:16 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. tensorflow/c/eager/parallel_device/parallel_device.cc

    // A ParallelDevice on its own is not registered with a TFE_Context, and so has
    // no device name (e.g. for `tf.device`). `NamedParallelDevice` associates a
    // name with it, which lets us pack its `ParallelTensor`s into TFE_TensorHandles
    // placed on the parallel device.
    class NamedParallelDevice {
     public:
      NamedParallelDevice(const std::string& name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 29 22:05:31 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/sym.go

    // for various reasons (historical, convenience).
    type Sym struct {
    	Linkname string // link name
    
    	Pkg  *Pkg
    	Name string // object name
    
    	// The unique ONAME, OTYPE, OPACK, or OLITERAL node that this symbol is
    	// bound to within the current scope. (Most parts of the compiler should
    	// prefer passing the Node directly, rather than relying on this field.)
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/legalize_tensorlist.cc

      using OpRewritePattern::OpRewritePattern;
    
      LogicalResult matchAndRewrite(TF::TensorListPopBackOp op,
                                    PatternRewriter& rewriter) const override {
        // It is currently not possible to easily pack the output of a multi-result
        // op into an op with a single varidic output in `.td`.
        auto converted = rewriter.create<TFL::CustomOp>(
            op->getLoc(), op->getResultTypes(), op->getOperands(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		st.advance(2)
    		e := st.expression()
    		pack := st.findArgumentPack(e)
    		return &PackExpansion{Base: e, Pack: pack}
    	} else if st.str[0] == 's' && len(st.str) > 1 && st.str[1] == 'Z' {
    		st.advance(2)
    		off := st.off
    		e := st.expression()
    		ap := st.findArgumentPack(e)
    		if ap == nil {
    			st.failEarlier("missing argument pack", st.off-off)
    		}
    		return &SizeofPack{Pack: ap}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top