Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for red_car (0.28 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/cmd/compile/internal/syntax/testdata/slices.go

    var limited1 = Map[int, byte](input, limiter)
    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, 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: Wed Mar 30 18:02:18 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/cc/tools/freeze_saved_model_test.cc

        Output a = ops::Const(scope.WithOpName("a"), 10.0f, {});
        Output read_var;
        if (use_resource) {
          Output var =
              ops::VarHandleOp(scope.WithOpName("var"), DataType::DT_FLOAT, {});
          if (use_identity) {
            Output identity = ops::Identity(scope.WithOpName("identity"), var);
            read_var =
                ops::ReadVariableOp(scope.WithOpName("var/Read/ReadVariableOp"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/tests/resource_inlining.mlir

      // CHECK-LABEL: func @main
      func.func @main() -> tensor<f32> {
        // CHECK-NEXT: %[[VAR:.*]] = "tf.VarHandleOp"
        // CHECK-NEXT: %[[READ_VAR:.*]] = "tf.ReadVariableOp"(%[[VAR]])
        // CHECK-NEXT: return %[[READ_VAR]]
        // CHECK-NOT: "tf.Cast"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. 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)
Back to top