Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for CastOp (0.31 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

          if (body_arg.getType() == cond_arg.getType() &&
              body_arg.getType() != while_operand.getType()) {
            changed = true;
            rewriter.setInsertionPoint(while_op);
            auto cast_op = rewriter.create<CastOp>(
                while_op.getLoc(), body_arg.getType(), while_operand);
            while_op.setOperand(op_idx, cast_op);
          }
        }
        return success(changed);
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/scope_test.cc

    }
    
    namespace {
    
    string LastOp(const Scope& scope) { return scope.GetUniqueNameForOp("Last"); }
    
    std::vector<string> AnotherCompositeOp(const Scope& scope) {
      auto cop_scopes = scope.GetCompositeOpScopes("another_cop");
      const string c1 = cop_scopes.child.GetUniqueNameForOp("c1");
      const string c2 = cop_scopes.child.GetUniqueNameForOp("mul");
      return {c1, c2, LastOp(cop_scopes.last)};
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 08:17:37 UTC 2019
    - 5.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                mlir::tf_saved_model::GetBoundInputArgTypeFor(global_tensor);
            arg.setType(new_type);
            if (global_tensor.getIsMutable()) {
              auto arg_with_original_type = builder.create<mlir::TF::CastOp>(
                  global_tensor.getLoc(), old_type, arg,
                  /*Truncate=*/builder.getBoolAttr(false));
              arg.replaceAllUsesWith(arg_with_original_type);
    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. src/internal/trace/internal/oldtrace/parser.go

    	}
    	switch raw.typ {
    	case EvBatch:
    		p.lastGs[p.lastP] = p.lastG
    		if raw.args[0] != math.MaxUint64 && raw.args[0] > math.MaxInt32 {
    			return fmt.Errorf("processor ID %d is larger than maximum of %d", raw.args[0], uint64(math.MaxInt32))
    		}
    		if raw.args[0] == math.MaxUint64 {
    			p.lastP = -1
    		} else {
    			p.lastP = int32(raw.args[0])
    		}
    		p.lastG = p.lastGs[p.lastP]
    		p.lastTs = Timestamp(raw.args[1])
    	case EvFrequency:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/a.out.go

    	ASHA512SU1
    	ASMADDL
    	ASMC
    	ASMNEGL
    	ASMSUBL
    	ASMULH
    	ASMULL
    	ASTLR
    	ASTLRB
    	ASTLRH
    	ASTLRW
    	ASTLXP
    	ASTLXPW
    	ASTLXR
    	ASTLXRB
    	ASTLXRH
    	ASTLXRW
    	ASTP
    	ASTPW
    	ASTXP
    	ASTXPW
    	ASTXR
    	ASTXRB
    	ASTXRH
    	ASTXRW
    	ASUB
    	ASUBS
    	ASUBSW
    	ASUBW
    	ASVC
    	ASWPAB
    	ASWPAD
    	ASWPAH
    	ASWPALB
    	ASWPALD
    	ASWPALH
    	ASWPALW
    	ASWPAW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    	{ASTP, C_PAIR, C_NONE, C_NONE, C_NPOREG, C_NONE, 67, 4, 0, 0, 0},
    	{ASTP, C_PAIR, C_NONE, C_NONE, C_NPOREG, C_NONE, 67, 4, 0, 0, C_XPRE},
    	{ASTP, C_PAIR, C_NONE, C_NONE, C_NPOREG, C_NONE, 67, 4, 0, 0, C_XPOST},
    	{ASTP, C_PAIR, C_NONE, C_NONE, C_PPOREG, C_NONE, 67, 4, 0, 0, 0},
    	{ASTP, C_PAIR, C_NONE, C_NONE, C_PPOREG, C_NONE, 67, 4, 0, 0, C_XPRE},
    	{ASTP, C_PAIR, C_NONE, C_NONE, C_PPOREG, C_NONE, 67, 4, 0, 0, C_XPOST},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/obj7.go

    				q1.Reg = REGSP
    				q1.To.Type = obj.TYPE_REG
    				q1.To.Reg = REG_R20
    
    				prologueEnd = q1
    
    				// STP (R29, R30), -8(R20)
    				q1 = obj.Appendp(q1, c.newprog)
    				q1.Pos = p.Pos
    				q1.As = ASTP
    				q1.From.Type = obj.TYPE_REGREG
    				q1.From.Reg = REGFP
    				q1.From.Offset = REGLINK
    				q1.To.Type = obj.TYPE_MEM
    				q1.To.Reg = REG_R20
    				q1.To.Offset = -8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/pcln.go

    func (ctxt *Link) findfunctab(state *pclntab, container loader.Bitmap) {
    	ldr := ctxt.loader
    
    	// find min and max address
    	min := ldr.SymValue(ctxt.Textp[0])
    	lastp := ctxt.Textp[len(ctxt.Textp)-1]
    	max := ldr.SymValue(lastp) + ldr.SymSize(lastp)
    
    	// for each subbucket, compute the minimum of all symbol indexes
    	// that map to that subbucket.
    	n := int32((max - min + SUBBUCKETSIZE - 1) / SUBBUCKETSIZE)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/arch/arm64.go

    // handling.
    func IsARM64STLXR(op obj.As) bool {
    	switch op {
    	case arm64.ASTLXRB, arm64.ASTLXRH, arm64.ASTLXRW, arm64.ASTLXR,
    		arm64.ASTXRB, arm64.ASTXRH, arm64.ASTXRW, arm64.ASTXR,
    		arm64.ASTXP, arm64.ASTXPW, arm64.ASTLXP, arm64.ASTLXPW:
    		return true
    	}
    	// LDADDx/SWPx/CASx atomic instructions
    	return arm64.IsAtomicInstruction(op)
    }
    
    // IsARM64TBL reports whether the op (as defined by an arm64.A*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 09:04:58 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  10. hack/tools/go.mod

    	github.com/go-toolsmith/astcopy v1.1.0 // indirect
    	github.com/go-toolsmith/astequal v1.2.0 // indirect
    	github.com/go-toolsmith/astfmt v1.1.0 // indirect
    	github.com/go-toolsmith/astp v1.1.0 // indirect
    	github.com/go-toolsmith/strparse v1.1.0 // indirect
    	github.com/go-toolsmith/typep v1.1.0 // indirect
    	github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top