Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 107 for functor (0.14 sec)

  1. src/cmd/go/alldocs.go

    //	go doc template.new
    //		Show documentation for html/template's New function.
    //		(html/template is lexically before text/template)
    //	go doc text/template.new # One argument
    //		Show documentation for text/template's New function.
    //	go doc text/template new # Two arguments
    //		Show documentation for text/template's New function.
    //
    //	At least in the current tree, these invocations all print the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    }
    
    ElementsAttr ExpandTo4DForDepthwiseConv(Attribute a) {
      return ExpandTo4DForConvImpl(a, true);
    }
    
    TypeAttr RescaleQtype(Type input, Attribute factor) {
      return quant::RescaleQuantizedType(input, factor);
    }
    
    // Returns `true` if reducing `axes` in `input` with `keep_dims=true` results in
    // the specified `shape` and `false` otherwise.
    static bool ShapeMatchesReduceWithKeepAxes(Value input,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dev": true
        },
        "node_modules/function-bind": {
          "version": "1.1.1",
          "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
          "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
          "dev": true
        },
        "node_modules/function.prototype.name": {
          "version": "1.1.5",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    		return true // eliminates special-casing 2.
    	} else if (x & 1) == 0 {
    		return false // eliminates even numbers >2.
    	}
    
    	limit := uint64(math.Sqrt(float64(x)))
    	for factor := uint64(3); factor <= limit; factor += 2 {
    		if (x % factor) == 0 {
    			return false
    		}
    	}
    	return true
    }
    
    func validateSubset(subset *networking.Subset) error {
    	return appendErrors(validateSubsetName(subset.Name),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        // CHECK: return
        // CHECK-SAME: tensor<1x2x3xf32>
        func.return %0 : tensor<*xf32>
      }
    
      // Verify shape propagation from function arg -> if region body -> if region output -> function return type
      // CHECK-LABEL: shape_from_if_to_region_bodies_to_output
      // CHECK-SAME: -> tensor<1x2x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        QuantizableResult,
        PredOpTrait<"input and output must have same element type",
          TFL_TCresVTEtIsSameAsOp<0, 0>>]> {
      let summary = "Hardswish activation function.";
      let description = [{
        Computes hard-swish activation function
          f(x) -> (x * relu6(x+3))/6
        element-wise.
      }];
    
      let arguments = (ins TFL_TensorOf<[F32, QUI8, QI8]>:$input);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

            // expected-remark@above {{Successors: {4}}}
            %0 = "tf.XlaLaunch"(%input) {function = @func, operandSegmentSizes = array<i32: 0, 1, 0>, device = "CPU:0"} : (tensor<f32>) -> tensor<f32>
            // expected-remark@above {{ID: 0}}
            // expected-remark@above {{Successors: {1}}}
            %1 = "tf.XlaLaunch"(%input) {function = @func, operandSegmentSizes = array<i32: 0, 1, 0>, device = "CPU:0"} : (tensor<f32>) -> tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    func.func @call_func(%arg0: tensor<i32>) -> tensor<i32> {
      func.return %arg0 : tensor<i32>
    }
    
    // -----
    
    // Tests that undefined call function produces error.
    func.func @test_undefined_function() -> () {
      // expected-error @below {{'f' attribute refers to an undefined function: undefined_func}}
      "tf.LegacyCall"() {f = @undefined_func} : () -> ()
      func.return
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

        override val function: KaCallableSymbol,
        override val containingClass: KaClassLikeSymbol,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<KtFunction>(firDiagnostic, token), KaFirDiagnostic.AbstractFunctionInNonAbstractClass
    
    internal class AbstractFunctionWithBodyImpl(
        override val function: KaCallableSymbol,
        firDiagnostic: KtPsiDiagnostic,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        if (called_computations.size() != 1) {
          return op.emitOpError()
                 << "ApproxTopK takes exactly 1 called_computation.";
        }
        mlir::func::FuncOp callee = module_op_->lookupSymbol<mlir::func::FuncOp>(
            mlir::cast<FlatSymbolRefAttr>(op.getCalledComputations()[0]));
        mlir::FunctionType callee_type = callee.getFunctionType();
        SmallVector<Type, 4> expected_callee_input_types;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top