Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 313 for created (0.18 sec)

  1. tensorflow/c/eager/c_api_test.cc

    //    only worker 1.
    // 2. Create a context B using A.
    // 3. Create the variable in B.
    // 4. Create another single host server def C with only worker 0.
    // 5. Start the GRPC server for worker 0 using C.
    // 6. Create a context D using the full cluster server def E.
    // 7. Read the variable in D.
    TEST(CAPI, SingleHostServerDefV1Works) {
      // Create a server def that represents a 2-process cluster and a client.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  2. tensorflow/c/kernels_test.cc

    #include "tensorflow/core/platform/types.h"
    
    struct MyCustomKernel {
      bool created;
      bool compute_called;
    };
    
    static bool delete_called = false;
    static bool async_kernel_done = false;
    
    static void* MyCreateFunc(TF_OpKernelConstruction* ctx) {
      struct MyCustomKernel* s = new struct MyCustomKernel;
      s->created = true;
      s->compute_called = false;
    
      // Exercise attribute reads.
      TF_DataType type;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        auto begin_op =
            rewriter.create<arith::ConstantOp>(op->getLoc(), type, begin_attr);
        auto end_attr = DenseElementsAttr::get<int32_t>(type, padded_end);
        auto end_op =
            rewriter.create<arith::ConstantOp>(op->getLoc(), type, end_attr);
        auto stride_attr = DenseElementsAttr::get<int32_t>(type, padded_stride);
        auto stride_op =
            rewriter.create<arith::ConstantOp>(op->getLoc(), type, stride_attr);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/cc/quantization_unit_loc.cc

        // If the op is rewritten, FusedLoc can be created.
        for (Location child_loc : mlir::cast<FusedLoc>(loc).getLocations()) {
          std::optional<QuantizationUnitLoc::QuantizationUnit> found_unit =
              FindQuantizationUnitFromLoc(child_loc);
          if (found_unit.has_value()) return found_unit;
        }
      } else if (isa<CallSiteLoc>(loc)) {
        // If the graph is inlined, CallSiteLoc can be created.
        return FindQuantizationUnitFromLoc(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

      OpBuilder builder(merged_island.insert_point);
      auto new_island = builder.create<IslandOp>(
          merged_island.insert_point->getLoc(), result_types, operands);
      new_island.getBody().push_back(new Block);
      return new_island;
    }
    
    // Creates respective YieldOp for the new merged island.
    YieldOp CreateNewIslandYieldOp(IslandOp new_island,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

    // creates a new session_initializer op and returns it.
    SessionInitializerOp GetOrCreateSessionInitializerOp(ModuleOp module_op) {
      SessionInitializerOp session_init_op = GetSessionInitializerOp(module_op);
    
      // Create one if it doesn't exist.
      if (!session_init_op) {
        OpBuilder builder(&module_op.getBodyRegion());
    
        session_init_op = builder.create<SessionInitializerOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

        const Type expressed_type = value.getType();
        // The value needs to be requantized. A Quantize op will be created to use
        // it as the operand and replace its uses.
        const Type new_type = state.params.castFromExpressedType(expressed_type);
        if (!new_type) return;
        auto requantize_op =
            builder_.create<quantfork::QuantizeCastOp>(loc, new_type, value);
        value.replaceAllUsesWith(requantize_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/breakup-islands.cc

      if (sub_op) {
        sub_op->replaceAllUsesWith(island.getOutputs());
        sub_op->moveBefore(block, block->begin());
        island_builder.create<tf_executor::YieldOp>(loc, sub_op->getResults());
      } else {
        island_builder.create<TF::NoOp>(island.getLoc(), TypeRange{}, ValueRange{});
        island_builder.create<tf_executor::YieldOp>(loc, ValueRange{});
      }
      return island;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report_test.cc

          report_file_path));
    
      const LogicalResult run_result = pm.run(*module_op);
      ASSERT_TRUE(succeeded(run_result));
    
      // The report file is not created because `QuantizeCompositeFunctionsPass` was
      // not run.
      EXPECT_THAT(ReadFileToString(report_file_path),
                  StatusIs(absl::StatusCode::kNotFound));
    }
    
    TEST_F(SaveQuantizationReportInstrumentationTest,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/quantize_passes.cc

            mlir::quant::stablehlo::FillPresetQuantizationOptions(
                quantization_options);
      }
    
      // TODO: b/276999414 - Add activation and bias quantization component as
      // respective quantization passes are created.
      QuantizationComponentSpec weight_component;
      for (const auto& component : quantization_options_.quantization_method()
                                       .custom_quantization_method()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top