Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Tys (0.08 sec)

  1. src/time/mono_test.go

    		check(txs+"w.Before("+tys+")", txw.Before(ty), cw < 0)
    		check(txs+".Before("+tys+"w)", tx.Before(tyw), cw < 0)
    		check(txs+"w.Before("+tys+"w)", txw.Before(tyw), cw < 0)
    
    		check(txs+".Equal("+tys+")", tx.Equal(ty), c == 0)
    		check(txs+"w.Equal("+tys+")", txw.Equal(ty), cw == 0)
    		check(txs+".Equal("+tys+"w)", tx.Equal(tyw), cw == 0)
    		check(txs+"w.Equal("+tys+"w)", txw.Equal(tyw), cw == 0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 19 17:10:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/op.go

    // for a call that will be expanded later in the SSA phase.
    func (a *AuxCall) LateExpansionResultType() *types.Type {
    	var tys []*types.Type
    	for i := int64(0); i < a.NResults(); i++ {
    		tys = append(tys, a.TypeOfResult(i))
    	}
    	tys = append(tys, types.TypeMem)
    	return types.NewResults(tys)
    }
    
    // NArgs returns the number of arguments (including receiver, if there is one).
    func (a *AuxCall) NArgs() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

          return
    
        if isinstance(values, list):
          vals, tys = zip(*values)
        else:
          vals = values[0]
          tys = values[1]
    
        if isinstance(tys, list) or isinstance(tys, tuple):
          tys = [str(t) for t in tys]
          self._emit_with_loc('{} : {}'.format(', '.join(vals), ', '.join(tys)),
                              node)
        elif tys != TFRTypes.NONE:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/python/mlir_wrapper/ops.cc

            return mlir::OperationState(loc, llvm::StringRef(name));
          }))
          .def("addTypes",
               [](mlir::OperationState& state, std::vector<mlir::Type> tys) {
                 state.addTypes(mlir::ArrayRef<mlir::Type>(tys));
               })
          .def("addOperands",
               [](mlir::OperationState& os, std::vector<mlir::Value> ops) {
                 os.addOperands(mlir::ArrayRef<mlir::Value>(ops));
               })
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 02:12:49 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/fmt.go

    	}
    	if t.Kind() == TTUPLE {
    		b.WriteString(t.FieldType(0).String())
    		b.WriteByte(',')
    		b.WriteString(t.FieldType(1).String())
    		return
    	}
    
    	if t.Kind() == TRESULTS {
    		tys := t.extra.(*Results).Types
    		for i, et := range tys {
    			if i > 0 {
    				b.WriteByte(',')
    			}
    			b.WriteString(et.String())
    		}
    		return
    	}
    
    	if t == AnyType || t == ByteType || t == RuneType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          return success();
        }
        return failure();
      }
    
      // Walks up the op and ignore all precedding ops of type Tys.
      // Returns the first producer op whose type is not in Tys.
      template <typename... Tys>
      Value recursivelyWalkUp(Value op) const {
        while (llvm::isa_and_nonnull<Tys...>(op.getDefiningOp())) {
          Operation* producer = op.getDefiningOp();
          op = producer->getOperand(/*idx=*/0);
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top