Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for _arg0 (0.06 sec)

  1. src/go/types/builtins.go

    	case _Offsetof:
    		// unsafe.Offsetof(x T) uintptr, where x must be a selector
    		// (no argument evaluated yet)
    		arg0 := argList[0]
    		selx, _ := ast.Unparen(arg0).(*ast.SelectorExpr)
    		if selx == nil {
    			check.errorf(arg0, BadOffsetofSyntax, invalidArg+"%s is not a selector expression", arg0)
    			check.use(arg0)
    			return
    		}
    
    		check.expr(nil, x, selx.X)
    		if x.mode == invalid {
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/constants.mlir

      func.return %0: tensor<3x2x!quant.uniform<u8<1:255>:f32, 1.0>>
    }
    
    // Identity function to make the exporter happy
    func.func @main(%arg0: tensor<4xi8>) -> tensor<4xi8> {
      func.return %arg0 : tensor<4xi8>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. src/runtime/race_ppc64le.s

    // Direct Go->C race call has only switched SP, finish g->g0 switch by setting correct g.
    // The overall effect of Go->C->Go call chain is similar to that of mcall.
    // RARG0 contains command code. RARG1 contains command-specific context.
    // See racecallback for command codes.
    TEXT	runtime·racecallbackthunk(SB), NOSPLIT|NOFRAME, $0
    	// Handle command raceGetProcCmd (0) here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/codegen_test_h.golden

      }
      float* arg0_data() {
        return static_cast<float*>(arg_data(0));
      }
      float& arg0(size_t dim0, size_t dim1) {
        return (*static_cast<float(*)[1][2]>(
            arg_data(0)))[dim0][dim1];
      }
      const float* arg0_data() const {
        return static_cast<const float*>(arg_data(0));
      }
      const float& arg0(size_t dim0, size_t dim1) const {
        return (*static_cast<const float(*)[1][2]>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

    static const char kImportModelDefaultGraphFuncName[] = "main";
    
    // Please refer to the TFG dialect description for the list of used attributes.
    // Belows are the attributes in TFE.
    // TFE Arguments and Results (Got from "_Arg",
    // "_Retval", .etc)
    //  NodeDef.device <-> "tf.device"
    //  NodeDef.attr <-> "tf."
    //
    // TFE general operations
    //  NodeDef.device <-> "device"
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_custom_aggregation_ops.cc

              continue;
            }
    
            quantizable_values.push_back(input.get());
            aggregator_ids.push_back(
                (llvm::Twine(composite_function_name.value()) + "_arg_" +
                 llvm::Twine(input.getOperandNumber()) + "_calibration_method_" +
                 llvm::Twine(calib_opts_.calibration_method()))
                    .str());
          }
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/op.go

    	call              bool      // is a function call
    	tailCall          bool      // is a tail call
    	nilCheck          bool      // this op is a nil check on arg0
    	faultOnNilArg0    bool      // this op will fault if arg0 is nil (and aux encodes a small offset)
    	faultOnNilArg1    bool      // this op will fault if arg1 is nil (and aux encodes a small offset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. src/text/template/funcs.go

    // the first false argument it encounters, or the last argument.
    func and(arg0 reflect.Value, args ...reflect.Value) reflect.Value {
    	panic("unreachable") // implemented as a special case in evalCall
    }
    
    // or computes the Boolean OR of its arguments, returning
    // the first true argument it encounters, or the last argument.
    func or(arg0 reflect.Value, args ...reflect.Value) reflect.Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

    // exactly the block args and results, return the name of the called function.
    std::optional<StringRef> UnwrapSingleFunctionCall(Region& region) {
      // The pattern we're matching is
      // ^block(arg0, arg1, ..., argN):
      //   r0, r1, ..., rN = func.call @foo(arg0, arg1, ..., argN)
      //   "tf.yield"(r0, r1, ..., rN)
      if (!region.hasOneBlock()) return std::nullopt;
      Block& block = region.front();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

    // be stablehlo.add op.
    //
    // ```
    // %0 = stablehlo.constant dense<3>
    // %1 = stablehlo.constant dense<4>
    // %2 = stablehlo.constant dense<2>
    // %3 = stablehlo.convolution(%%arg0, %%arg1) :
    //          (tensor<?x3x4x3xf32>, tensor<2x3x3x2xf32>) -> tensor<?x3x4x2xf32>
    // %4 = stablehlo.get_dimension_size %3, dim = 0 :
    //          (tensor<?x3x4x2xf32>) -> tensor<i32>
    // %5 = stablehlo.reshape %4 :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top