Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for IntegerType (0.17 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"a": objectType(map[string]schema.Structural{
    					"b": integerType,
    					"c": integerType,
    					"d": withNullable(true, integerType),
    				}),
    				"a1": objectType(map[string]schema.Structural{
    					"b1": objectType(map[string]schema.Structural{
    						"c1": integerType,
    					}),
    					"d2": objectType(map[string]schema.Structural{
    						"e2": integerType,
    					}),
    				}),
    			}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

                                           PatternRewriter *rewriter) {
      // Create the start position of slice. This is done by concatenating
      // `start_index` and `partial_start_position` together.
      IntegerType shape_dtype = rewriter->getIntegerType(32);
      RankedTensorType position_type =
          tensorflow::GetTypeFromTFTensorShape({-1}, shape_dtype);
      Value partial_start_position =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

                                << zero_points_type << ".\n");
        return failure();
      }
    
      if (Type zero_points_element_type = zero_points_type.getElementType();
          !mlir::isa<IntegerType>(zero_points_element_type)) {
        LLVM_DEBUG(llvm::dbgs() << "Zero point should be an integer type. Got: "
                                << zero_points_element_type << ".\n");
        return failure();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      auto elem_type = shaped_type.getElementType();
      if (auto float_type = elem_type.dyn_cast<mlir::FloatType>()) {
        TF_ASSIGN_OR_RETURN(value, tfl::ConvertFloatBuffer(shaped_type, buffer));
      } else if (elem_type.isa<mlir::IntegerType>()) {
        TF_ASSIGN_OR_RETURN(value, tfl::ConvertIntBuffer(shaped_type, buffer));
      } else if (elem_type.isa<mlir::TF::StringType>()) {
        tensorflow::TensorProto repr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    		// simply a read on JSON from MinIO and write it back as "parquet".
    		//
    		// import org.apache.spark.sql.SparkSession
    		// import org.apache.spark.sql.types.{IntegerType, StringType, StructField, StructType}
    		// object SparkJSONRead {
    		//   def main(args: Array[String]): Unit = {
    		//     val spark:SparkSession = SparkSession.builder()
    		//       .appName("SparkByExample")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
Back to top