Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for whereCol (0.15 sec)

  1. src/database/sql/fakedb_test.go

    		t, ok := db.table(s.table)
    		db.mu.Unlock()
    		if !ok {
    			return nil, fmt.Errorf("fakedb: table %q doesn't exist", s.table)
    		}
    
    		if s.table == "magicquery" {
    			if len(s.whereCol) == 2 && s.whereCol[0].Column == "op" && s.whereCol[1].Column == "millis" {
    				if args[0].Value == "sleep" {
    					time.Sleep(time.Duration(args[1].Value.(int64)) * time.Millisecond)
    				}
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.cc

            TypeID::get<TF::TruncateModOp>(),
            TypeID::get<TF::UniqueOp>(),
            TypeID::get<TF::UnpackOp>(),
            TypeID::get<TF::UpperBoundOp>(),
            TypeID::get<TF::WhereOp>(),
            TypeID::get<TF::XlaSendTPUEmbeddingGradientsOp>(),
            TypeID::get<TF::XlaBroadcastHelperOp>(),
            TypeID::get<TF::XlaCallModuleOp>(),
            TypeID::get<TF::XlaCustomCallV2Op>(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/compilability_check_util.h

        bool allow_string_consts = true;
    
        // Whether to allow the compilation of CollectiveReduceV2Op.
        bool allow_collective_reduce_v2 = true;
    
        // Whether to allow the compilation of WhereOp.
        bool allow_where_op = true;
    
        // Whether to allow the compilation of UniqueOp. Compilation of the UniqueOp
        // generates output with bounded dynamic shape that may cause failures with
        // auto clustering.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

          OperationName(mlir::TF::DynamicPartitionOp::getOperationName(), context),
          OperationName(mlir::TF::OutfeedEnqueueOp::getOperationName(), context),
          OperationName(mlir::TF::WhereOp::getOperationName(), context),
          OperationName(mlir::TF::UniqueOp::getOperationName(), context),
          OperationName(mlir::TF::XlaSetDynamicDimensionSizeOp::getOperationName(),
                        context),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top