Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 185 for Axis (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    //   allow num_slices > 1, and allow non default arguments for $mode,
    //   $narrow_range, and $axis.
    def LowerDequantizeOp : Pat<
      (TF_DequantizeOp:$result
        $input, $min_range, $max_range,
        TF_AnyStrAttrOf<["MIN_COMBINED"]>:$mode,
        ConstBoolAttrFalse:$narrow_range,
        ConstantAttr<I64Attr, "-1">:$axis),
      (TF_CastOp
        (TF_AddV2Op
          (TF_MulOp
            (TF_AddV2Op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. build-logic/profiling/src/main/kotlin/gradlebuild/jmh/tasks/JmhHTMLReport.kt

            <script>
            var chart = c3.generate({
                data: {
                    url: 'data.csv',
                    type: 'bar',
                    x: 'Scenario'
                },
                axis: {
                    x: {
                        type: 'category'
                    },
                    y: {
                        label: 'ops/s',
                        tick: {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_dump_tensor_op.mlir

    // WholeModel-DAG: %[[c:.*]] = "tf.ConcatV2"(%[[m0]], %[[m1]], %[[axis]])
    // WholeModel-DAG: return %[[c]]
    
    // IntPerLayer-LABEL: func @matmul2_concat
    // IntPerLayer-DAG: %[[w0:.*]] = "tf.Const"() <{value = dense<{{\[\[}}-0.630731344
    // IntPerLayer-DAG: %[[w1:.*]] = "tf.Const"() <{value = dense<{{\[\[}}-0.211145893
    // IntPerLayer-DAG: %[[axis:.*]] = "tf.Const"() <{value = dense<-1> : tensor<i32>}> : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.td

    defm : LiftCompositeOpsWithActivation<TF_Relu6Op, "relu6">;
    
    def LiftGather : Pat<
      (TF_GatherV2Op:$res $params, $indices, $axis, $batch_dims),
      (LiftAsTFPartitionedCall<"composite_gather_fn">
        (ArgumentList $params, $indices, $axis),
        (ResultList $res),
        (NamedAttributeList
          (NamedAttr<"batch_dims"> $batch_dims))),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  5. pkg/scheduler/apis/config/types_pluginargs.go

    }
    
    // UtilizationShapePoint represents a single point of a priority function shape.
    type UtilizationShapePoint struct {
    	// Utilization (x axis). Valid values are 0 to 100. Fully utilized node maps to 100.
    	Utilization int32
    	// Score assigned to a given utilization (y axis). Valid values are 0 to 10.
    	Score int32
    }
    
    // ResourceSpec represents single resource.
    type ResourceSpec struct {
    	// Name of the resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 23:15:53 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        %axis = "tf.Const"() { value = dense<0> : tensor<1xi32> } : () -> tensor<1xi32>
        // CHECK: %[[REVERSED:.*]] = "mhlo.reverse"(%[[BOUNDED]])
        // CHECK-SAME: {dimensions = dense<0> : tensor<1xi64>}
        // CHECK-SAME: (tensor<?xf32, #mhlo.type_extensions<bounds = [4]>>) -> tensor<?xf32, #mhlo.type_extensions<bounds = [4]>>
        %1 = "tf.ReverseV2"(%0, %axis) : (tensor<?xf32>, tensor<1xi32>) -> tensor<?xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (1)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library.mlir

                             %weight : tensor<*xi8>, %input : tensor<*xi32>, %axis : tensor<i32>,
                             %weight_scale : tensor<*xf32>, %weight_zp : tensor<*xi32>,
                             %out_scale : tensor<*xf32>, %out_zp : tensor<*xi32>) -> tensor<*xi8>
          attributes {tf_quant.quantized_ops = ["Gather"]} {
    
        %out = "tf.GatherV2"(%weight, %input, %axis) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 01:16:10 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. src/math/cmplx/tan.go

    //
    // DESCRIPTION:
    //
    // If
    //     z = x + iy,
    //
    // then
    //
    //           sin 2x  +  i sinh 2y
    //     w  =  --------------------.
    //            cos 2x  +  cosh 2y
    //
    // On the real axis the denominator is zero at odd multiples
    // of PI/2. The denominator is evaluated by its Taylor
    // series near these points.
    //
    // ctan(z) = -i ctanh(iz).
    //
    // ACCURACY:
    //
    //                      Relative error:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  9. tensorflow/cc/tools/freeze_saved_model_test.cc

      GraphDef graph_def;
      Scope scope = Scope::NewRootScope();
      Output a = ops::Const(scope.WithOpName("a"), {10.0f, 10.0f}, {2});
      Output axis = ops::Const(scope.WithOpName("axis"), 0, {});
      OutputList split = ops::Split(scope.WithOpName("split"), axis, a, 2).output;
      Output b = ops::Const(scope.WithOpName("b"), 10.0f, {});
      Output c = ops::Mul(scope.WithOpName("c"), split[1], b);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

    // The result is wrapped by a type attribute. Returns nullptr if the cast
    // isn't valid.
    //
    // `axis` is to specify the quantization dimension in the `target` and only
    // used if the element type of `source` is a per-channel quantized type. During
    // the casting, the quantization dimension of the result type needs to be set
    // this new `axis` value.
    TypeAttr CastQuantizedTypeAttrFromExpressedType(Builder builder,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top