Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Tys (0.05 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. 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)
Back to top