Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SetRunEagerOpAsFunction (0.14 sec)

  1. tensorflow/c/eager/immediate_execution_context.h

      // Configure device placement policy logging.
      virtual void SetLogDevicePlacement(bool enable) = 0;
    
      // Enables running eager ops as functions.
      virtual void SetRunEagerOpAsFunction(bool enable) = 0;
    
      // Enables rewriting jit_compile functions.
      virtual void SetJitCompileRewrite(bool enable) = 0;
    
      // Sets the device placement policy for the current thread.
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_experimental.cc

    }
    
    void TFE_ContextSetRunEagerOpAsFunction(TFE_Context* ctx, unsigned char enable,
                                            TF_Status* status) {
      tensorflow::unwrap(ctx)->SetRunEagerOpAsFunction(enable);
    }
    
    void TFE_ContextSetJitCompileRewrite(TFE_Context* ctx, unsigned char enable,
                                         TF_Status* status) {
      tensorflow::unwrap(ctx)->SetJitCompileRewrite(enable);
    }
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 35.9K bytes
    - Viewed (0)
Back to top