Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 834 for Auto (0.24 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_common.h

    }
    
    template <typename OpTy>
    void PrintExecuteOpFuncAttribute(mlir::OpAsmPrinter &p, OpTy op) {
      auto op_func_attrs = op.getOpFuncAttrs();
      if (!op_func_attrs.empty()) {
        auto print_key_value = [&](mlir::Attribute attr) {
          auto key_value = mlir::cast<mlir::ArrayAttr>(attr).getValue();
          auto key = key_value[0];
          auto value = key_value[1];
    
          p << mlir::cast<mlir::StringAttr>(key).getValue();
          p << " = ";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/outline_composites.cc

      auto one_val = DenseElementsAttr::get(type, kOne);
      auto one_cst =
          rewriter.create<stablehlo::ConstantOp>(rewriter.getUnknownLoc(), one_val);
    
      auto half_val = DenseElementsAttr::get(type, kHalf);
      auto half_cst =
          rewriter.create<stablehlo::ConstantOp>(one_cst.getLoc(), half_val);
    
      auto one_over_root2_val = DenseElementsAttr::get(type, kOneOverRoot2);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_vendor_auto.txt

    import _ "example.com/printversion"
    -- $WORK/auto/auto.go --
    package auto
    -- $WORK/auto/replacement-version/go.mod --
    module example.com/version
    -- $WORK/auto/replacement-version/version.go --
    package version
    
    const V = "v1.0.0-replaced"
    -- $WORK/modules-1.14.txt --
    # example.com/printversion v1.0.0
    ## explicit
    example.com/printversion
    # example.com/version v1.0.0 => ./replacement-version
    example.com/version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/device_compilation_cache_test.cc

    TEST(DeviceCompilationCacheTest, StoreMultipleEntries) {
      auto cache = std::make_unique<Cache>();
    
      TF_ASSERT_OK_AND_ASSIGN(auto key1, BuildSampleSignature("foo"));
      TF_ASSERT_OK_AND_ASSIGN(auto key2, BuildSampleSignature("bar"));
    
      auto compilation_result1 = std::make_unique<XlaCompiler::CompilationResult>();
      auto compilation_result2 = std::make_unique<XlaCompiler::CompilationResult>();
      auto executable1 = std::make_unique<FakeExecutable>("foo_exe");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/error_util_test.cc

      MLIRContext context;
      auto id =
          StringAttr::get(&context, "//tensorflow/python/keras/keras_file.py");
      auto loc = FileLineColLoc::get(&context, id, 0, 0);
      auto id2 =
          StringAttr::get(&context, "//tensorflow/python/something/my_test.py");
      auto loc2 = FileLineColLoc::get(&context, id2, 0, 0);
      auto id3 = StringAttr::get(&context, "python/tensorflow/show_file.py");
      auto loc3 = FileLineColLoc::get(&context, id3, 0, 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/cc_ops_test.cc

      // a = [3 2; -1 0]
      auto a = Const(root, {{3.f, 2.f}, {-1.f, 0.f}});
      // x = [1.0; 1.0]
      auto x = Const(root.WithOpName("x"), {{1.f}, {1.f}});
      // y = a * x
      auto y = MatMul(root.WithOpName("y"), a, x);
      // y2 = y.^2
      auto y2 = Square(root, y);
      // y2_sum = sum(y2)
      auto y2_sum = Sum(root, y2, 0);
      // y_norm = sqrt(y2_sum)
      auto y_norm = Sqrt(root, y2_sum);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/compile/JavaModuleCompileIntegrationTest.groovy

                    manifest {
                        attributes 'Automatic-Module-Name': 'auto'
                    }
                }
    
            """
            file('auto-module/src/main/java/auto/AutoClass.java')  << """
                package auto;
    
                public class AutoClass {
                    public void m() {
                        // can access, because a auto module sees the unnamed module
                        new moda.ModaClass();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/function.cc

      TF_RETURN_IF_ERROR(ctx->RegisterFunction(trace.get()));
      auto cleanup = absl::MakeCleanup(
          [fname, ctx]() { ctx->RemoveFunction(fname).IgnoreError(); });
      auto call_op = AbstractOperationPtr(ctx->CreateOperation());
      TF_RETURN_IF_ERROR(
          call_op->Reset(fname.c_str(), /*raw_device_name=*/nullptr));
      for (auto t : inputs) {
        TF_RETURN_IF_ERROR(call_op->AddInput(t));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/next_pluggable_device/tensor_pjrt_buffer_util_test.cc

    using ::testing::NotNull;
    using ::tsl::testing::StatusIs;
    
    PJRT_Buffer* CreateCBuffer() {
      auto status = pjrt::PjrtApi(DEVICE_CPU);
      if (!status.ok()) {
        CHECK_OK(pjrt::SetPjrtApi(DEVICE_CPU, GetPjrtApi()));
      }
      auto pjrt_client = xla::GetCApiClient(DEVICE_CPU);
      CHECK_OK(pjrt_client.status());
      auto c_api_client = down_cast<xla::PjRtCApiClient*>(pjrt_client->get());
      std::vector<int32_t> data(1, 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 16:29:40 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/common/ImplementedInvokerAssistant.java

        @Override
        public DBDef assistCurrentDBDef() {
            // TODO Auto-generated method stub
            return null;
        }
    
        @Override
        public DataSource assistDataSource() {
            // TODO Auto-generated method stub
            return null;
        }
    
        @Override
        public DBMetaProvider assistDBMetaProvider() {
            // TODO Auto-generated method stub
            return null;
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top