Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for red_car (0.13 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"receipt":                              "\U0001f9fe",
    	"record_button":                        "\u23fa\ufe0f",
    	"recycle":                              "\u267b\ufe0f",
    	"red_car":                              "\U0001f697",
    	"red_circle":                           "\U0001f534",
    	"red_envelope":                         "\U0001f9e7",
    	"red_haired_man":                       "\U0001f468\u200d\U0001f9b0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/list9.go

    	}
    	if REG_A0 <= r && r <= REG_A7 {
    		return fmt.Sprintf("A%d", r-REG_A0)
    	}
    	if r == REG_CR {
    		return "CR"
    	}
    	if REG_SPR0 <= r && r <= REG_SPR0+1023 {
    		switch r {
    		case REG_XER:
    			return "XER"
    
    		case REG_LR:
    			return "LR"
    
    		case REG_CTR:
    			return "CTR"
    		}
    
    		return fmt.Sprintf("SPR(%d)", r-REG_SPR0)
    	}
    
    	if r == REG_FPSCR {
    		return "FPSCR"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 21:12:43 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/slices.go

    var limited2 = Map(input, limiter) // using type inference
    
    func reducer(x float64, y int) float64 {
    	return x + float64(y)
    }
    
    var reduced1 = Reduce[int, float64](input, 0, reducer)
    var reduced2 = Reduce(input, 1i /* ERROR "overflows" */, reducer) // using type inference
    var reduced3 = Reduce(input, 1, reducer) // using type inference
    
    func filter(x int) bool {
    	return x&1 != 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/utils.h

      Location loc = body->getLoc();
      block->addArguments({type, type}, SmallVector<Location, 2>(2, loc));
    
      auto reducer =
          builder->create<Op>(loc, block->getArgument(0), block->getArgument(1));
      builder->create<ReturnOp>(loc, reducer.getResult());
    }
    
    ConstantOp GetScalarConstOfType(Type ty, Location loc, int64_t raw_value,
                                    OpBuilder* builder);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_partitioning.cc

        assign_var.erase();
      }
    
      for (OpOperand& operand : cluster_func->getOpOperands()) {
        auto read_var = llvm::dyn_cast_or_null<TF::ReadVariableOp>(
            operand.get().getDefiningOp());
        if (!read_var) continue;
        auto partitioned_input =
            llvm::dyn_cast_or_null<TF::TPUPartitionedInputV2Op>(
                read_var.getResource().getDefiningOp());
        if (!partitioned_input || !AllResourceTypesHaveSubtypes(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/replicate_invariant_op_hoisting.mlir

    // CHECK: tf_device.replicate([%[[ARG_0]], %[[ARG_1]]] as %[[RI:[a-z0-9]*]]: tensor<*x!tf_type.resource>)
    // CHECK:   %[[READ_VAR:[0-9]*]] = "tf.ReadVariableOp"(%[[RI]])
    // CHECK:   %[[OP_A:[0-9]*]] = "tf.opA"(%[[READ_VAR]], %[[VAR_SHAPE]], %[[RI]])
    // CHECK:   tf_device.return %[[READ_VAR]], %[[VAR_SHAPE]], %[[OP_A]]
    
    // CHECK-LABEL: func @replicate_arg_shape_with_packed
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf_mlir_reduce_main.cc

    ==============================================================================*/
    
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    #include "mlir/Reducer/ReductionPatternInterface.h"  // from @llvm-project
    #include "mlir/Tools/mlir-reduce/MlirReduceMain.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/init_mlir.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 21 20:13:57 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/a.out.go

    	REG_A2
    	REG_A3
    	REG_A4
    	REG_A5
    	REG_A6
    	REG_A7
    
    	REG_MSR
    	REG_FPSCR
    	REG_CR
    
    	REG_SPECIAL = REG_CR0
    
    	REG_CRBIT0 = REG_CR0LT // An alias for a Condition Register bit 0
    
    	REG_SPR0 = obj.RBasePPC64 + 1024 // first of 1024 registers
    
    	REG_XER = REG_SPR0 + 1
    	REG_LR  = REG_SPR0 + 8
    	REG_CTR = REG_SPR0 + 9
    
    	REGZERO = REG_R0 /* set to zero */
    	REGSP   = REG_R1
    	REGSB   = REG_R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/BUILD

            "@llvm-project//llvm:FileCheck",
            "@llvm-project//llvm:not",
        ],
    )
    
    filegroup(
        name = "reducer_tester",
        testonly = True,
        srcs = glob(
            [
                "reducer/*.sh",
            ],
        ),
    )
    
    tf_cc_test(
        name = "xla_sharding_util_test",
        srcs = ["xla_sharding_util_test.cc"],
        deps = [
            "//tensorflow/compiler/mlir/tensorflow:xla_sharding_util",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

        "tf.Yield"() : () -> ()
      }, {
        // CHECK: %[[READ_VAR:.*]] = "tf.ReadVariableOp"(%[[VAR]])
        // CHECK: "tf.Slice"(%[[READ_VAR]]
        %read = "tf.TensorArrayReadV3"(%arg0, %index, %flow) : (tensor<!tf_type.resource>, tensor<i32>, tensor<f32>) -> tensor<3xf32>
        "tf.Yield"() : () -> ()
      }, {
        // CHECK: %[[READ_VAR:.*]] = "tf.ReadVariableOp"(%[[VAR]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
Back to top