Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 115 for SAME (0.26 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

      // CHECK-SAME: %arg21: tensor<!tf_type.resource<tensor<640xf32>>>
      // CHECK-SAME: %arg22: tensor<!tf_type.resource<tensor<640xf32>>>
      // CHECK-SAME: %arg23: tensor<!tf_type.resource<tensor<512x640xf32>>>
      // CHECK-SAME: %arg24: tensor<!tf_type.resource<tensor<640x640xf32>>>
      // CHECK-SAME: %arg25: tensor<!tf_type.resource<tensor<4096xf32>>>
      // CHECK-SAME: %arg26: tensor<!tf_type.resource<tensor<640x4096xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        // CHECK:      metadata
        // CHECK-SAME: args
        // CHECK-SAME: dtype: DT_INT32
        // CHECK-SAME: shape
        // CHECK-SAME: dim
        // CHECK-SAME: size: 8
        // CHECK-SAME: kind: PARAMETER
        // CHECK-SAME: sharding
        // CHECK-SAME: type: MAXIMAL
        // CHECK-SAME: tile_assignment_dimensions: 1
        // CHECK-SAME: tile_assignment_devices: 0
        // CHECK-SAME: retvals
        // CHECK-SAME: sharding
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    class OperandsSameElementTypeConstraintBase<string op> :
      PredOpTrait<op # " operands have same element type",
        OperandsSameElementTypeConstraintBasePred>;
    
    // This is a constraint for most of the binary ops, e.g., add, mul, div, etc.
    // Binary ops lhs & rhs should have the same value type, and is capable to
    // compare quantization types as well.
    def BinaryOpSameElementTypeConstraint :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

    func.func @testHashTableAndInitializeTableToV2(%arg0: tensor<!tf_type.string>) {
      // CHECK: [[handle:%.*]] = "tf.HashTableV2"()
      // CHECK-SAME: container = ""
      // CHECK-SAME: key_dtype = !tf_type.string
      // CHECK-SAME: shared_name = "table"
      // CHECK-SAME: value_dtype = i32
      // CHECK-SAME: device = ""
      // CHECK-SAME: () -> tensor<!tf_type.resource>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    }
    
    // CHECK-LABEL: reduce_window_with_max
    // CHECK-SAME: %[[ARG0:.*]]: tensor<2x9x10x3x!quant.uniform<i8:f32, 3.000000e-01:-5>>
    // CHECK-SAME: %[[ARG1:.*]]: tensor<!quant.uniform<i8:f32, 3.000000e-01:-5>>
    // CHECK: %[[MAX_POOL:.*]] = "tfl.max_pool_2d"(%[[ARG0]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/ops.mlir

      // CHECK: "tfl.unidirectional_sequence_lstm"(%arg0,
      // CHECK-SAME: %arg1, %arg2, %arg3, %arg4, %arg5, %arg6, %arg7, %arg8, %arg9, %arg10, %arg11, %arg12, %arg13, %arg14, %arg15,
      // CHECK-SAME: %arg16, %arg17, %arg18, %arg19, %arg20, %arg21, %arg22, %arg23) <{cell_clip = 1.000000e+00 : f32, fused_activation_function = "NONE", time_major = false}> :
      // CHECK-SAME: (tensor<?x?x?xf32>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    <pre>
    [...]Point{{1.5, -3.5}, {0, 0}}     // same as [...]Point{Point{1.5, -3.5}, Point{0, 0}}
    [][]int{{1, 2, 3}, {4, 5}}          // same as [][]int{[]int{1, 2, 3}, []int{4, 5}}
    [][]Point{{{0, 1}, {1, 2}}}         // same as [][]Point{[]Point{Point{0, 1}, Point{1, 2}}}
    map[string]Point{"orig": {0, 0}}    // same as map[string]Point{"orig": Point{0, 0}}
    map[Point]string{{0, 0}: "orig"}    // same as map[Point]string{Point{0, 0}: "orig"}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      auto device_attr = (*this)->getAttrOfType<StringAttr>("device");
      // Treat missing device attribute like unspecified (= empty string) attribute.
      // Note that different op instances with the same string (including empty
      // string) are seen as dependent (same resource instance).
      if (!device_attr) return "";
      return device_attr.str();
    }
    
    //===----------------------------------------------------------------------===//
    // NotEqualOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          return op.emitOpError("'input' and 'output' should have the same rank.");
        }
    
        // Check if input and output shapes are same
        for (int i = 0; i < input_type.getRank(); i++) {
          if (input_type.getDimSize(i) != output_type.getDimSize(i)) {
            return op.emitOpError(
                "'input' and 'output' should have the same shape.");
          }
        }
      }
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  10. fastapi/applications.py

                    should have all the fields, including the ones that have the same value
                    as the default. This is different from `response_model_exclude_unset`
                    in that if the fields are set but contain the same default values,
                    they will be excluded from the response.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
Back to top