Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 126 of 126 for getc (0.51 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        auto l = mlir::dyn_cast<TypedValue<RankedTensorType>>(op.getX());
        auto r = mlir::dyn_cast<TypedValue<RankedTensorType>>(op.getY());
        if (!l || !r) return failure();
    
        auto element_type = getElementTypeOrSelf(l.getType());
        if (!element_type.isBF16()) return failure();
    
        auto out_type = op.getZ().getType();
    
        l = rewriter.create<ConvertOp>(op.getLoc(), l, rewriter.getF32Type());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        func::FuncOp func() {
          return SymbolTable::lookupNearestSymbolFrom<func::FuncOp>(*this, getF());
        }
    
        // Erases variable arguments from `batch_func_op`. `erase_indices` contains
        // the indices of the arguments to erase.
        void eraseArguments(const BitVector& erase_indices);
    
        // Gets the argument operands to the called function.
        operand_range getArgOperands() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

              }
            }
          }
          method_name: "tensorflow/serving/predict"
        }
      }
      object_graph_def {
        nodes {
          children {
            node_id: 1
            local_name: "get_c"
          }
          children {
            node_id: 2
            local_name: "signatures"
          }
          user_object {
            identifier: "_generic_user_object"
            version {
              producer: 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		x := v_0
    		v.reset(OpAMD64ROUNDSD)
    		v.AuxInt = int8ToAuxInt(1)
    		v.AddArg(x)
    		return true
    	}
    }
    func rewriteValueAMD64_OpGetG(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (GetG mem)
    	// cond: v.Block.Func.OwnAux.Fn.ABI() != obj.ABIInternal
    	// result: (LoweredGetG mem)
    	for {
    		mem := v_0
    		if !(v.Block.Func.OwnAux.Fn.ABI() != obj.ABIInternal) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewritegeneric.go

    		v.AddArg2(v0, v1)
    		return true
    	}
    }
    func rewriteValuegeneric_OpNilCheck(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	fe := b.Func.fe
    	// match: (NilCheck ptr:(GetG mem) mem)
    	// result: ptr
    	for {
    		ptr := v_0
    		if ptr.Op != OpGetG {
    			break
    		}
    		mem := ptr.Args[0]
    		if mem != v_1 {
    			break
    		}
    		v.copyOf(ptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/opGen.go

    		name:    "IsSliceInBounds",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:     "NilCheck",
    		argLen:   2,
    		nilCheck: true,
    		generic:  true,
    	},
    	{
    		name:      "GetG",
    		argLen:    1,
    		zeroWidth: true,
    		generic:   true,
    	},
    	{
    		name:    "GetClosurePtr",
    		argLen:  0,
    		generic: true,
    	},
    	{
    		name:    "GetCallerPC",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top