Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,065 for expectGet (0.32 sec)

  1. tensorflow/cc/experimental/base/tests/tensorhandle_test.cc

      EXPECT_EQ(tensor.dims(), 1);
      EXPECT_EQ(tensor.dtype(), dtype);
      absl::Span<const typename TypeParam::type> tensor_view(
          reinterpret_cast<typename TypeParam::type*>(tensor.data()), value.size());
      EXPECT_EQ(tensor_view[0], 42);
      EXPECT_EQ(tensor_view[1], 100);
      EXPECT_EQ(tensor_view[2], 0);
      EXPECT_EQ(tensor_view[3], 1);
      EXPECT_EQ(tensor_view[4], 4);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:56:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_xla_computations_pass_test.cc

        InstantiationResultForTest result;
        TF_EXPECT_OK(InstantiateFunctionForTest(function, flib_def, &result));
    
        EXPECT_EQ((DataTypeVector{DT_INT32, DT_FLOAT, DT_INT32, DT_FLOAT,
                                  DT_RESOURCE, DT_RESOURCE, DT_RESOURCE}),
                  result.arg_types);
        EXPECT_EQ((DataTypeVector{DT_FLOAT, DT_INT32, DT_FLOAT, DT_FLOAT}),
                  result.ret_types);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 18:03:15 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph_test.cc

      TF_EXPECT_OK(CompileWithComputation(function_to_hlo_args).status());
    
      Histogram histogram =
          compilation_time.Delta("graph_old_bridge_has_function_to_hlo");
    
      EXPECT_EQ(histogram.num(), 1);
      EXPECT_EQ(compilation_status.Delta("kOldBridgeNoMlirSuccess"), 1);
    }
    
    TEST_F(CompileTFGraphTest, SuccessfullyCompilesWithManualSharding) {
      // MLIR module from failing test.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:08:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter_test.cc

    void Verify(const RuntimeMetadata* result, const RuntimeMetadata* expected) {
      EXPECT_EQ(result->subgraph_metadata()->size(),
                expected->subgraph_metadata()->size());
      for (int i = 0; i < result->subgraph_metadata()->size(); ++i) {
        auto result_subgraph_metadata =
            result->subgraph_metadata()->GetAs<SubgraphMetadata>(i);
        auto expected_subgraph_metadata =
            expected->subgraph_metadata()->GetAs<SubgraphMetadata>(i);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/bundle_v2_test.cc

      reader.parse(metrics::SavedModelReadFingerprint().value(), fingerprint);
      EXPECT_EQ(fingerprint["saved_model_checksum"].asUInt64(),
                15788619162413586750ULL);
      EXPECT_EQ(fingerprint["graph_def_program_hash"].asUInt64(),
                706963557435316516ULL);
      EXPECT_EQ(fingerprint["signature_def_hash"].asUInt64(),
                5693392539583495303ULL);
      EXPECT_EQ(fingerprint["saved_object_graph_hash"].asUInt64(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 17:51:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_test.cc

      ASSERT_TRUE(out != nullptr);
      EXPECT_EQ(TF_FLOAT, TF_TensorType(out));
      EXPECT_EQ(2, TF_NumDims(out));
      EXPECT_EQ(4, TF_Dim(out, 0));
      EXPECT_EQ(1, TF_Dim(out, 1));
      float* values = static_cast<float*>(TF_TensorData(out));
      // These values are defined to be (input / 2) + 2.
      EXPECT_EQ(2, values[0]);
      EXPECT_EQ(2.5, values[1]);
      EXPECT_EQ(3, values[2]);
      EXPECT_EQ(3.5, values[3]);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_function_test.cc

      ASSERT_EQ(func_->record->fdef().signature().attr().size(), 2);
      EXPECT_EQ(func_->record->fdef().signature().attr(0).name(), "v1");
      EXPECT_EQ(func_->record->fdef().signature().attr(0).type(), "int");
      EXPECT_EQ(func_->record->fdef().signature().attr(1).name(), "v2");
      EXPECT_EQ(func_->record->fdef().signature().attr(1).type(), "int");
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_activity_listener_test.cc

      }
    
      EXPECT_EQ(listener()->jit_compilation_activity().cluster_name(), "cluster_0");
      EXPECT_EQ(listener()->jit_compilation_activity().compile_count(), 2);
    
      EXPECT_GT(listener()->jit_compilation_activity().compile_time_us(), 0);
      EXPECT_EQ(listener()->jit_compilation_activity().cumulative_compile_time_us(),
                first_compile_time +
                    listener()->jit_compilation_activity().compile_time_us());
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. operator/pkg/object/objects_test.go

    		},
    		{
    			name:        "space in the end of the manifest",
    			input:       "well-formed-with-space",
    			expectCount: 1,
    			expectOut:   true,
    		},
    		{
    			name:        "some random comments",
    			input:       "well-formed-with-comments",
    			expectCount: 1,
    			expectOut:   true,
    		},
    		{
    			name:        "invalid k8s object - missing kind",
    			input:       "invalid",
    			failOnError: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/tests/tfcompile_test.cc

      EXPECT_TRUE(add.Run());
      EXPECT_EQ(add.error_msg(), "");
      EXPECT_EQ(add.result0(), 579);
      EXPECT_EQ(add.result0_data()[0], 579);
      EXPECT_EQ(add.result0_data(), add.results()[0]);
    
      const AddComp& add_const = add;
      EXPECT_EQ(add_const.error_msg(), "");
      EXPECT_EQ(add_const.arg0(), 123);
      EXPECT_EQ(add_const.arg0_data()[0], 123);
      EXPECT_EQ(add_const.arg0_data(), add.arg_data(0));
      EXPECT_EQ(add_const.arg1(), 456);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
Back to top