Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for getHello (0.14 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ExeWithLibraryUsingLibraryHelloWorldApp.groovy

                #else
                #define DLL_FUNC
                #endif
    
                std::string DLL_FUNC getHello();
            """)
        }
    
        List<SourceFile> greetingsSources = [
            sourceFile("cpp", "greetings.cpp", """
                #include "greetings.h"
    
                std::string DLL_FUNC getHello() {
                    #ifdef FRENCH
                    return "${HELLO_WORLD_FRENCH}";
                    #else
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ExeWithDiamondDependencyHelloWorldApp.groovy

                    #else
                    return "${HELLO_WORLD}";
                    #endif
                }
    
                int main () {
                    std::cout << getExeHello() << " ";
                    std::cout << getHello() << " ";
                    sayHello();
                    return 0;
                }
            """)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/input_lowering_metrics_pass.cc

          has_dynamic_op = true;
          dynamism_op_counter->GetCell(op->getName().getStringRef().str())
              ->IncrementBy(1);
        }
    
        return WalkResult::advance();
      });
    
      if (has_dynamic_op) {
        dynamism_function_counter->GetCell(kDynamicFunctionName)->IncrementBy(1);
      } else {
        dynamism_function_counter->GetCell(kNotDynamicFunctionName)->IncrementBy(1);
      }
    }
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 08:55:35 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/RegularImmutableTable.java

     *
     * @author Gregory Kick
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    abstract class RegularImmutableTable<R, C, V> extends ImmutableTable<R, C, V> {
      RegularImmutableTable() {}
    
      abstract Cell<R, C, V> getCell(int iterationIndex);
    
      @Override
      final ImmutableSet<Cell<R, C, V>> createCellSet() {
        return isEmpty() ? ImmutableSet.<Cell<R, C, V>>of() : new CellSet();
      }
    
      @WeakOuter
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor.cc

    }
    
    tensorflow::Status RecordStatusIfError(absl::Status status) {
      if (status.ok()) {
        return absl::OkStatus();
      }
    
      tf_dialect_to_executor_dialect_status->GetCell(kExportFailed)->IncrementBy(1);
      VLOG(1) << "Failed to export from TF Dialect to TF Executor Dialect. "
              << status;
    
      constexpr char bridge_subcomponent[] =
          "TFXLA_TF_FUNCTIONAL_TO_EXECUTOR_EXPORT_v2";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 23:22:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api_experimental_reader.h

    // auto* streamz = tensorflow::monitoring::Counter<1>::New("name",
    // "description", "label");
    // and then incremented that counter for various values of label:
    // streamz->GetCell("label-value")->IncrementBy(1);
    //
    // The test code can then read and test the value of that counter:
    //
    // auto* reader = TFE_MonitoringNewCounterReader("name");
    // test();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 20 03:14:47 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/inference/inference_metrics_pass.cc

        if (has_tpu_partitioned_call) break;
      }
    
      std::string has_tpu_partitioned_call_str =
          has_tpu_partitioned_call ? "true" : "false";
      has_tpu_partitioned_call_streamz->GetCell(has_tpu_partitioned_call_str)
          ->IncrementBy(1);
    }
    
    }  // namespace
    
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>>
    CreateInferenceMetricsPass() {
      return std::make_unique<InferenceMetricsPass>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 05 21:24:51 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v1/tf_dialect_to_executor.cc

      if (status.ok()) {
        return absl::OkStatus();
      }
    
      VLOG(1) << "Failed to export from TF Dialect to TF Executor Dialect. "
              << status;
      tf_dialect_to_executor_dialect_status->GetCell(kExportFailed)->IncrementBy(1);
    
      constexpr char bridge_subcomponent[] =
          "TFXLA_TF_FUNCTIONAL_TO_EXECUTOR_EXPORT_v1";
      constexpr char kBridgeComponent[] = "TFXLABridge";
    
      tsl::OkOrSetErrorCounterPayload(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 03:41:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/RegularImmutableTable.java

     *
     * @author Gregory Kick
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    abstract class RegularImmutableTable<R, C, V> extends ImmutableTable<R, C, V> {
      RegularImmutableTable() {}
    
      abstract Cell<R, C, V> getCell(int iterationIndex);
    
      @Override
      final ImmutableSet<Cell<R, C, V>> createCellSet() {
        return isEmpty() ? ImmutableSet.<Cell<R, C, V>>of() : new CellSet();
      }
    
      @WeakOuter
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/integration/graph_decompose_pass.cc

        LOG_FIRST_N(INFO, 1) << "Skipping Graph Decomposition Pass, decomposition"
                                " library was not found";
        return absl::OkStatus();
      }
    
      tf_core_op_expansion_graph_counter->GetCell()->IncrementBy(1);
    
      LOG_FIRST_N(INFO, 1) << "Run Graph Decomposition Passes";
    
      TF_RETURN_IF_ERROR(DecomposeGraph(module));
    
      LOG_FIRST_N(INFO, 1) << "Finish Graph Decomposition Passes";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Feb 25 16:22:36 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top