Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,016 for int64At (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

    static mlir::ShapedType ReversePermuteShapedType(
        mlir::ShapedType type, ArrayRef<int64_t> permutation) {
      if (!type.hasRank()) return type;
    
      auto shape = type.getShape();
      SmallVector<int64_t, 4> new_shape(shape.size());
    
      for (int i = 0; i < permutation.size(); ++i) {
        int64_t index = permutation[i];
        assert(index < shape.size());
        new_shape[index] = shape[i];
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.h

        flatbuffers::FlatBufferBuilder* builder, const tflite::Model* input_model,
        const tflite::TensorType& inference_type,
        const absl::flat_hash_set<std::string>& denylisted_ops,
        const CustomOpMap& custom_op_map,
        int64_t minimum_elements_for_weights = 1024,
        bool disable_per_channel = false, bool weight_only_quantization = false,
        bool legacy_float_scale = false);
    
    // Overloading methods to support old quantizer versions API
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. tensorflow/c/eager/immediate_execution_context.h

      // Get a list of the names of functions that have been registered.
      virtual std::vector<string> ListFunctionNames() = 0;
    
      struct CacheStats {
        int64_t kernel_cache_size;
        int64_t device_cache_size;
        std::map<std::string, int64_t> func_kernel_cache_entries;
        int64_t local_rendezvous_cache_active_size;
      };
      virtual CacheStats GetCacheStats() = 0;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 08:34:00 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        auto can_convert_to_bilinear = [](bool align_corners, int64_t dilation,
                                          int64_t padding, int64_t stride,
                                          int64_t input_spatial,
                                          int64_t output_spatial) {
          int64_t input_spatial_size =
              align_corners ? input_spatial - 1 : input_spatial;
          int64_t output_spatial_size =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  5. src/math/rand/v2/example_test.go

    	// Int32, Int64, and Uint32 generate values of the given width.
    	// The Int method (not shown) is like either Int32 or Int64
    	// depending on the size of 'int'.
    	show("Int32", r.Int32(), r.Int32(), r.Int32())
    	show("Int64", r.Int64(), r.Int64(), r.Int64())
    	show("Uint32", r.Uint32(), r.Uint32(), r.Uint32())
    
    	// IntN, Int32N, and Int64N limit their output to be < n.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:09:26 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/utils/constant_utils.cc

                                                     static_cast<int32_t>(value));
              break;
            case 64:
              return DenseElementsAttr::get<int64_t>(shaped_type,
                                                     static_cast<int64_t>(value));
              break;
            default:
              return tensorflow::Status(absl::StatusCode::kInvalidArgument,
                                        "Unsupported type");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

            return true;
          }
        }
      }
      return false;
    }
    
    }  // namespace
    
    constexpr int64_t ResourceAliasAnalysisInfo::kUnknownResourceId;
    
    void IncrementResourceTypeId(int64_t& resource_type_id) {
      if (resource_type_id == ResourceAliasAnalysisInfo::kMaxResourceTypeId) {
        // We don't expect this to happen, currently there are 10 resource types in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/mlir_graph_optimization_pass_test.cc

      monitoring::testing::CellReader<int64_t> mlir_function_pass_fallback_count_ =
          monitoring::testing::CellReader<int64_t>(
              /* metric name */
              "/tensorflow/core/mlir_function_pass_fallback_count");
      monitoring::testing::CellReader<int64_t>
          mlir_graph_optimization_pass_fallback_count_ =
              monitoring::testing::CellReader<int64_t>(
                  /* metric name */
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 08:25:30 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/fold_broadcast.cc

      LogicalResult RewriteOp(
          Operation* op, PatternRewriter& rewriter,
          const std::function<bool(ArrayRef<int64_t>, ArrayRef<int64_t>,
                                   SmallVectorImpl<int64_t>&)>&
              get_broadcasted_shape) const;
    
      LogicalResult RewriteBatchMatMulV2Op(Operation* op,
                                           PatternRewriter& rewriter) const;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

                        const TFE_OpAttrs* attributes, int expected_max_outputs,
                        CancellationManager& cancellation_manager,
                        absl::optional<int64_t> step_id = absl::nullopt);
      // Block until the previous `StartExecute` operation has executed. Forwards
      // the status from `TFE_Execute` and returns outputs if the status is OK.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
Back to top